Add new slots for heritage custodian entities

- Created deliverables_slot for expected or achieved deliverable outputs.
- Introduced event_id_slot for persistent unique event identifiers.
- Added follow_up_date_slot for scheduled follow-up action dates.
- Implemented object_ref_slot for references to heritage objects.
- Established price_slot for price information across entities.
- Added price_currency_slot for currency codes in price information.
- Created protocol_slot for API protocol specifications.
- Introduced provenance_text_slot for full provenance entry text.
- Added record_type_slot for classification of record types.
- Implemented response_formats_slot for supported API response formats.
- Established status_slot for current status of entities or activities.
- Added FactualCountDisplay component for displaying count query results.
- Introduced ReplyTypeIndicator component for visualizing reply types.
- Created approval_date_slot for formal approval dates.
- Added authentication_required_slot for API authentication status.
- Implemented capacity_items_slot for maximum storage capacity.
- Established conservation_lab_slot for conservation laboratory information.
- Added cost_usd_slot for API operation costs in USD.
This commit is contained in:
kempersc 2026-01-05 00:49:05 +01:00
parent 89001fbc53
commit 242bc8bb35
222 changed files with 19179 additions and 14134 deletions

View file

@ -0,0 +1,401 @@
# Rule: Specificity Score Convention for LinkML Schema Annotations
**Version**: 1.0.0
**Created**: 2025-01-04
**Status**: Active
**Applies to**: `schemas/20251121/linkml/modules/classes/*.yaml`
---
## Rule Statement
Every class in the Heritage Custodian Ontology MUST have specificity score annotations to enable intelligent filtering for RAG retrieval and UML visualization.
---
## Annotation Schema
### Required Annotations
Every class YAML file MUST include these annotations:
```yaml
classes:
ClassName:
annotations:
specificity_score: 0.75 # Required: General specificity (0.0-1.0)
specificity_rationale: "..." # Required: Why this score was assigned
```
### Optional Annotations
Template-specific scores for context-aware filtering:
```yaml
classes:
ClassName:
annotations:
specificity_score: 0.75
specificity_rationale: "..."
template_specificity: # Optional: Template-specific scores
archive_search: 0.95
museum_search: 0.20
person_research: 0.30
```
---
## Score Semantics
### General Specificity Score
The `specificity_score` measures how **context-dependent** a class is:
| Score Range | Meaning | Example Classes |
|-------------|---------|-----------------|
| 0.00-0.20 | **Universal** - relevant in almost all contexts | `HeritageCustodian`, `CustodianName`, `Location` |
| 0.20-0.40 | **Broadly useful** - relevant in most contexts | `Collection`, `Identifier`, `GHCID` |
| 0.40-0.60 | **Moderately specific** - relevant in several contexts | `ChangeEvent`, `PersonProfile`, `DigitalPlatform` |
| 0.60-0.80 | **Fairly specific** - relevant in limited contexts | `Archive`, `Museum`, `Library`, `FindingAid` |
| 0.80-1.00 | **Highly specific** - relevant only in specialized contexts | `LinkedInConnectionExtraction`, `GHCIDHistoryEntry` |
**Key Insight**: Lower scores = MORE generally relevant (always useful in RAG); Higher scores = MORE specific (only useful in specialized queries).
---
### Template Specificity Scores
The `template_specificity` maps class relevance to 10 conversation templates:
| Template ID | Focus Area | Example High-Score Classes |
|-------------|------------|---------------------------|
| `archive_search` | Archives and archival holdings | `Archive`, `RecordSet`, `Fonds` |
| `museum_search` | Museums and exhibitions | `Museum`, `Gallery`, `Exhibition` |
| `library_search` | Libraries and catalogs | `Library`, `Catalog`, `BibliographicCollection` |
| `collection_discovery` | Collections and holdings | `Collection`, `Accession`, `Extent` |
| `person_research` | People and staff | `PersonProfile`, `Staff`, `Role` |
| `location_browse` | Geographic information | `Location`, `Address`, `GeoCoordinates` |
| `identifier_lookup` | Identifiers (ISIL, Wikidata) | `Identifier`, `GHCID`, `ISIL` |
| `organizational_change` | History and changes | `ChangeEvent`, `Founding`, `Merger` |
| `digital_platform` | Online resources | `DigitalPlatform`, `Website`, `API` |
| `general_heritage` | Fallback/general | Uses `specificity_score` directly |
---
## Examples
### Example 1: Universal Class (Low Specificity)
```yaml
# modules/classes/HeritageCustodian.yaml
classes:
HeritageCustodian:
description: >-
Base class for all heritage custodian institutions.
annotations:
specificity_score: 0.15
specificity_rationale: >-
Universal base class relevant in virtually all heritage contexts.
Every query about heritage institutions implicitly involves this class.
template_specificity:
archive_search: 0.65
museum_search: 0.65
library_search: 0.65
collection_discovery: 0.70
person_research: 0.70
location_browse: 0.75
identifier_lookup: 0.70
organizational_change: 0.75
digital_platform: 0.70
general_heritage: 0.15
```
### Example 2: Domain-Specific Class (High Specificity)
```yaml
# modules/classes/Archive.yaml
classes:
Archive:
is_a: HeritageCustodian
description: >-
An archive institution holding historical records and documents.
annotations:
specificity_score: 0.70
specificity_rationale: >-
Domain-specific institution type. Highly relevant for archival research
but not needed for museum or library queries.
template_specificity:
archive_search: 0.95
museum_search: 0.20
library_search: 0.25
collection_discovery: 0.75
person_research: 0.40
location_browse: 0.65
identifier_lookup: 0.50
organizational_change: 0.60
digital_platform: 0.45
general_heritage: 0.70
```
### Example 3: Technical Class (Very High Specificity)
```yaml
# modules/classes/LinkedInConnectionExtraction.yaml
classes:
LinkedInConnectionExtraction:
description: >-
Technical class for extracting LinkedIn connection data.
annotations:
specificity_score: 0.95
specificity_rationale: >-
Internal extraction class with no semantic significance for end users.
Only relevant when specifically researching data extraction processes.
template_specificity:
archive_search: 0.05
museum_search: 0.05
library_search: 0.05
collection_discovery: 0.05
person_research: 0.40
location_browse: 0.05
identifier_lookup: 0.10
organizational_change: 0.05
digital_platform: 0.15
general_heritage: 0.95
```
---
## Score Assignment Guidelines
### Factors That LOWER Specificity Score
| Factor | Impact | Example |
|--------|--------|---------|
| Base/parent class | -0.20 to -0.30 | `HeritageCustodian` is parent of all |
| Used in identifiers | -0.10 to -0.15 | `CustodianName` used in GHCID |
| Geographic component | -0.10 to -0.15 | `Location` needed for all institutions |
| Universal attribute | -0.10 to -0.15 | `Provenance` applies to all data |
### Factors That RAISE Specificity Score
| Factor | Impact | Example |
|--------|--------|---------|
| Institution type | +0.30 to +0.40 | `Archive`, `Museum`, `Library` |
| Technical/extraction | +0.30 to +0.40 | `LinkedInConnectionExtraction` |
| Event subtype | +0.20 to +0.30 | `Merger`, `Founding`, `Closure` |
| Domain terminology | +0.15 to +0.25 | `Fonds`, `FindingAid`, `RecordSet` |
### Cross-Class Consistency Rules
1. **Inheritance**: Child classes should have equal or higher specificity than parents
2. **Siblings**: Classes at same hierarchy level should have similar base scores
3. **Competing types**: Institution types should reduce each other's template scores
```yaml
# CORRECT: Archive (0.70) inherits from HeritageCustodian (0.15)
Archive:
is_a: HeritageCustodian # Parent: 0.15
annotations:
specificity_score: 0.70 # Child: 0.70 >= 0.15 ✓
# WRONG: Child less specific than parent
Archive:
is_a: HeritageCustodian # Parent: 0.15
annotations:
specificity_score: 0.10 # Child: 0.10 < 0.15
```
---
## Validation Rules
### Required Validations
1. **Range Check**: `0.0 <= specificity_score <= 1.0`
2. **Rationale Present**: `specificity_rationale` must not be empty
3. **Inheritance Consistency**: Child score >= parent score
4. **Template Score Range**: All template scores must be 0.0-1.0
### Recommended Validations
1. **No Orphan Scores**: Every class should have annotations (warn if missing)
2. **Score Distribution**: Flag if >50% of classes have same score (lack of differentiation)
3. **Template Coverage**: Warn if template_specificity omits common templates
### Validation Script
```python
# scripts/validate_specificity_scores.py
from linkml_runtime import SchemaView
from pathlib import Path
import sys
REQUIRED_TEMPLATES = [
"archive_search", "museum_search", "library_search",
"collection_discovery", "person_research", "location_browse",
"identifier_lookup", "organizational_change", "digital_platform",
"general_heritage"
]
def validate_specificity_scores(schema_path: Path) -> list[str]:
"""Validate all specificity score annotations."""
errors = []
schema = SchemaView(str(schema_path))
for class_name in schema.all_classes():
cls = schema.get_class(class_name)
# Check required annotations
score = cls.annotations.get("specificity_score")
rationale = cls.annotations.get("specificity_rationale")
if score is None:
errors.append(f"{class_name}: Missing specificity_score")
continue
# Validate score range
try:
score_val = float(score.value)
if not 0.0 <= score_val <= 1.0:
errors.append(f"{class_name}: Score {score_val} out of range [0.0, 1.0]")
except (ValueError, TypeError):
errors.append(f"{class_name}: Invalid score value: {score.value}")
# Check rationale
if rationale is None or not rationale.value.strip():
errors.append(f"{class_name}: Missing or empty specificity_rationale")
# Check inheritance consistency
if cls.is_a:
parent = schema.get_class(cls.is_a)
parent_score = parent.annotations.get("specificity_score")
if parent_score and float(score.value) < float(parent_score.value):
errors.append(
f"{class_name}: Score {score.value} < parent {cls.is_a} score {parent_score.value}"
)
return errors
if __name__ == "__main__":
schema_path = Path("schemas/20251121/linkml/01_custodian_name.yaml")
errors = validate_specificity_scores(schema_path)
if errors:
print("Validation errors:")
for error in errors:
print(f" - {error}")
sys.exit(1)
else:
print("All specificity scores valid!")
sys.exit(0)
```
---
## Anti-Patterns
### What NOT to Do
| Anti-Pattern | Why It's Wrong | Correct Approach |
|--------------|----------------|------------------|
| Score without rationale | No audit trail for decisions | Always include rationale |
| All scores = 0.5 | No differentiation, useless for filtering | Differentiate based on semantics |
| Child < parent score | Violates specificity inheritance | Child should be equal or more specific |
| Template score > 1.0 | Invalid score value | Keep all scores in [0.0, 1.0] |
| Empty rationale | Fails validation, no documentation | Write meaningful rationale |
### Example of Incorrect Annotation
```yaml
# WRONG - Multiple issues
classes:
Archive:
annotations:
specificity_score: 1.5 # Out of range!
specificity_rationale: "" # Empty rationale!
template_specificity:
archive_search: 0.95
# Missing other templates - incomplete coverage
```
### Example of Correct Annotation
```yaml
# CORRECT
classes:
Archive:
annotations:
specificity_score: 0.70
specificity_rationale: >-
Domain-specific institution type for archives. Highly relevant
for archival research queries but less useful for museum or
library-focused questions.
template_specificity:
archive_search: 0.95
museum_search: 0.20
library_search: 0.25
collection_discovery: 0.75
person_research: 0.40
location_browse: 0.65
identifier_lookup: 0.50
organizational_change: 0.60
digital_platform: 0.45
general_heritage: 0.70
```
---
## Migration Checklist
When adding specificity scores to existing classes:
### Phase 1: Assessment
- [ ] Count classes without annotations
- [ ] Identify class hierarchy (parents → children order)
- [ ] Review existing descriptions for scoring hints
### Phase 2: Annotation
- [ ] Start with root classes (lowest specificity)
- [ ] Work down hierarchy (increasing specificity)
- [ ] Assign template scores based on domain alignment
- [ ] Write rationale explaining score decisions
### Phase 3: Validation
- [ ] Run validation script
- [ ] Check inheritance consistency
- [ ] Verify score distribution (not all same value)
- [ ] Review edge cases (technical classes, mixins)
### Phase 4: Documentation
- [ ] Update class count in plan documents
- [ ] Document any scoring decisions that were difficult
- [ ] Create PR with all changes
---
## Related Rules
- **Rule 0**: LinkML Schemas Are the Single Source of Truth
- **Rule 4**: Technical Classes Are Excluded from Visualizations
- **Rule 13**: Custodian Type Annotations on LinkML Schema Elements
---
## References
- `docs/plan/specificity_score/README.md` - System overview
- `docs/plan/specificity_score/04-prompt-conversation-templates.md` - Template definitions
- `docs/plan/specificity_score/06-uml-visualization.md` - UML filtering integration
---
## Changelog
| Date | Version | Change |
|------|---------|--------|
| 2025-01-04 | 1.0.0 | Initial rule created for specificity score system |

View file

@ -23,7 +23,7 @@ This is NOT a simple data extraction project. This is an **ontology engineering
## 🚨 CRITICAL RULES FOR ALL AGENTS
This section summarizes 36 critical rules. Each rule has complete documentation in `.opencode/` files.
This section summarizes 37 critical rules. Each rule has complete documentation in `.opencode/` files.
### Rule 0: LinkML Schemas Are the Single Source of Truth
@ -687,6 +687,53 @@ If the source is in Spanish, the output must be in Spanish.
---
### Rule 37: Specificity Score Annotations for LinkML Classes
🚨 **CRITICAL**: Every LinkML class MUST have specificity score annotations to enable intelligent RAG retrieval filtering and UML visualization.
**Annotation Format**:
```yaml
classes:
ClassName:
annotations:
specificity_score: 0.75 # Required: 0.0-1.0
specificity_rationale: "..." # Required: Why this score
template_specificity: # Optional: Template-specific scores
archive_search: 0.95
museum_search: 0.20
```
**Score Semantics** (LOWER = more broadly relevant):
| Score Range | Meaning | Examples |
|-------------|---------|----------|
| 0.00-0.20 | Universal | `HeritageCustodian`, `Location` |
| 0.20-0.40 | Broadly useful | `Collection`, `Identifier` |
| 0.40-0.60 | Moderately specific | `ChangeEvent`, `PersonProfile` |
| 0.60-0.80 | Fairly specific | `Archive`, `Museum`, `Library` |
| 0.80-1.00 | Highly specific | `LinkedInConnectionExtraction` |
**10 Conversation Templates** for `template_specificity`:
- `archive_search`, `museum_search`, `library_search`
- `collection_discovery`, `person_research`, `location_browse`
- `identifier_lookup`, `organizational_change`, `digital_platform`
- `general_heritage` (fallback - uses `specificity_score` directly)
**Validation Rules**:
1. Score must be in range [0.0, 1.0]
2. Rationale must not be empty
3. Child class score must be ≥ parent class score (inheritance consistency)
**Use Cases**:
- **RAG Retrieval**: Filter schema classes by relevance to user query
- **UML Visualization**: Generate focused diagrams showing only relevant classes
- **Context Management**: Reduce token usage by excluding low-relevance classes
**See**: `.opencode/rules/specificity-score-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

@ -48,8 +48,7 @@ wikidata_enrichment:
wikidata_descriptions:
en: repository of the historical records of the Dutch province of Drenthe
nl: archief in Assen, Nederland
wikidata_description_en: repository of the historical records of the Dutch province
of Drenthe
wikidata_description_en: repository of the historical records of the Dutch province of Drenthe
wikidata_sitelinks:
commonswiki: Category:Drents Archief
fywiki: Drintsk Argyf
@ -231,8 +230,7 @@ provenance:
linkup_timespan:
- source_type: linkup_web_search
fetch_timestamp: '2025-12-15T16:04:38.039332+00:00'
search_query: '"Regionaal Historisch Centrum (RHC) Drents Archief" Assen opgericht
OR gesticht OR sinds'
search_query: '"Regionaal Historisch Centrum (RHC) Drents Archief" Assen opgericht OR gesticht OR sinds'
source_urls:
- https://nl.wikipedia.org/wiki/Drents_Archief
- https://geheugenvandrenthe.nl/rijksarchief
@ -270,41 +268,41 @@ google_maps_enrichment:
formatted_address: Entree Museumlaantje, Brink 4, 9401 HS Assen
short_address: Entree Museumlaantje, Brink 4, Assen
address_components:
- long_name: Entree Museumlaantje
short_name: null
types: []
- long_name: '4'
short_name: '4'
types:
- street_number
- long_name: Brink
short_name: Brink
types:
- route
- long_name: Assen
short_name: Assen
types:
- locality
- political
- long_name: Assen
short_name: Assen
types:
- administrative_area_level_2
- political
- long_name: Drenthe
short_name: DR
types:
- administrative_area_level_1
- political
- long_name: Nederland
short_name: NL
types:
- country
- political
- long_name: 9401 HS
short_name: 9401 HS
types:
- postal_code
- long_name: Entree Museumlaantje
short_name: null
types: []
- long_name: '4'
short_name: '4'
types:
- street_number
- long_name: Brink
short_name: Brink
types:
- route
- long_name: Assen
short_name: Assen
types:
- locality
- political
- long_name: Assen
short_name: Assen
types:
- administrative_area_level_2
- political
- long_name: Drenthe
short_name: DR
types:
- administrative_area_level_1
- political
- long_name: Nederland
short_name: NL
types:
- country
- political
- long_name: 9401 HS
short_name: 9401 HS
types:
- postal_code
phone_local: 0592 313 523
phone_international: +31 592 313 523
website: https://www.drentsarchief.nl/
@ -316,204 +314,198 @@ google_maps_enrichment:
opening_hours:
open_now: false
periods:
- open:
day: 2
hour: 9
minute: 30
close:
day: 2
hour: 17
minute: 0
- open:
day: 3
hour: 9
minute: 30
close:
day: 3
hour: 17
minute: 0
- open:
day: 4
hour: 9
minute: 30
close:
day: 4
hour: 17
minute: 0
- open:
day: 5
hour: 9
minute: 30
close:
day: 5
hour: 17
minute: 0
- open:
day: 2
hour: 9
minute: 30
close:
day: 2
hour: 17
minute: 0
- open:
day: 3
hour: 9
minute: 30
close:
day: 3
hour: 17
minute: 0
- open:
day: 4
hour: 9
minute: 30
close:
day: 4
hour: 17
minute: 0
- open:
day: 5
hour: 9
minute: 30
close:
day: 5
hour: 17
minute: 0
weekday_text:
- "Maandag: Gesloten"
- "Dinsdag: 09:30 17:00"
- "Woensdag: 09:30 17:00"
- "Donderdag: 09:30 17:00"
- "Vrijdag: 09:30 17:00"
- "Zaterdag: Gesloten"
- "Zondag: Gesloten"
# Person observations extracted from institutional website
- 'Maandag: Gesloten'
- 'Dinsdag: 09:30 17:00'
- 'Woensdag: 09:30 17:00'
- 'Donderdag: 09:30 17:00'
- 'Vrijdag: 09:30 17:00'
- 'Zaterdag: Gesloten'
- 'Zondag: Gesloten'
person_observations:
extraction_metadata:
source_urls:
- https://www.drentsarchief.nl/organisatie/over-het-drents-archief/medewerkers
- https://www.drentsarchief.nl/organisatie/over-het-drents-archief/bestuur
extraction_timestamp: "2025-12-28T02:00:00Z"
- https://www.drentsarchief.nl/organisatie/over-het-drents-archief/medewerkers
- https://www.drentsarchief.nl/organisatie/over-het-drents-archief/bestuur
extraction_timestamp: '2025-12-28T02:00:00Z'
extraction_agent: opencode_agent
total_persons_observed: 22
management:
- person_profile_path: data/custodian/person/entity/NL-DR-ASS-A-DA_0001_corinne_rodenburg_20251228T010000Z.json
foaf:name: Corinne Rodenburg
org:role: directeur
org:headOf: true
current: true
- person_profile_path: data/custodian/person/entity/NL-DR-ASS-A-DA_0002_arjan_kamst_20251228T010000Z.json
foaf:name: Arjan Kamst
org:role: manager Collectie en Publiek
current: true
- person_profile_path: data/custodian/person/entity/NL-DR-ASS-A-DA_0006_wobiene_sibma_20251228T020000Z.json
foaf:name: Wobiene Sibma
org:role: manager Bedrijfsvoering, financial controller
current: true
- person_profile_path: data/custodian/person/entity/NL-DR-ASS-A-DA_0007_yvonne_marring_20251228T020000Z.json
foaf:name: Yvonne Marring
org:role: P&O adviseur
current: true
- person_profile_path: data/custodian/person/entity/NL-DR-ASS-A-DA_0001_corinne_rodenburg_20251228T010000Z.json
foaf:name: Corinne Rodenburg
org:role: directeur
org:headOf: true
current: true
- person_profile_path: data/custodian/person/entity/NL-DR-ASS-A-DA_0002_arjan_kamst_20251228T010000Z.json
foaf:name: Arjan Kamst
org:role: manager Collectie en Publiek
current: true
- person_profile_path: data/custodian/person/entity/NL-DR-ASS-A-DA_0006_wobiene_sibma_20251228T020000Z.json
foaf:name: Wobiene Sibma
org:role: manager Bedrijfsvoering, financial controller
current: true
- person_profile_path: data/custodian/person/entity/NL-DR-ASS-A-DA_0007_yvonne_marring_20251228T020000Z.json
foaf:name: Yvonne Marring
org:role: P&O adviseur
current: true
collectie_beheer:
- person_profile_path: data/custodian/person/entity/NL-DR-ASS-A-DA_0003_marieke_doeze_20251228T010000Z.json
foaf:name: Marieke Doezé
org:role: Archivaris
current: true
- person_profile_path: data/custodian/person/entity/NL-DR-ASS-A-DA_0008_ferry_sieders_20251228T020000Z.json
foaf:name: Ferry Sieders
org:role: Acquisitie particuliere archieven
current: true
- person_profile_path: data/custodian/person/entity/NL-DR-ASS-A-DA_0009_mark_goslinga_20251228T020000Z.json
foaf:name: Mark Goslinga
org:role: Fotoarchief
current: true
- person_profile_path: data/custodian/person/entity/NL-DR-ASS-A-DA_0010_jasper_huizinga_20251228T020000Z.json
foaf:name: Jasper Huizinga
org:role: Audiovisueel archief
current: true
- person_profile_path: data/custodian/person/entity/NL-DR-ASS-A-DA_0011_erwin_de_leeuw_20251228T020000Z.json
foaf:name: Erwin de Leeuw
org:role: Archiefbewerking en Bibliotheek
current: true
- person_profile_path: data/custodian/person/entity/NL-DR-ASS-A-DA_0012_bas_gast_20251228T020000Z.json
foaf:name: Bas Gast
org:role: E-depot
current: true
- person_profile_path: data/custodian/person/entity/NL-DR-ASS-A-DA_0013_joke_wolff_20251228T020000Z.json
foaf:name: Joke Wolff
org:role: Publieksactiviteiten
current: true
- person_profile_path: data/custodian/person/entity/NL-DR-ASS-A-DA_0003_marieke_doeze_20251228T010000Z.json
foaf:name: Marieke Doezé
org:role: Archivaris
current: true
- person_profile_path: data/custodian/person/entity/NL-DR-ASS-A-DA_0008_ferry_sieders_20251228T020000Z.json
foaf:name: Ferry Sieders
org:role: Acquisitie particuliere archieven
current: true
- person_profile_path: data/custodian/person/entity/NL-DR-ASS-A-DA_0009_mark_goslinga_20251228T020000Z.json
foaf:name: Mark Goslinga
org:role: Fotoarchief
current: true
- person_profile_path: data/custodian/person/entity/NL-DR-ASS-A-DA_0010_jasper_huizinga_20251228T020000Z.json
foaf:name: Jasper Huizinga
org:role: Audiovisueel archief
current: true
- person_profile_path: data/custodian/person/entity/NL-DR-ASS-A-DA_0011_erwin_de_leeuw_20251228T020000Z.json
foaf:name: Erwin de Leeuw
org:role: Archiefbewerking en Bibliotheek
current: true
- person_profile_path: data/custodian/person/entity/NL-DR-ASS-A-DA_0012_bas_gast_20251228T020000Z.json
foaf:name: Bas Gast
org:role: E-depot
current: true
- person_profile_path: data/custodian/person/entity/NL-DR-ASS-A-DA_0013_joke_wolff_20251228T020000Z.json
foaf:name: Joke Wolff
org:role: Publieksactiviteiten
current: true
ondersteunende_functies:
- person_profile_path: data/custodian/person/entity/NL-DR-ASS-A-DA_0014_bert_van_der_veen_20251228T020000Z.json
foaf:name: Bert van der Veen
org:role: ICT
current: true
- person_profile_path: data/custodian/person/entity/NL-DR-ASS-A-DA_0015_ellen_van_der_velds_20251228T020000Z.json
foaf:name: Ellen van der Velds
org:role: Pers en communicatie
current: true
- person_profile_path: data/custodian/person/entity/NL-DR-ASS-A-DA_0016_paula_van_ham_20251228T020000Z.json
foaf:name: Paula van Ham
org:role: Pers en communicatie
current: true
- person_profile_path: data/custodian/person/entity/NL-DR-ASS-A-DA_0017_hilde_boelema_20251228T020000Z.json
foaf:name: Hilde Boelema
org:role: Pers en communicatie
current: true
- person_profile_path: data/custodian/person/entity/NL-DR-ASS-A-DA_0018_bennie_ten_cate_20251228T020000Z.json
foaf:name: Bennie ten Cate
org:role: Gebouwbeheer
current: true
- person_profile_path: data/custodian/person/entity/NL-DR-ASS-A-DA_0014_bert_van_der_veen_20251228T020000Z.json
foaf:name: Bert van der Veen
org:role: ICT
current: true
- person_profile_path: data/custodian/person/entity/NL-DR-ASS-A-DA_0015_ellen_van_der_velds_20251228T020000Z.json
foaf:name: Ellen van der Velds
org:role: Pers en communicatie
current: true
- person_profile_path: data/custodian/person/entity/NL-DR-ASS-A-DA_0016_paula_van_ham_20251228T020000Z.json
foaf:name: Paula van Ham
org:role: Pers en communicatie
current: true
- person_profile_path: data/custodian/person/entity/NL-DR-ASS-A-DA_0017_hilde_boelema_20251228T020000Z.json
foaf:name: Hilde Boelema
org:role: Pers en communicatie
current: true
- person_profile_path: data/custodian/person/entity/NL-DR-ASS-A-DA_0018_bennie_ten_cate_20251228T020000Z.json
foaf:name: Bennie ten Cate
org:role: Gebouwbeheer
current: true
bestuur:
governance_type: openbaar lichaam WGR (Wet Gemeenschappelijke Regelingen)
partners:
- Ministerie van Onderwijs, Cultuur en Wetenschap (OCW)
- Gemeente Assen
- Waterschap Drents Overijsselse Delta (WDODelta)
- Ministerie van Onderwijs, Cultuur en Wetenschap (OCW)
- Gemeente Assen
- Waterschap Drents Overijsselse Delta (WDODelta)
compensation_policy:
regular_member: "€155 per vergadering"
chairman: "130% van regulier lid (€201.50)"
note: "Bestuursleden die burgemeester, wethouder of ambtenaar in rijks-/gemeentedienst zijn ontvangen geen vergoeding"
regular_member: €155 per vergadering
chairman: 130% van regulier lid (€201.50)
note: Bestuursleden die burgemeester, wethouder of ambtenaar in rijks-/gemeentedienst zijn ontvangen geen vergoeding
algemeen_bestuur:
- person_profile_path: data/custodian/person/entity/NL-DR-ASS-A-DA_0004_m_hoogeveen_20251228T010000Z.json
foaf:name: M. Hoogeveen
foaf:full_name_formal: M.J.M. Hoogeveen
org:role: voorzitter AB en DB
representing: Rijk (namens Ministerie OCW)
current: true
notes: "First names represented by initials only"
- person_profile_path: data/custodian/person/entity/NL-DR-ASS-A-DA_0019_j_seton_20251228T020000Z.json
foaf:name: J. Seton
org:role: lid AB
representing: Rijk (namens Ministerie OCW)
current: true
notes: "First name represented by initial only"
- person_profile_path: data/custodian/person/entity/NL-DR-ASS-A-DA_0020_bj_ten_oever_20251228T020000Z.json
foaf:name: B.J. ten Oever
org:role: lid AB en DB
representing: Gemeente Assen
current: true
notes: "First names represented by initials only"
- person_profile_path: data/custodian/person/entity/NL-DR-ASS-A-DA_0005_m_out_20251228T010000Z.json
foaf:name: M. Out
foaf:full_name_formal: M.L.J. Out
org:role: lid AB
representing: Gemeente Assen
current: true
notes: "First names represented by initials only"
- person_profile_path: data/custodian/person/entity/NL-DR-ASS-A-DA_0021_h_pereboom_20251228T020000Z.json
foaf:name: H. Pereboom
org:role: lid AB
representing: Waterschap Drents Overijsselse Delta (WDODelta)
current: true
notes: "First name represented by initial only"
- person_profile_path: data/custodian/person/entity/NL-DR-ASS-A-DA_0004_m_hoogeveen_20251228T010000Z.json
foaf:name: M. Hoogeveen
foaf:full_name_formal: M.J.M. Hoogeveen
org:role: voorzitter AB en DB
representing: Rijk (namens Ministerie OCW)
current: true
notes: First names represented by initials only
- person_profile_path: data/custodian/person/entity/NL-DR-ASS-A-DA_0019_j_seton_20251228T020000Z.json
foaf:name: J. Seton
org:role: lid AB
representing: Rijk (namens Ministerie OCW)
current: true
notes: First name represented by initial only
- person_profile_path: data/custodian/person/entity/NL-DR-ASS-A-DA_0020_bj_ten_oever_20251228T020000Z.json
foaf:name: B.J. ten Oever
org:role: lid AB en DB
representing: Gemeente Assen
current: true
notes: First names represented by initials only
- person_profile_path: data/custodian/person/entity/NL-DR-ASS-A-DA_0005_m_out_20251228T010000Z.json
foaf:name: M. Out
foaf:full_name_formal: M.L.J. Out
org:role: lid AB
representing: Gemeente Assen
current: true
notes: First names represented by initials only
- person_profile_path: data/custodian/person/entity/NL-DR-ASS-A-DA_0021_h_pereboom_20251228T020000Z.json
foaf:name: H. Pereboom
org:role: lid AB
representing: Waterschap Drents Overijsselse Delta (WDODelta)
current: true
notes: First name represented by initial only
dagelijks_bestuur:
- person_profile_path: data/custodian/person/entity/NL-DR-ASS-A-DA_0004_m_hoogeveen_20251228T010000Z.json
foaf:name: M. Hoogeveen
org:role: voorzitter
representing: Rijk
- person_profile_path: data/custodian/person/entity/NL-DR-ASS-A-DA_0020_bj_ten_oever_20251228T020000Z.json
foaf:name: B.J. ten Oever
org:role: lid
representing: Gemeente Assen
- person_profile_path: data/custodian/person/entity/NL-DR-ASS-A-DA_0022_h_hartog_20251228T020000Z.json
foaf:name: H. Hartog
org:role: lid (onafhankelijk extern lid)
representing: onafhankelijk
current: true
notes: "First name represented by initial only"
- person_profile_path: data/custodian/person/entity/NL-DR-ASS-A-DA_0004_m_hoogeveen_20251228T010000Z.json
foaf:name: M. Hoogeveen
org:role: voorzitter
representing: Rijk
- person_profile_path: data/custodian/person/entity/NL-DR-ASS-A-DA_0020_bj_ten_oever_20251228T020000Z.json
foaf:name: B.J. ten Oever
org:role: lid
representing: Gemeente Assen
- person_profile_path: data/custodian/person/entity/NL-DR-ASS-A-DA_0022_h_hartog_20251228T020000Z.json
foaf:name: H. Hartog
org:role: lid (onafhankelijk extern lid)
representing: onafhankelijk
current: true
notes: First name represented by initial only
mission_statement:
- statement_id: https://nde.nl/ontology/hc/mission/nl-dr-ass-a-da/mission-2026
statement_type: mission
statement_text: Regionaal Historisch Centrum Drents Archief vertelt het verhaal van Drenthe. Wij beheren de authentieke
bronnen van overheden, particulieren en bedrijven in Drenthe. Via diverse activiteiten maken wij met deze bronnen de connectie
met een breed publiek. Wij zijn specialist op het gebied van digitale archivering, bieden met het Drents e-depot duurzame
digitale opslag voor alle Drentse lagere overheden en daarmee duurzame toegankelijkheid voor elke informatie- en rechtzoekende
burger.
statement_language: nl
extracted_verbatim: true
source_url: https://www.drentsarchief.nl/organisatie
content_hash: sha256-OMrmsa0D0zwcGLDmHyXjIvpf1l367zT9JZ8OVgrumRY=
provenance:
statement_created_at: '2026-01-04T15:02:04.611211+00:00'
source_archived_at: '2026-01-04T15:01:39.221544+00:00'
retrieval_agent: linkup-api
extraction_agent: zai-glm/glm-4.7
extraction_confidence: 0.85
prov:wasDerivedFrom: https://www.drentsarchief.nl/organisatie
prov:generatedAtTime: '2026-01-04T15:02:04.611211+00:00'
source_section: Organisatie

View file

@ -54,9 +54,8 @@ kien_enrichment:
heritage_forms: []
enrichment_timestamp: '2025-12-04T06:59:52.359680+00:00'
source: https://www.immaterieelerfgoed.nl
notes: 'Als bestuurslid Culturele en Traditionele zaken houdt ik mij vooral bezig
met de aspecten Bela Diri ( zelfverdediging); Seni Budaya ( Kunst en Cultuur ) en
het Mentaal / Spirituele aspect.
notes: 'Als bestuurslid Culturele en Traditionele zaken houdt ik mij vooral bezig met de aspecten Bela Diri ( zelfverdediging);
Seni Budaya ( Kunst en Cultuur ) en het Mentaal / Spirituele aspect.
Het aspect…'
contact:
@ -233,18 +232,15 @@ 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: '1349'
uuid: 4a1ec831-4d4b-544f-bbdb-f98ef9b25c03
name_en: Seventeenth-Century Canal Ring Area of Amsterdam inside the Singelgracht
name_local: Zone des canaux concentriques du 17e siècle à l'intérieur du Singelgracht
à Amsterdam
name_local: Zone des canaux concentriques du 17e siècle à l'intérieur du Singelgracht à Amsterdam
category: Cultural
date_inscribed: '2010'
in_danger: false
@ -257,13 +253,11 @@ unesco_enrichment:
lon: 4.8877777778
lat: 52.365
url: https://whc.unesco.org/en/list/1349
short_description: The historic urban ensemble of the canal district of Amsterdam
was a project for a new port city built at the end of the 16th and beginning
of the 17th centuries. It comprises a network of canals to the west and south
of the historic old town and the medieval port that encircled the old town and
was accompanied by the repositioning inland of the citys fortified boundaries,
the Singelgracht. This was a long-term programme that involved extending the
city by draining the swampland, using a syst...
short_description: The historic urban ensemble of the canal district of Amsterdam was a project for a new port city
built at the end of the 16th and beginning of the 17th centuries. It comprises a network of canals to the west and south
of the historic old town and the medieval port that encircled the old town and was accompanied by the repositioning
inland of the citys fortified boundaries, the Singelgracht. This was a long-term programme that involved extending
the city by draining the swampland, using a syst...
unesco_ich_enrichment:
country_code: NL
total_elements_in_country: 5
@ -276,11 +270,9 @@ 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
@ -288,9 +280,8 @@ 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
@ -299,11 +290,9 @@ 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
@ -311,9 +300,8 @@ 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
@ -322,9 +310,8 @@ 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...
youtube_status: NOT_FOUND
youtube_search_query: Nederlandse Pencak Silat Federatie official
@ -336,9 +323,8 @@ timespan:
end_of_the_end: null
sources:
- 'Wikidata P571 inception: https://www.wikidata.org/wiki/Q113976417'
notes: Founded August 2, 2015. Dutch federation for Pencak Silat, a martial art
and UNESCO Intangible Cultural Heritage (inscribed 2019 as part of Indonesia nomination,
Q83832986). Preserves and promotes Indonesian martial art tradition.
notes: Founded August 2, 2015. Dutch federation for Pencak Silat, a martial art and UNESCO Intangible Cultural Heritage
(inscribed 2019 as part of Indonesia nomination, Q83832986). Preserves and promotes Indonesian martial art tradition.
location:
latitude: 52.1897873
longitude: 5.3886598
@ -376,8 +362,7 @@ digital_platform_v2:
source_status_code: 200
primary_platform:
platform_id: primary_website_npsf_nl
platform_name: Nederlandse Pencak Silat Federatie Nederlandse Pencak Silat Federatie
Website
platform_name: Nederlandse Pencak Silat Federatie Nederlandse Pencak Silat Federatie Website
platform_url: https://npsf.nl/
platform_type: INSTITUTIONAL_WEBSITE
description: ''
@ -405,3 +390,21 @@ logo_enrichment:
has_favicon: true
has_og_image: false
favicon_count: 4
mission_statement:
- statement_id: https://nde.nl/ontology/hc/mission/nl-fl-dro-i-npsf/mission-2026
statement_type: mission
statement_text: De Nederlandse Pencak Silat Federatie ondersteunt en promoot deze krijgskunst in al haar facetten voor Nederland
door samen met haar leden toernooien, seminars, festivals, etc. te organiseren.
statement_language: nl
extracted_verbatim: true
source_url: http://www.npsf.nl
content_hash: sha256-PeURs3hyQ9/WXfTVDnVfvVaEjRFKSMpe3rYArX2WMVg=
provenance:
statement_created_at: '2026-01-04T16:27:37.207999+00:00'
source_archived_at: '2026-01-04T16:27:05.742426+00:00'
retrieval_agent: linkup-api
extraction_agent: zai-glm/glm-4.7
extraction_confidence: 0.75
prov:wasDerivedFrom: http://www.npsf.nl
prov:generatedAtTime: '2026-01-04T16:27:37.207999+00:00'
source_section: Introductie

View file

@ -114,18 +114,14 @@ enriched_data:
- Ons Erfgoed Noord-Nederland
institution_type: DIGITAL_PLATFORM
institution_subtype: erfgoed aggregator / discovery portal
description_nl: Noorderstruun is een digitaal platform waar je door het erfgoed
van Noord-Nederland kunt 'struunen' (rondkijken). Het platform toont museumstukken,
kunstcollecties en items in particulier bezit, maar ook bijdragen als verhalen,
reacties en foto's. Erfgoedinstellingen, gemeenten, verenigingen én particulieren
kunnen collecties en content delen. Het platform biedt thema's zoals de Friese
Wadden, Fryske Kanon, Watersnood 1825 en Terpen.
description_en: Noorderstruun is a digital heritage platform for browsing heritage
collections from Northern Netherlands. The platform displays museum pieces, art
collections, and privately-owned items, plus user contributions like stories,
comments, and photos. Heritage institutions, municipalities, associations, and
individuals can share collections and content. Featured themes include the Frisian
Wadden, Frisian Canon, 1825 Flood, and Terpen (mounds).
description_nl: Noorderstruun is een digitaal platform waar je door het erfgoed van Noord-Nederland kunt 'struunen' (rondkijken).
Het platform toont museumstukken, kunstcollecties en items in particulier bezit, maar ook bijdragen als verhalen, reacties
en foto's. Erfgoedinstellingen, gemeenten, verenigingen én particulieren kunnen collecties en content delen. Het platform
biedt thema's zoals de Friese Wadden, Fryske Kanon, Watersnood 1825 en Terpen.
description_en: Noorderstruun is a digital heritage platform for browsing heritage collections from Northern Netherlands.
The platform displays museum pieces, art collections, and privately-owned items, plus user contributions like stories,
comments, and photos. Heritage institutions, municipalities, associations, and individuals can share collections and content.
Featured themes include the Frisian Wadden, Frisian Canon, 1825 Flood, and Terpen (mounds).
parent_organization:
name: Stichting Erfgoed & Publiek
address: Druifstreek 63, 8911 LH Leeuwarden
@ -305,8 +301,7 @@ google_maps_enrichment:
icon_background_color: '#7B9EB0'
utc_offset_minutes: 60
google_maps_status: SUCCESS
google_maps_search_query: Platform Digitaal Erfgoed Friesland (alle collecties), Leeuwarden,
Netherlands
google_maps_search_query: Platform Digitaal Erfgoed Friesland (alle collecties), Leeuwarden, Netherlands
web_enrichment:
web_archives:
- url: https://www.noorderstruun.nl/
@ -436,13 +431,11 @@ 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: '867'
uuid: ac28c2a7-3915-5f43-8ec1-71e5dde18e1c
name_en: Ir.D.F. Woudagemaal (D.F. Wouda Steam Pumping Station)
@ -459,11 +452,9 @@ unesco_enrichment:
lon: 5.67889
lat: 52.84583
url: https://whc.unesco.org/en/list/867
short_description: The Wouda Pumping Station at Lemmer in the province of Friesland
opened in 1920. It is the largest steam-pumping station ever built and is still
in operation. It represents the high point of the contribution made by Netherlands
engineers and architects in protecting their people and land against the natural
forces of water.
short_description: The Wouda Pumping Station at Lemmer in the province of Friesland opened in 1920. It is the largest
steam-pumping station ever built and is still in operation. It represents the high point of the contribution made by
Netherlands engineers and architects in protecting their people and land against the natural forces of water.
- unesco_id: '1555'
uuid: 491bcafc-6087-5c2f-bb4a-fd5cc083767f
name_en: Colonies of Benevolence
@ -480,13 +471,11 @@ 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
@ -499,11 +488,9 @@ 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
@ -511,9 +498,8 @@ 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
@ -522,11 +508,9 @@ 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
@ -534,9 +518,8 @@ 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
@ -545,9 +528,8 @@ 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: 53.2004179
@ -587,22 +569,21 @@ firecrawl_enrichment:
catalog_type: beeldbank
catalog_type_label: Image Collection
title: Beeldbank
description: Met een eigen account kun je verhalen toevoegen, reacties plaatsen,
thema's aanmaken en nog veel meer. Samen brengen we het erfgoed van Noord-Nederland
tot ...
description: Met een eigen account kun je verhalen toevoegen, reacties plaatsen, thema's aanmaken en nog veel meer. Samen
brengen we het erfgoed van Noord-Nederland tot ...
crawl4ai_enrichment:
retrieval_timestamp: '2025-12-14T17:19:46.789731+00:00'
retrieval_agent: crawl4ai
source_url: http://erfgoedpubliek.nl/
status_code: 301
title: Home - Erfgoed en Publiek
description: Samen met erfgoedinstellingen, ondernemers en geïnteresseerden cultureel
erfgoed in Fryslân op een innovatieve, ondernemende en duurzame wijze presenteren.
description: Samen met erfgoedinstellingen, ondernemers en geïnteresseerden cultureel erfgoed in Fryslân op een innovatieve,
ondernemende en duurzame wijze presenteren.
links_count: 35
open_graph:
title: Stichting Erfgoed & Publiek
description: Samen met erfgoedinstellingen, ondernemers en geïnteresseerden cultureel
erfgoed in Fryslân op een innovatieve, ondernemende en duurzame wijze presenteren.
description: Samen met erfgoedinstellingen, ondernemers en geïnteresseerden cultureel erfgoed in Fryslân op een innovatieve,
ondernemende en duurzame wijze presenteren.
url: https://erfgoedpubliek.nl/
site_name: Erfgoed en Publiek
digital_platform_v2:
@ -657,8 +638,8 @@ logo_enrichment:
- claim_type: logo_url
claim_value: https://www.noorderstruun.nl/wp-content/themes/noorderstruun/static/img/logo-noorderstruun-wit-geel.png
source_url: https://www.noorderstruun.nl
css_selector: '[document] > html > body.wp-singular.page-template > div.nav__wrapper
> nav.nav > a.nav__logo-wrapper > img.nav__logo'
css_selector: '[document] > html > body.wp-singular.page-template > div.nav__wrapper > nav.nav > a.nav__logo-wrapper >
img.nav__logo'
retrieved_on: '2025-12-21T19:26:19.624581+00:00'
extraction_method: crawl4ai_header_logo
detection_confidence: high
@ -677,3 +658,40 @@ logo_enrichment:
has_favicon: true
has_og_image: false
favicon_count: 3
mission_statement:
- statement_id: https://nde.nl/ontology/hc/mission/nl-fr-lee-d-ep/mission-2026
statement_type: mission
statement_text: 'Op Noorderstruun snijdt het mes aan twee kanten: erfgoed wordt op een juiste, uniforme en duurzame manier
gedigitaliseerd, en het publiek doet er zijn voordeel mee van onderzoeker tot journalist en van student tot hobbyist.
Samen brengen we erfgoed tot leven.'
statement_language: nl
extracted_verbatim: true
source_url: https://www.noorderstruun.nl/over
content_hash: sha256-Y6BEFtcmun4tMDAxTW78aADjHQ+RgMjhT1y48NEbb7U=
provenance:
statement_created_at: '2026-01-04T15:07:57.583019+00:00'
source_archived_at: '2026-01-04T15:07:19.280409+00:00'
retrieval_agent: linkup-api
extraction_agent: zai-glm/glm-4.7
extraction_confidence: 0.8
prov:wasDerivedFrom: https://www.noorderstruun.nl/over
prov:generatedAtTime: '2026-01-04T15:07:57.583019+00:00'
source_section: Introductie
- statement_id: https://nde.nl/ontology/hc/mission/nl-fr-lee-d-ep/goal-2026
statement_type: goal
statement_text: 'Door te digitaliseren wordt het eenvoudiger om erfgoed te: Bewaren voor toekomstige generaties, Beheren
en te registreren, Ontsluiten voor onderzoek, onderwijs en het brede publiek, Vinden, nu veel mensen zich online oriënteren,
Verrijken met bijbehorende items of content.'
statement_language: nl
extracted_verbatim: true
source_url: https://www.noorderstruun.nl/over
content_hash: sha256-9w6fMhZikctU+Y8iCHgokh0ffsnRQuXh0eHqgWVJCRo=
provenance:
statement_created_at: '2026-01-04T15:07:57.583103+00:00'
source_archived_at: '2026-01-04T15:07:19.280409+00:00'
retrieval_agent: linkup-api
extraction_agent: zai-glm/glm-4.7
extraction_confidence: 0.8
prov:wasDerivedFrom: https://www.noorderstruun.nl/over
prov:generatedAtTime: '2026-01-04T15:07:57.583103+00:00'
source_section: Introductie

View file

@ -41,8 +41,7 @@ wikidata_enrichment:
en: provincial organisation for museums in the province of Friesland, the Netherlands
uk: організація
sl: pokrajinska organizacija za muzeje v provinci Friesland (Frizija) na Nizozemskem
wikidata_description_en: provincial organisation for museums in the province of
Friesland, the Netherlands
wikidata_description_en: provincial organisation for museums in the province of Friesland, the Netherlands
wikidata_aliases:
nl:
- Museumfederatie Fryslan
@ -157,8 +156,7 @@ provenance:
linkup_timespan:
- source_type: linkup_web_search
fetch_timestamp: '2025-12-15T17:08:49.835025+00:00'
search_query: '"Museumfederatie Fryslân" Leeuwarden opgericht OR gesticht OR
sinds'
search_query: '"Museumfederatie Fryslân" Leeuwarden opgericht OR gesticht OR sinds'
source_urls:
- https://www.openerfgoed.nl/leden/friesland/
- https://kiacommunity.nl/documents/55224
@ -285,18 +283,16 @@ google_maps_enrichment:
author_uri: https://www.google.com/maps/contrib/107899705866698300933/reviews
rating: 5
relative_time_description: een jaar geleden
text: Prachtig kantoor op schitterende locatie. Aardige mensen met hart voor de
zaak.
text: Prachtig kantoor op schitterende locatie. Aardige mensen met hart voor de zaak.
publish_time: '2024-01-17T18:36:25.144699Z'
- author_name: Sara Hemmati
author_uri: https://www.google.com/maps/contrib/106245206371572175802/reviews
rating: 5
relative_time_description: een maand geleden
text: Mis de tentoonstelling Wybrand de Geest Meesterlijke Portretten in het
Fries Museum in Leeuwarden niet! Deze tentoonstelling, die loopt tot 1 maart
2026, toont het ongelooflijke portretwerk van de beroemde Friese kunstenaar
Wybrand de Geest. Een perfecte ervaring voor kunstliefhebbers en iedereen die
geïnteresseerd is in geschiedenis en cultuur. Een echte aanrader!
text: Mis de tentoonstelling Wybrand de Geest Meesterlijke Portretten in het Fries Museum in Leeuwarden niet! Deze tentoonstelling,
die loopt tot 1 maart 2026, toont het ongelooflijke portretwerk van de beroemde Friese kunstenaar Wybrand de Geest.
Een perfecte ervaring voor kunstliefhebbers en iedereen die geïnteresseerd is in geschiedenis en cultuur. Een echte
aanrader!
publish_time: '2025-10-01T16:23:25.466848156Z'
- author_name: Nellie Vrijburg
author_uri: https://www.google.com/maps/contrib/115854870357526545790/reviews
@ -473,8 +469,8 @@ youtube_enrichment:
- video_id: kRGmYRtWY78
video_url: https://www.youtube.com/watch?v=kRGmYRtWY78
title: Koele Wateren
description: Herman Pleij, Emeritus hoogleraar middeleeuwse letterkunde, introduceert
de tentoonstelling Koele Wateren in Gemeentemuseum het Hannemahuis te Harlingen.
description: Herman Pleij, Emeritus hoogleraar middeleeuwse letterkunde, introduceert de tentoonstelling Koele Wateren
in Gemeentemuseum het Hannemahuis te Harlingen.
published_at: '2020-09-30T10:29:37Z'
duration: PT6M38S
definition: hd
@ -494,10 +490,8 @@ youtube_enrichment:
- video_id: U6TWASSFxHo
video_url: https://www.youtube.com/watch?v=U6TWASSFxHo
title: Eindelijk niet meer alleen
description: 'Margriet is nog steeds alleen in het museum. Of.... nee, vandáág
is ze dat niet, want Tine komt op bezoek! Samen dwalen ze door het Hannemahuis,
waar ze familiewapens, portretten en de restanten van een stokoude stokerij
tegenkomen.
description: 'Margriet is nog steeds alleen in het museum. Of.... nee, vandáág is ze dat niet, want Tine komt op bezoek!
Samen dwalen ze door het Hannemahuis, waar ze familiewapens, portretten en de restanten van een stokoude stokerij tegenkomen.
Ook deze week heeft Margriet weer een nieuwe opdracht voor alle kinderen.
@ -527,9 +521,8 @@ youtube_enrichment:
- video_id: J1S3igYxRRo
video_url: https://www.youtube.com/watch?v=J1S3igYxRRo
title: De schat van Claes en Antje
description: "Hugo, de directeur verlaat het museum en Margriet is weer alleen.\
\ \nDit keer gaat ze opzoek naar wat romantiek....\n\nVoor aanmeldingen kun\
\ je mailen naar museum@harlingen.nl\n\nMusic: \"Love from www.bensound.com\""
description: "Hugo, de directeur verlaat het museum en Margriet is weer alleen. \nDit keer gaat ze opzoek naar wat romantiek....\n\
\nVoor aanmeldingen kun je mailen naar museum@harlingen.nl\n\nMusic: \"Love from www.bensound.com\""
published_at: '2020-05-06T11:00:11Z'
duration: PT4M12S
definition: hd
@ -553,15 +546,12 @@ youtube_enrichment:
- video_id: 6BIn_xs7JWk
video_url: https://www.youtube.com/watch?v=6BIn_xs7JWk
title: Theevisite
description: "Vanaf circa 1600 vindt in Harlingen de productie plaats van aardewerk\
\ en tegels. In de zeventiende eeuw bestaan de producten vooral uit schotels\
\ in de zogenoemde majolica-techniek.\nIn de achttiende eeuw neemt het aantal\
\ bedrijven toe en wordt ook de variatie in voorwerpen veel groter. Een van\
\ de fabrieken stond in de Harlinger binnenstad aan de Zoutsloot. \nDeze plaat,\
\ die waarschijnlijk werd beschilderd door Jan Eelkes Kronenburg, zal in 1780\
\ in die fabriek zijn vervaardigd. \nHet toont een theevisite in een gegoed\
\ milieu.\nThee was nog duur, want het werd met schepen van de Verenigde Oostindische\
\ Compagnie uit Azië geïmporteerd.\nDe plaat werd voor Gemeentemuseum het Hannemahuis\
description: "Vanaf circa 1600 vindt in Harlingen de productie plaats van aardewerk en tegels. In de zeventiende eeuw\
\ bestaan de producten vooral uit schotels in de zogenoemde majolica-techniek.\nIn de achttiende eeuw neemt het aantal\
\ bedrijven toe en wordt ook de variatie in voorwerpen veel groter. Een van de fabrieken stond in de Harlinger binnenstad\
\ aan de Zoutsloot. \nDeze plaat, die waarschijnlijk werd beschilderd door Jan Eelkes Kronenburg, zal in 1780 in die\
\ fabriek zijn vervaardigd. \nHet toont een theevisite in een gegoed milieu.\nThee was nog duur, want het werd met schepen\
\ van de Verenigde Oostindische Compagnie uit Azië geïmporteerd.\nDe plaat werd voor Gemeentemuseum het Hannemahuis\
\ in Harlingen aangekocht door de Vereniging Vrienden van het Hannemahuis."
published_at: '2020-05-01T09:00:02Z'
duration: PT1M
@ -662,19 +652,18 @@ youtube_enrichment:
- video_id: miZy0niVHSs
video_url: https://www.youtube.com/watch?v=miZy0niVHSs
title: Planisferiumklok door Tjeerd Radsma
description: 'In veel Nederlandse steden werden in de achttiende eeuw staande
klokken gemaakt, die vaak in de gang van herenhuizen werden geplaatst.
description: 'In veel Nederlandse steden werden in de achttiende eeuw staande klokken gemaakt, die vaak in de gang van
herenhuizen werden geplaatst.
Amsterdam was het centrum van deze nijverheid, maar onder andere in Harlingen
waren ook klokkenmakers actief die dergelijke klokken maakten.
Amsterdam was het centrum van deze nijverheid, maar onder andere in Harlingen waren ook klokkenmakers actief die dergelijke
klokken maakten.
Tjeerd Radsma was een telg uit een klokkenmakersfamilie en hij werd bekend vanwege
zijn planisferiumklokken. Dat zijn geavanceerde uurwerken waarin ook de positie
van de zon ten opzichte van de planeten wordt weergegeven. De klok heeft ook
nog een speelwerk met twaalf airtjes, dus melodieën, waaronder het Wilhelmus.
Tjeerd Radsma was een telg uit een klokkenmakersfamilie en hij werd bekend vanwege zijn planisferiumklokken. Dat zijn
geavanceerde uurwerken waarin ook de positie van de zon ten opzichte van de planeten wordt weergegeven. De klok heeft
ook nog een speelwerk met twaalf airtjes, dus melodieën, waaronder het Wilhelmus.
Sterrenkunde was populair in het Friesland van de achttiende eeuw. Het planetarium
van Eise Eisinga in Franeker staat niet op zichzelf.'
Sterrenkunde was populair in het Friesland van de achttiende eeuw. Het planetarium van Eise Eisinga in Franeker staat
niet op zichzelf.'
published_at: '2020-04-10T16:25:11Z'
duration: PT1M33S
definition: hd
@ -727,8 +716,7 @@ youtube_enrichment:
- video_id: NTUSH4GZN2o
video_url: https://www.youtube.com/watch?v=NTUSH4GZN2o
title: Hamsteren
description: Nieuwe Harlinger Courant uit 1940 over hamsteren, uit een tentoonstelling
over de oorlogsjaren in Harlingen.
description: Nieuwe Harlinger Courant uit 1940 over hamsteren, uit een tentoonstelling over de oorlogsjaren in Harlingen.
published_at: '2020-03-27T20:59:29Z'
duration: PT1M38S
definition: hd
@ -793,8 +781,7 @@ digital_platforms:
platform_type: WEBSITE
platform_category:
- Organizational website
digital_collections: provincial organisation for museums in the province of Friesland,
the Netherlands
digital_collections: provincial organisation for museums in the province of Friesland, the Netherlands
technology_stack: Standard web technology
data_standards:
- HTML5
@ -822,13 +809,11 @@ 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: '867'
uuid: ac28c2a7-3915-5f43-8ec1-71e5dde18e1c
name_en: Ir.D.F. Woudagemaal (D.F. Wouda Steam Pumping Station)
@ -845,11 +830,9 @@ unesco_enrichment:
lon: 5.67889
lat: 52.84583
url: https://whc.unesco.org/en/list/867
short_description: The Wouda Pumping Station at Lemmer in the province of Friesland
opened in 1920. It is the largest steam-pumping station ever built and is still
in operation. It represents the high point of the contribution made by Netherlands
engineers and architects in protecting their people and land against the natural
forces of water.
short_description: The Wouda Pumping Station at Lemmer in the province of Friesland opened in 1920. It is the largest
steam-pumping station ever built and is still in operation. It represents the high point of the contribution made by
Netherlands engineers and architects in protecting their people and land against the natural forces of water.
- unesco_id: '1555'
uuid: 491bcafc-6087-5c2f-bb4a-fd5cc083767f
name_en: Colonies of Benevolence
@ -866,13 +849,11 @@ 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
@ -885,11 +866,9 @@ 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
@ -897,9 +876,8 @@ 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
@ -908,11 +886,9 @@ 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
@ -920,9 +896,8 @@ 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
@ -931,9 +906,8 @@ 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: 53.2004272
@ -989,9 +963,8 @@ firecrawl_enrichment:
success: true
page_metadata:
title: Home - Museumfederatie Fryslân
description: Museumfederatie Fryslân staat voor het toegankelijk maken en behouden
van het erfgoed in Friesland op een zo hoog mogelijk niveau. Samenwerken op
provincie- en erfgoed breed niveau staat hierbij centraal.
description: Museumfederatie Fryslân staat voor het toegankelijk maken en behouden van het erfgoed in Friesland op een
zo hoog mogelijk niveau. Samenwerken op provincie- en erfgoed breed niveau staat hierbij centraal.
language: nl-NL
status_code: 200
detected_cms: []
@ -1010,15 +983,13 @@ crawl4ai_enrichment:
source_url: http://www.museumfederatiefryslan.nl/
status_code: 301
title: Home - Museumfederatie Fryslân
description: Museumfederatie Fryslân staat voor het toegankelijk maken en behouden
van het erfgoed in Friesland op een zo hoog mogelijk niveau. Samenwerken op provincie-
en erfgoed breed niveau staat hierbij centraal.
description: Museumfederatie Fryslân staat voor het toegankelijk maken en behouden van het erfgoed in Friesland op een zo
hoog mogelijk niveau. Samenwerken op provincie- en erfgoed breed niveau staat hierbij centraal.
links_count: 38
open_graph:
title: Museumfederatie Fryslân
description: Museumfederatie Fryslân staat voor het toegankelijk maken en behouden
van het erfgoed in Friesland op een zo hoog mogelijk niveau. Samenwerken op
provincie- en erfgoed breed niveau staat hierbij centraal.
description: Museumfederatie Fryslân staat voor het toegankelijk maken en behouden van het erfgoed in Friesland op een
zo hoog mogelijk niveau. Samenwerken op provincie- en erfgoed breed niveau staat hierbij centraal.
url: https://www.museumfederatiefryslan.nl/
site_name: Museumfederatie Fryslân
digital_platform_v2:
@ -1049,8 +1020,8 @@ timespan:
description: is opgericht
- date: '2016'
type: relocation
description: gevestigd in Leeuwarden, is achter de schermen dezelfde organisatie
als Stichting Erfgoed & Publiek, die sinds 2016 bestaat
description: gevestigd in Leeuwarden, is achter de schermen dezelfde organisatie als Stichting Erfgoed & Publiek, die
sinds 2016 bestaat
timeline_enrichment:
timeline_events:
- event_type: FOUNDING
@ -1065,13 +1036,11 @@ timeline_enrichment:
- https://natuurmuseumfryslan.nl/
- https://www.fryslan.frl/adviezen-subsidieregeling-musea-fryslan-2026-2028
linkup_query: '"Museumfederatie Fryslân" Leeuwarden opgericht OR gesticht OR sinds'
linkup_answer: Museumfederatie Fryslân, gevestigd in Leeuwarden, is achter de
schermen dezelfde organisatie als Stichting Erfgoed & Publiek, die sinds 2016
bestaat. Uit de beschikbare informatie blijkt dat Stichting Erfgoed & Publiek,
die hetzelfde team en adviesfunctie heeft als Museumfederatie Fryslân, in 2016
is opgericht. Er is geen expliciete oprichtingsdatum van Museumfederatie Fryslân
zelf genoemd, maar deze wordt in verband gebracht met Stichting Erfgoed & Publiek
sinds 2016.
linkup_answer: Museumfederatie Fryslân, gevestigd in Leeuwarden, is achter de schermen dezelfde organisatie als Stichting
Erfgoed & Publiek, die sinds 2016 bestaat. Uit de beschikbare informatie blijkt dat Stichting Erfgoed & Publiek, die
hetzelfde team en adviesfunctie heeft als Museumfederatie Fryslân, in 2016 is opgericht. Er is geen expliciete oprichtingsdatum
van Museumfederatie Fryslân zelf genoemd, maar deze wordt in verband gebracht met Stichting Erfgoed & Publiek sinds
2016.
fetch_timestamp: '2025-12-15T17:08:49.825915+00:00'
archive_path: web/0069/linkup/linkup_founding_20251215T170849Z.json
extraction_method: linkup_answer_regex
@ -1081,17 +1050,15 @@ timeline_enrichment:
event_date: '2016'
date_precision: year
approximate: false
description: gevestigd in Leeuwarden, is achter de schermen dezelfde organisatie
als Stichting Erfgoed & Publiek, die sinds 2016 bestaat
description: gevestigd in Leeuwarden, is achter de schermen dezelfde organisatie als Stichting Erfgoed & Publiek, die
sinds 2016 bestaat
source_urls: *id003
linkup_query: '"Museumfederatie Fryslân" Leeuwarden opgericht OR gesticht OR sinds'
linkup_answer: Museumfederatie Fryslân, gevestigd in Leeuwarden, is achter de
schermen dezelfde organisatie als Stichting Erfgoed & Publiek, die sinds 2016
bestaat. Uit de beschikbare informatie blijkt dat Stichting Erfgoed & Publiek,
die hetzelfde team en adviesfunctie heeft als Museumfederatie Fryslân, in 2016
is opgericht. Er is geen expliciete oprichtingsdatum van Museumfederatie Fryslân
zelf genoemd, maar deze wordt in verband gebracht met Stichting Erfgoed & Publiek
sinds 2016.
linkup_answer: Museumfederatie Fryslân, gevestigd in Leeuwarden, is achter de schermen dezelfde organisatie als Stichting
Erfgoed & Publiek, die sinds 2016 bestaat. Uit de beschikbare informatie blijkt dat Stichting Erfgoed & Publiek, die
hetzelfde team en adviesfunctie heeft als Museumfederatie Fryslân, in 2016 is opgericht. Er is geen expliciete oprichtingsdatum
van Museumfederatie Fryslân zelf genoemd, maar deze wordt in verband gebracht met Stichting Erfgoed & Publiek sinds
2016.
fetch_timestamp: '2025-12-15T17:08:49.825915+00:00'
archive_path: web/0069/linkup/linkup_founding_20251215T170849Z.json
extraction_method: linkup_answer_regex
@ -1177,8 +1144,7 @@ logo_enrichment:
- claim_type: favicon_url
claim_value: https://www.museumfederatiefryslan.nl/friksbeheer/wp-content/uploads/2014/05/cropped-mff-180x180.jpg
source_url: https://www.museumfederatiefryslan.nl
css_selector: '[document] > html.wf-lato-n4-active.wf-montserrat-n4-active > head
> link:nth-of-type(22)'
css_selector: '[document] > html.wf-lato-n4-active.wf-montserrat-n4-active > head > link:nth-of-type(22)'
retrieved_on: '2025-12-21T19:12:40.672320+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
@ -1189,3 +1155,24 @@ logo_enrichment:
has_favicon: true
has_og_image: false
favicon_count: 4
mission_statement:
- statement_id: https://nde.nl/ontology/hc/mission/nl-fr-lee-o-mf/mission-2026
statement_type: mission
statement_text: Museumfederatie Fryslân is de provinciale organisatie ter ondersteuning van de musea in Friesland. Wij staan
voor het toegankelijk maken en behouden van het cultureel erfgoed in Friesland op een zo hoog mogelijk niveau. We delen
kennis en geven advies op het gebied van bedrijfsvoering, collectie- & informatiebeheer, publiek & educatie en marketing
& communicatie. Samenwerken op provincie- en erfgoed breed niveau staat hierbij centraal. Hiermee brengen we musea, collecties
en overig erfgoed naar een hoger niveau. Kortom, wij staan voor museale kwaliteit!
statement_language: nl
extracted_verbatim: true
source_url: https://www.museumfederatiefryslan.nl/over
content_hash: sha256-L4bzraEc3MrO6pyLRLQf9npuF3sJZkfg2C9zgZOWMA4=
provenance:
statement_created_at: '2026-01-04T15:56:24.860418+00:00'
source_archived_at: '2026-01-04T15:56:05.495295+00:00'
retrieval_agent: linkup-api
extraction_agent: zai-glm/glm-4.7
extraction_confidence: 0.9
prov:wasDerivedFrom: https://www.museumfederatiefryslan.nl/over
prov:generatedAtTime: '2026-01-04T15:56:24.860418+00:00'
source_section: Over ons

View file

@ -486,8 +486,7 @@ custodian_name:
name: Frysk Akademyfûns
score: 0.86
- source: web_title_tag
name: Werken bij het Fryske Akademy en het Mercator Europees Kenniscentrum voor
Meertaligheid en Taalleren
name: Werken bij het Fryske Akademy en het Mercator Europees Kenniscentrum voor Meertaligheid en Taalleren
score: 1.0
genealogiewerkbalk_enrichment:
source: Genealogiewerkbalk.nl Municipality Archives Registry
@ -545,13 +544,11 @@ 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: '867'
uuid: ac28c2a7-3915-5f43-8ec1-71e5dde18e1c
name_en: Ir.D.F. Woudagemaal (D.F. Wouda Steam Pumping Station)
@ -568,11 +565,9 @@ unesco_enrichment:
lon: 5.67889
lat: 52.84583
url: https://whc.unesco.org/en/list/867
short_description: The Wouda Pumping Station at Lemmer in the province of Friesland
opened in 1920. It is the largest steam-pumping station ever built and is still
in operation. It represents the high point of the contribution made by Netherlands
engineers and architects in protecting their people and land against the natural
forces of water.
short_description: The Wouda Pumping Station at Lemmer in the province of Friesland opened in 1920. It is the largest
steam-pumping station ever built and is still in operation. It represents the high point of the contribution made by
Netherlands engineers and architects in protecting their people and land against the natural forces of water.
- unesco_id: '1555'
uuid: 491bcafc-6087-5c2f-bb4a-fd5cc083767f
name_en: Colonies of Benevolence
@ -589,13 +584,11 @@ 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
@ -608,11 +601,9 @@ 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
@ -620,9 +611,8 @@ 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
@ -631,11 +621,9 @@ 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
@ -643,9 +631,8 @@ 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
@ -654,9 +641,8 @@ unesco_ich_enrichment:
inscription_year: 2017
multinational: false
url: https://ich.unesco.org/en/RL/craft-of-the-miller-operating-windmills-and-watermills-01265
description: The craft of the miller operating windmills and watermills involves
the knowledge and skills necessary to operate a mill and maintain it in a good
state of repair. With a declining number of people earning their livelihood
description: The craft of the miller operating windmills and watermills involves the knowledge and skills necessary to
operate a mill and maintain it in a good state of repair. With a declining number of people earning their livelihood
from the craft, millers today also play a key role in transmitting the cultur...
timespan:
begin_of_the_begin: '1938-01-01T00:00:00Z'
@ -665,8 +651,8 @@ timespan:
end_of_the_end: null
sources:
- 'Wikidata Q528584 P571 (inception): https://www.wikidata.org/wiki/Q528584'
notes: Fryske Akademy founded 1938 as research institute for Frisian language, culture,
and history. Key institution for preservation and study of Frisian heritage.
notes: Fryske Akademy founded 1938 as research institute for Frisian language, culture, and history. Key institution for
preservation and study of Frisian heritage.
location:
latitude: 53.203559899999995
longitude: 5.7929071
@ -774,9 +760,8 @@ firecrawl_enrichment:
success: true
page_metadata:
title: Fryske Akademy - Fryske Akademy
description: Fryske Akademy is hét academische onderzoeksinstituut voor de Friese
casus, geworteld in de Friese maatschappij en opererend in de internationale
wetenschappelijke wereld.
description: Fryske Akademy is hét academische onderzoeksinstituut voor de Friese casus, geworteld in de Friese maatschappij
en opererend in de internationale wetenschappelijke wereld.
language: nl
status_code: 200
detected_cms: []
@ -789,9 +774,8 @@ crawl4ai_enrichment:
source_url: http://www.fryske-akademy.nl/
status_code: 301
title: Fryske Akademy - Fryske Akademy
description: Fryske Akademy is it akademysk ûndersyksynstitút foar de Fryske kasus,
bewoartele yn de Fryske maatskippij en operearjend yn de ynternasjonale wittenskiplike
wrâld.
description: Fryske Akademy is it akademysk ûndersyksynstitút foar de Fryske kasus, bewoartele yn de Fryske maatskippij
en operearjend yn de ynternasjonale wittenskiplike wrâld.
links_count: 86
digital_platform_v2:
platform_id: https://nde.nl/ontology/hc/platform/nl-fr-lee-r-fa-website
@ -825,3 +809,38 @@ logo_enrichment:
has_favicon: true
has_og_image: false
favicon_count: 1
mission_statement:
- statement_id: https://nde.nl/ontology/hc/mission/nl-fr-lee-r-fa/mission-2026
statement_type: mission
statement_text: Fryske Akademy is hét academische onderzoeksinstituut voor de Friese casus, geworteld in de Friese maatschappij
en opererend in de internationale wetenschappelijke wereld.
statement_language: nl
extracted_verbatim: true
source_url: https://www.fryske-akademy.nl/nl/
content_hash: sha256-+6e8Gi6ac4K6PxSgsyYHnWjMYtTKGxFfFWt6gdJP23g=
provenance:
statement_created_at: '2026-01-04T16:42:10.927279+00:00'
source_archived_at: '2026-01-04T16:41:39.729187+00:00'
retrieval_agent: linkup-api
extraction_agent: zai-glm/glm-4.7
extraction_confidence: 0.95
prov:wasDerivedFrom: https://www.fryske-akademy.nl/nl/
prov:generatedAtTime: '2026-01-04T16:42:10.927279+00:00'
source_section: Homepage Introductie
- statement_id: https://nde.nl/ontology/hc/mission/nl-fr-lee-r-fa/goal-2026
statement_type: goal
statement_text: Wij zijn het academisch onderzoeksinstituut voor de Friese casus. We maken Fries en historisch erfgoed toegankelijk
voor wetenschap, onderwijs en samenleving. Wij ontwikkelen digitale producten en collecties voor innovatief onderzoek.
statement_language: nl
extracted_verbatim: true
source_url: https://www.fryske-akademy.nl/nl/
content_hash: sha256-WYkgwuqg9hZKB31szU+L5GTuMHfQlyqFCuIuLDAjalc=
provenance:
statement_created_at: '2026-01-04T16:42:10.927303+00:00'
source_archived_at: '2026-01-04T16:41:39.729187+00:00'
retrieval_agent: linkup-api
extraction_agent: zai-glm/glm-4.7
extraction_confidence: 0.95
prov:wasDerivedFrom: https://www.fryske-akademy.nl/nl/
prov:generatedAtTime: '2026-01-04T16:42:10.927303+00:00'
source_section: Homepage Introductie

View file

@ -78,8 +78,8 @@ wikidata_enrichment:
instance_of: &id001
- id: Q33506
label: museum
description: institution that holds artifacts and other objects of scientific,
artistic, cultural, historical, or other importance
description: institution that holds artifacts and other objects of scientific, artistic, cultural, historical, or other
importance
wikidata_instance_of: *id001
wikidata_location:
country: &id002
@ -364,29 +364,24 @@ google_maps_enrichment:
author_uri: https://www.google.com/maps/contrib/106054344838425372879/reviews
rating: 5
relative_time_description: 3 maanden geleden
text: 'Als je ooit in Sneek bent en serieus, dat moet je echt eens zijn dan
is het Fries Scheepvaartmuseum een absolute must. Sneek zelf is al een feestje
met al die bootjes die je vanaf elke brug kunt bewonderen, maar dit museum voegt
text: 'Als je ooit in Sneek bent en serieus, dat moet je echt eens zijn dan is het Fries Scheepvaartmuseum een absolute
must. Sneek zelf is al een feestje met al die bootjes die je vanaf elke brug kunt bewonderen, maar dit museum voegt
daar nog een heerlijke laag historie aan toe.
Wat je kunt verwachten? Nou, een prachtige duik in de geschiedenis van Friesland,
Sneek en alles wat daar met water, varen en winterse Elfstedentocht-sferen te
maken heeft. Van minutieus gemaakte modelschepen tot oude schaatsen waar je
opa jaloers op zou zijn het is echt alsof je even mag rondneuzen in het verleden.
Wat je kunt verwachten? Nou, een prachtige duik in de geschiedenis van Friesland, Sneek en alles wat daar met water,
varen en winterse Elfstedentocht-sferen te maken heeft. Van minutieus gemaakte modelschepen tot oude schaatsen waar
je opa jaloers op zou zijn het is echt alsof je even mag rondneuzen in het verleden.
En voor ouders met kinderen: hou je vast. Het kindermuseum is het klapstuk!
Onze zoon was meteen verkocht. Het is niet zomaar een kinderhoekje nee, het
is een interactieve speeltuin vol spelletjes, ontdekken, bouwen, proberen, en
alles draait om het leven op en rond het water. Je weet wel, leren terwijl je
helemaal losgaat. Heerlijk.
En voor ouders met kinderen: hou je vast. Het kindermuseum is het klapstuk! Onze zoon was meteen verkocht. Het is niet
zomaar een kinderhoekje nee, het is een interactieve speeltuin vol spelletjes, ontdekken, bouwen, proberen, en alles
draait om het leven op en rond het water. Je weet wel, leren terwijl je helemaal losgaat. Heerlijk.
Praktische bonuspunten? ✅ Parkeren is vlakbij én betaalbaar. ✅ De Museumkaart
is geldig. ✅ En als kers op de taart krijg je bij binnenkomst een kopje koffie
of thee. Ideaal om na afloop nog even na te kletsen en bij te komen van alle
indrukken (of het enthousiasme van je kind 😉).
Praktische bonuspunten? ✅ Parkeren is vlakbij én betaalbaar. ✅ De Museumkaart is geldig. ✅ En als kers op de taart krijg
je bij binnenkomst een kopje koffie of thee. Ideaal om na afloop nog even na te kletsen en bij te komen van alle indrukken
(of het enthousiasme van je kind 😉).
Kortom: goed weer, slecht weer het maakt niet uit. Dit museum is een topper.'
@ -395,29 +390,25 @@ google_maps_enrichment:
author_uri: https://www.google.com/maps/contrib/111684477645373619754/reviews
rating: 4
relative_time_description: 3 maanden geleden
text: Bent u iemand die een water sport lief hebber bent dan is deze museum iets
voor u, maar ook andere die nog iets wil leren van vroeger over varen, vissen,
vervoeren, zeilen of gemotoriseerd, niet alleen voor volwassenen maar ook voor
kinderen groot en klein, wilt u meer weten dan is er een goed gevulde bibliotheek.
Wij hebben er van genoten in Sneek.
text: Bent u iemand die een water sport lief hebber bent dan is deze museum iets voor u, maar ook andere die nog iets
wil leren van vroeger over varen, vissen, vervoeren, zeilen of gemotoriseerd, niet alleen voor volwassenen maar ook
voor kinderen groot en klein, wilt u meer weten dan is er een goed gevulde bibliotheek. Wij hebben er van genoten in
Sneek.
publish_time: '2025-08-27T11:17:39.230037275Z'
- author_name: Camper Chronicles
author_uri: https://www.google.com/maps/contrib/112720421873142391245/reviews
rating: 4
relative_time_description: 3 maanden geleden
text: Een interessant museum met veel scheepsmodellen. Maar ook een aantal interessante
instrumenten zoals een Jacobsstaf, de voorganger van een sextant en diverse
wentelloggen, een soort kilometerteller voor schepen. Verder nog diverse scheepsinrichtingen,
van onder andere een Skûtsje, hoe kan het ook anders. Diverse oude kaarten van
Friesland, waarbij heel opvallend Hindeloopen met 1 o geschreven wordt. Dus
een museum dat zeker een bezoekje waard is.
text: Een interessant museum met veel scheepsmodellen. Maar ook een aantal interessante instrumenten zoals een Jacobsstaf,
de voorganger van een sextant en diverse wentelloggen, een soort kilometerteller voor schepen. Verder nog diverse scheepsinrichtingen,
van onder andere een Skûtsje, hoe kan het ook anders. Diverse oude kaarten van Friesland, waarbij heel opvallend Hindeloopen
met 1 o geschreven wordt. Dus een museum dat zeker een bezoekje waard is.
publish_time: '2025-08-20T20:17:03.590144547Z'
- author_name: Inge Kbm
author_uri: https://www.google.com/maps/contrib/106355188596162073257/reviews
rating: 4
relative_time_description: 5 maanden geleden
text: Mooi museum, veel te zien, interessante verhalen en voorwerpen. Route duidelijk,
audiotour ook leuk.
text: Mooi museum, veel te zien, interessante verhalen en voorwerpen. Route duidelijk, audiotour ook leuk.
publish_time: '2025-06-10T12:44:19.295509Z'
- author_name: Martin Verhagen
author_uri: https://www.google.com/maps/contrib/112789311863499908174/reviews
@ -475,8 +466,7 @@ google_maps_enrichment:
icon_background_color: '#13B5C7'
utc_offset_minutes: 60
google_maps_status: SUCCESS
google_maps_search_query: Vereniging Fries Scheepvaart Museum, Kleinzand 16, Sneek,
Netherlands
google_maps_search_query: Vereniging Fries Scheepvaart Museum, Kleinzand 16, Sneek, Netherlands
web_enrichment:
web_archives:
- url: https://www.friesscheepvaartmuseum.nl/
@ -623,13 +613,11 @@ 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: '867'
uuid: ac28c2a7-3915-5f43-8ec1-71e5dde18e1c
name_en: Ir.D.F. Woudagemaal (D.F. Wouda Steam Pumping Station)
@ -646,11 +634,9 @@ 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
@ -667,12 +653,10 @@ 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: '1555'
uuid: 491bcafc-6087-5c2f-bb4a-fd5cc083767f
name_en: Colonies of Benevolence
@ -689,13 +673,11 @@ 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
@ -708,11 +690,9 @@ 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
@ -720,9 +700,8 @@ 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
@ -731,11 +710,9 @@ 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
@ -743,9 +720,8 @@ 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
@ -754,9 +730,8 @@ unesco_ich_enrichment:
inscription_year: 2017
multinational: false
url: https://ich.unesco.org/en/RL/craft-of-the-miller-operating-windmills-and-watermills-01265
description: The craft of the miller operating windmills and watermills involves
the knowledge and skills necessary to operate a mill and maintain it in a good
state of repair. With a declining number of people earning their livelihood
description: The craft of the miller operating windmills and watermills involves the knowledge and skills necessary to
operate a mill and maintain it in a good state of repair. With a declining number of people earning their livelihood
from the craft, millers today also play a key role in transmitting the cultur...
timespan:
begin_of_the_begin: '1938-01-01T00:00:00Z'
@ -765,8 +740,8 @@ timespan:
end_of_the_end: null
sources:
- 'Wikidata Q893334 P571 (inception): https://www.wikidata.org/wiki/Q893334'
notes: Fries Scheepvaart Museum founded 1938 in Sneek. Maritime museum documenting
Frisian shipping history, inland waterways, and traditional boat building.
notes: Fries Scheepvaart Museum founded 1938 in Sneek. Maritime museum documenting Frisian shipping history, inland waterways,
and traditional boat building.
location:
latitude: 53.0322618
longitude: 5.6632828
@ -793,9 +768,8 @@ firecrawl_enrichment:
success: true
page_metadata:
title: Welkom in het Fries Scheepvaart Museum
description: Skûtsjesilen, de Elfstedentocht en de Waterpoort van Sneek. In het
Fries Scheepvaart Museum ontdek je de geschiedenis van de scheepvaart in Friesland,
de ijssport en de historie van de stad Sneek.
description: Skûtsjesilen, de Elfstedentocht en de Waterpoort van Sneek. In het Fries Scheepvaart Museum ontdek je de
geschiedenis van de scheepvaart in Friesland, de ijssport en de historie van de stad Sneek.
language: nl
status_code: 200
detected_cms: []
@ -807,8 +781,8 @@ firecrawl_enrichment:
catalog_type: collectie
catalog_type_label: Collection Portal
title: Collectie | Fries Scheepvaart Museum
description: Bekijk de collectie van het Fries Scheepvaart Museum online. Hier
vind je de volledige collectie, ook alles uit het depot.
description: Bekijk de collectie van het Fries Scheepvaart Museum online. Hier vind je de volledige collectie, ook alles
uit het depot.
- url: https://www.friesscheepvaartmuseum.nl/zoeken
catalog_type: zoeken
catalog_type_label: Search Interface
@ -833,9 +807,8 @@ digital_platform_v2:
platform_name: Welkom in het Fries Scheepvaart Museum Website
platform_url: https://www.friesscheepvaartmuseum.nl/
platform_type: DISCOVERY_PORTAL
description: Skûtsjesilen, de Elfstedentocht en de Waterpoort van Sneek. In het
Fries Scheepvaart Museum ontdek je de geschiedenis van de scheepvaart in Friesland,
de ijssport en de historie van de stad Sneek.
description: Skûtsjesilen, de Elfstedentocht en de Waterpoort van Sneek. In het Fries Scheepvaart Museum ontdek je de
geschiedenis van de scheepvaart in Friesland, de ijssport en de historie van de stad Sneek.
language: nl
og_image: null
favicon: https://www.friesscheepvaartmuseum.nl/site-styles/106/pwa/icons/icon_64.png
@ -991,3 +964,21 @@ logo_enrichment:
has_favicon: true
has_og_image: false
favicon_count: 3
mission_statement:
- statement_id: https://nde.nl/ontology/hc/mission/nl-fr-sne-m-fsm/mission-2026
statement_type: mission
statement_text: Het Fries Scheepvaart Museum wil op een inspirerende manier laten zien hoe sterk de scheepvaart is verbonden
met de Friese samenleving en identiteit.
statement_language: nl
extracted_verbatim: true
source_url: https://www.friesscheepvaartmuseum.nl/organisatie
content_hash: sha256-x3fFk4hs12M3yZIBM1RpXUDhtgggme7S1gpSirZk5b8=
provenance:
statement_created_at: '2026-01-04T15:00:03.464069+00:00'
source_archived_at: '2026-01-04T14:59:51.377167+00:00'
retrieval_agent: linkup-api
extraction_agent: zai-glm/glm-4.7
extraction_confidence: 0.9
prov:wasDerivedFrom: https://www.friesscheepvaartmuseum.nl/organisatie
prov:generatedAtTime: '2026-01-04T15:00:03.464069+00:00'
source_section: missie en visie

View file

@ -2,8 +2,7 @@ original_entry:
organisatie: Euregionaal Historisch Centrum
webadres_organisatie: https://regioarchiefsittard-geleen.nl/
type_organisatie: archief
opmerkingen_inez: 'Geen KvK inschrijving. Het archief bestaat nu onder de naam:
RegioArchief gemeente Sittard-Geleen.'
opmerkingen_inez: 'Geen KvK inschrijving. Het archief bestaat nu onder de naam: RegioArchief gemeente Sittard-Geleen.'
isil_code_na: NL-StdEHC
bibliotheek_collectie: ja
reference:
@ -62,8 +61,7 @@ provenance:
linkup_timespan:
- source_type: linkup_web_search
fetch_timestamp: '2025-12-15T17:17:52.627882+00:00'
search_query: '"Euregionaal Historisch Documentatie Centrum" Aalten opgericht
OR gesticht OR sinds'
search_query: '"Euregionaal Historisch Documentatie Centrum" Aalten opgericht OR gesticht OR sinds'
source_urls:
- https://www.hdcaalten.nl/over-ons/bestuurlijk/
- https://www.aalten.nl/vier-genomineerden-voor-erfgoedprijs-2024
@ -94,12 +92,10 @@ institution_type_code: A
organization_details:
name: RegioArchief gemeente Sittard-Geleen
former_name: Euregionaal Historisch Centrum
description: RegioArchief gemeente Sittard-Geleen (formerly Euregionaal Historisch
Centrum) is the regional archive of the municipality of Sittard-Geleen in Limburg.
The archive manages historical records, photographs, building permits, newspapers,
and person registers for Sittard, Geleen, Born and surrounding villages. Features
an online searchable database (bronnen), beeldbank (image database), and reading
room (studiezaal). Part of the municipality of Sittard-Geleen administration.
description: RegioArchief gemeente Sittard-Geleen (formerly Euregionaal Historisch Centrum) is the regional archive of
the municipality of Sittard-Geleen in Limburg. The archive manages historical records, photographs, building permits,
newspapers, and person registers for Sittard, Geleen, Born and surrounding villages. Features an online searchable database
(bronnen), beeldbank (image database), and reading room (studiezaal). Part of the municipality of Sittard-Geleen administration.
legal_status: Gemeentelijk archief (Municipal archive)
official_website: https://regioarchiefsittard-geleen.nl/
parent_organization: Gemeente Sittard-Geleen
@ -113,8 +109,7 @@ identifiers:
identifier_url: https://isil.org/NL-StdEHC
assigned_date: '2013-07-02'
source: Nationaal Archief ISIL Registry 2025-11-06
note: ISIL code may be outdated - archive renamed from Euregionaal Historisch Centrum
(former/inactive status)
note: ISIL code may be outdated - archive renamed from Euregionaal Historisch Centrum (former/inactive status)
- identifier_scheme: GHCID
identifier_value: NL-GE-AAL-A-EHDC
- identifier_scheme: GHCID_UUID
@ -173,17 +168,15 @@ contact:
email: regioarchief@sittard-geleen.nl
province: Limburg
municipality: Sittard-Geleen
note: Google Maps shows different location (Aalten, Gelderland) which appears to be
for "Euregionaal Historisch Documentatie Centrum" - a different organization. The
actual RegioArchief is located in Sittard, Limburg at Kapittelstraat 6.
note: Google Maps shows different location (Aalten, Gelderland) which appears to be for "Euregionaal Historisch Documentatie
Centrum" - a different organization. The actual RegioArchief is located in Sittard, Limburg at Kapittelstraat 6.
google_maps_enrichment:
place_id: ChIJs11-ek55uEcRXDpolhhYW8o
name: Euregionaal Historisch Documentatie Centrum
fetch_timestamp: '2025-11-28T09:52:19.181201+00:00'
api_status: OK
note: 'WARNING: This Google Maps result appears to be for a DIFFERENT organization
in Aalten, Gelderland - not the RegioArchief Sittard-Geleen. The correct address
is Kapittelstraat 6, 6131 ER Sittard.'
note: 'WARNING: This Google Maps result appears to be for a DIFFERENT organization in Aalten, Gelderland - not the RegioArchief
Sittard-Geleen. The correct address is Kapittelstraat 6, 6131 ER Sittard.'
coordinates:
latitude: 51.927852599999994
longitude: 6.5837809
@ -347,8 +340,8 @@ wikidata_enrichment:
instance_of: &id001
- id: Q166118
label: archive
description: agency or institution responsible for the preservation and communication
of records selected for permanent preservation
description: agency or institution responsible for the preservation and communication of records selected for permanent
preservation
wikidata_instance_of: *id001
wikidata_location:
country: &id002
@ -461,11 +454,9 @@ 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
@ -473,9 +464,8 @@ unesco_ich_enrichment:
inscription_year: 2023
multinational: true
url: https://ich.unesco.org/en/RL/traditional-irrigation-knowledge-technique-and-organization-01979
description: Traditional irrigation uses gravity and hand-made constructions such
as channels and ditches to distribute water from naturally-occurring water catchment
points (such as springs, streams and glaciers) to the fields. Practitioners
description: Traditional irrigation uses gravity and hand-made constructions such as channels and ditches to distribute
water from naturally-occurring water catchment points (such as springs, streams and glaciers) to the fields. Practitioners
choose specific days and periods to manually divert the water, and the...
- unesco_ich_id: '1707'
name: Corso culture, flower and fruit parades in the Netherlands
@ -484,11 +474,9 @@ 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
@ -496,9 +484,8 @@ 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
@ -507,9 +494,8 @@ 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.927852599999994
@ -537,15 +523,15 @@ crawl4ai_enrichment:
source_url: https://hdcaalten.nl/
status_code: 301
title: Welkom - Euregionaal Historisch Documentatiecentrum
description: archief, oudheidkunde, oudheidkundig, oudheidkundige, historie, historisch,
historische, documenten, documentatie, genealogie, stamboom, stambomen, documentatiecentrum,
euregionaal, Aalten, kring, Varsseveld, Dinxperlo, Groenlo, Winterswijk, Lichtenvoorde,
description: archief, oudheidkunde, oudheidkundig, oudheidkundige, historie, historisch, historische, documenten, documentatie,
genealogie, stamboom, stambomen, documentatiecentrum, euregionaal, Aalten, kring, Varsseveld, Dinxperlo, Groenlo, Winterswijk,
Lichtenvoorde,
links_count: 25
open_graph:
title: Welkom - Euregionaal Historisch Documentatiecentrum
description: archief, oudheidkunde, oudheidkundig, oudheidkundige, historie, historisch,
historische, documenten, documentatie, genealogie, stamboom, stambomen, documentatiecentrum,
euregionaal, Aalten, kring, Varsseveld, Dinxperlo, Groenlo, Winterswijk, Lichtenvoorde,
description: archief, oudheidkunde, oudheidkundig, oudheidkundige, historie, historisch, historische, documenten, documentatie,
genealogie, stamboom, stambomen, documentatiecentrum, euregionaal, Aalten, kring, Varsseveld, Dinxperlo, Groenlo, Winterswijk,
Lichtenvoorde,
image: https://www.hdcaalten.nl/wp-content/uploads/2018/11/Banner-e1542209139274.jpg
url: https://www.hdcaalten.nl/
site_name: Euregionaal Historisch Documentatiecentrum
@ -587,10 +573,9 @@ timeline_enrichment:
- https://www.bredevoort.nu/nieuws/vier-genomineerden-voor-erfgoedprijs-2024/
- https://nl.wikipedia.org/wiki/Regionaal_Historisch_Centrum
- https://www.archieven.nl/nl/zoeken?mizig=210&miadt=48&miaet=1&micode=10977&minr=1197881&miview=inv2
linkup_query: '"Euregionaal Historisch Documentatie Centrum" Aalten opgericht
OR gesticht OR sinds'
linkup_answer: Het Euregionaal Historisch Documentatie Centrum (EHDC) in Aalten
is opgericht in 2016 en kreeg de stichtingsstatus in 2018.
linkup_query: '"Euregionaal Historisch Documentatie Centrum" Aalten opgericht OR gesticht OR sinds'
linkup_answer: Het Euregionaal Historisch Documentatie Centrum (EHDC) in Aalten is opgericht in 2016 en kreeg de stichtingsstatus
in 2018.
fetch_timestamp: '2025-12-15T17:17:52.610719+00:00'
archive_path: web/0365/linkup/linkup_founding_20251215T171752Z.json
extraction_method: linkup_answer_regex
@ -675,8 +660,7 @@ web-enrichments:
layout_score: 0.0
pattern_score: 0.0
final_confidence: 1.0
- entity: archief, oudheidkunde, oudheidkundig, oudheidkundige, historie, historisch,
historische, documenten, documentatie,
- entity: archief, oudheidkunde, oudheidkundig, oudheidkundige, historie, historisch, historische, documenten, documentatie,
entity_type: THG.CON
xpath: /html/head/meta[@name='description']/@content
base_confidence: 0.9
@ -772,3 +756,21 @@ logo_enrichment:
has_favicon: true
has_og_image: false
favicon_count: 3
mission_statement:
- statement_id: https://nde.nl/ontology/hc/mission/nl-ge-aal-a-ehdc/mission-2026
statement_type: mission
statement_text: Onze medewerkers zetten zich in om onze archieven en collecties goed te bewaren, te beheren en beschikbaar
te stellen aan huidige en toekomstige generaties.
statement_language: nl
extracted_verbatim: true
source_url: https://regioarchiefsittard-geleen.nl/over
content_hash: sha256-Xzr6Ds0B56nu3J7qumzm+ZucuaJrsiSQRinQFkCMnxA=
provenance:
statement_created_at: '2026-01-04T16:27:57.182730+00:00'
source_archived_at: '2026-01-04T16:26:50.918897+00:00'
retrieval_agent: linkup-api
extraction_agent: zai-glm/glm-4.7
extraction_confidence: 0.75
prov:wasDerivedFrom: https://regioarchiefsittard-geleen.nl/over
prov:generatedAtTime: '2026-01-04T16:27:57.182730+00:00'
source_section: Wat we doen

File diff suppressed because it is too large Load diff

View file

@ -28,8 +28,7 @@ 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/
@ -160,11 +159,9 @@ 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
@ -172,9 +169,8 @@ 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
@ -183,11 +179,9 @@ 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
@ -195,9 +189,8 @@ 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
@ -206,9 +199,8 @@ 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
@ -300,3 +292,30 @@ logo_enrichment:
has_favicon: true
has_og_image: true
favicon_count: 3
mission_statement:
- statement_id: https://nde.nl/ontology/hc/mission/nl-ge-arn-i-ciao/goal-2026
statement_type: goal
statement_text: 'De commissie houdt zich bezig met de volgende taken:
*Beheer van het vermogen van de Orthense ingezetenen (inwoners van Orthen);
*Beheer Forttoren (incl. Schijvenloods);
*Onderhouden van contacten met de gemeente;
*Toekennen van subsidies aan verenigingen en financieel ondersteunen van Orthense festiviteiten;
*Stimuleren en coördineren van het gemeenschapsleven in Orthen.'
statement_language: nl
extracted_verbatim: true
source_url: https://orthen.nl/over
content_hash: sha256-TyHFNulC7kl7cycfwmMIy6ttbmOV8Nnl6RdtlLxWQMM=
provenance:
statement_created_at: '2026-01-04T12:20:06.977505+00:00'
source_archived_at: '2026-01-04T12:19:43.471193+00:00'
retrieval_agent: linkup-api
extraction_agent: zai-glm/glm-4.7
extraction_confidence: 0.6
prov:wasDerivedFrom: https://orthen.nl/over
prov:generatedAtTime: '2026-01-04T12:20:06.977505+00:00'
source_section: Overkoepelende samenwerking

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -294,9 +294,11 @@ google_maps_enrichment:
author_uri: https://www.google.com/maps/contrib/111164477786064035951/reviews
rating: 5
relative_time_description: 6 maanden geleden
text: |-
Klein maar fijn! De aanwezige vrijwilligers zijn uitermate vriendelijk en lullen desgewenst als Brugman. Goed om te zien hoe Dinxperloo en Suderwick door de tijd heen metbelkaar zijn omgegaan. Inclusief de duister tijd. €6,- entree. Te duur.... ga je toch niet, maar ik vond het de moeite waard.
Ga je op vrijdag...... krijg je er de vrijdagmarkt bij...... gratis!
text: 'Klein maar fijn! De aanwezige vrijwilligers zijn uitermate vriendelijk en lullen desgewenst als Brugman. Goed om
te zien hoe Dinxperloo en Suderwick door de tijd heen metbelkaar zijn omgegaan. Inclusief de duister tijd. €6,- entree.
Te duur.... ga je toch niet, maar ik vond het de moeite waard.
Ga je op vrijdag...... krijg je er de vrijdagmarkt bij...... gratis!'
publish_time: '2025-05-17T17:34:08.628755Z'
- author_name: Anja Jacobs
author_uri: https://www.google.com/maps/contrib/100915639169409619653/reviews
@ -628,8 +630,9 @@ web_contact_data:
organization:
rsin: '858842154'
kvk: '71769145'
iban: |
NL64RABO0313939888
iban: 'NL64RABO0313939888
'
cleanup_date: '2025-12-13T10:45:48.004360+00:00'
cleanup_removed: 2
cleanup_v2_removed: 2
@ -730,3 +733,22 @@ web-enrichments:
wikidata_id: Q55
wikidata_label: Netherlands
wikidata_linking_timestamp: '2025-12-13T23:03:47.228717'
mission_statement:
- statement_id: https://nde.nl/ontology/hc/mission/nl-ge-din-m-gm/mission-2026
statement_type: mission
statement_text: Het Grenslandmuseum biedt een unieke mogelijkheid om diverse facetten van de landsgrens en het samenleven
op die grens te laten zien en te beleven. Het museum draagt bij aan het denken en uitwisselen over de unieke ligging aan
de grens en de geschiedenis van de dorpen Dinxperlo (NL) en Suderwick (D).
statement_language: nl
extracted_verbatim: true
source_url: https://www.grenslandmuseum.nl/missie
content_hash: sha256-jQR5NogUMZzgSINZuHZbcwoY6hUifjxapQ22Lh3ylTA=
provenance:
statement_created_at: '2026-01-04T12:43:19.194775+00:00'
source_archived_at: '2026-01-04T12:42:51.752569+00:00'
retrieval_agent: linkup-api
extraction_agent: zai-glm/glm-4.7
extraction_confidence: 1.0
prov:wasDerivedFrom: https://www.grenslandmuseum.nl/missie
prov:generatedAtTime: '2026-01-04T12:43:19.194775+00:00'
source_section: Missie

View file

@ -175,8 +175,7 @@ google_maps_enrichment:
icon_background_color: '#7B9EB0'
utc_offset_minutes: 60
google_maps_status: SUCCESS
google_maps_search_query: Stichting Behoud Oorlogsherinneringen, Oude Telgterweg 10,
Ermelo, Netherlands
google_maps_search_query: Stichting Behoud Oorlogsherinneringen, Oude Telgterweg 10, Ermelo, Netherlands
web_enrichment:
enrichment_timestamp: '2025-11-28T14:45:00+00:00'
enrichment_method: website_scrape_with_claim_provenance
@ -243,10 +242,9 @@ web_enrichment:
claim_value: WO2.net
reason: Cannot verify - value not found in archived HTML text content
- claim_type: description
claim_value: Foundation dedicated to preserving World War II memories through
oral history interviews with survivors and witnesses. Maintains an extensive
collection of video interviews organized by Dutch province, making personal
WWII experiences accessible for education and remembrance.
claim_value: Foundation dedicated to preserving World War II memories through oral history interviews with survivors
and witnesses. Maintains an extensive collection of video interviews organized by Dutch province, making personal WWII
experiences accessible for education and remembrance.
reason: Cannot verify - value not found in archived HTML text content
- claim_type: mission_primary_goal
claim_value: Preserve personal memories and experiences of World War II
@ -270,13 +268,12 @@ web_enrichment:
claim_value: By Dutch province
reason: Cannot verify - value not found in archived HTML text content
- claim_type: collections_oral_history_coverage
claim_value: Drenthe; Flevoland; Friesland; Gelderland; Groningen; Limburg; Noord-Brabant;
Noord-Holland; Overijssel; Utrecht; Zeeland; Zuid-Holland
claim_value: Drenthe; Flevoland; Friesland; Gelderland; Groningen; Limburg; Noord-Brabant; Noord-Holland; Overijssel;
Utrecht; Zeeland; Zuid-Holland
reason: Cannot verify - value not found in archived HTML text content
- claim_type: collections_oral_history_topics
claim_value: Personal war experiences; Resistance activities; Jewish persecution
and survival; Liberation memories; Post-war reconstruction; Daily life during
occupation
claim_value: Personal war experiences; Resistance activities; Jewish persecution and survival; Liberation memories; Post-war
reconstruction; Daily life during occupation
reason: Cannot verify - value not found in archived HTML text content
- claim_type: partnerships_museums_0_type
claim_value: museum_partnerships
@ -351,9 +348,8 @@ web_enrichment:
claim_value: Critical - recording last generation of direct witnesses
reason: Cannot verify - value not found in archived HTML text content
- claim_type: heritage_significance_unique_aspects
claim_value: Provincial organization of testimonies; Video format preserves voice
and expression; Focus on personal experience rather than military history; Collaborative
approach with museums
claim_value: Provincial organization of testimonies; Video format preserves voice and expression; Focus on personal experience
rather than military history; Collaborative approach with museums
reason: Cannot verify - value not found in archived HTML text content
- claim_type: institution_classification_type_label
claim_value: Collecting Society / Oral History Organization
@ -494,12 +490,10 @@ 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: '965'
uuid: 518092a5-4ae1-572f-982d-1b95cca62e3e
name_en: Rietveld Schröderhuis (Rietveld Schröder House)
@ -516,13 +510,11 @@ 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_ich_enrichment:
country_code: NL
total_elements_in_country: 5
@ -535,11 +527,9 @@ 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
@ -547,9 +537,8 @@ 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
@ -558,11 +547,9 @@ 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
@ -570,9 +557,8 @@ 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
@ -581,9 +567,8 @@ 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.2978458
@ -695,8 +680,7 @@ timeline_enrichment:
- https://www.oorlogsherinneringen.nl/organisatie/media-1
- https://www.razu.nl/uit-de-regio-stichting-behoud-oorlogsherinneringen/
linkup_query: '"Oorlogsherinneringen" Ermelo opgericht OR gesticht OR sinds'
linkup_answer: De Stichting Behoud Oorlogsherinneringen in Ermelo is opgericht
in 2016.
linkup_answer: De Stichting Behoud Oorlogsherinneringen in Ermelo is opgericht in 2016.
fetch_timestamp: '2025-12-15T17:34:16.814725+00:00'
archive_path: web/0261/linkup/linkup_founding_20251215T173416Z.json
extraction_method: linkup_answer_regex
@ -772,3 +756,38 @@ logo_enrichment:
has_favicon: false
has_og_image: true
favicon_count: 0
mission_statement:
- statement_id: https://nde.nl/ontology/hc/mission/nl-ge-erm-s-o/mission-2026
statement_type: mission
statement_text: Stichting Behoud Oorlogsherinneringen zet zich in de herinneringen te bewaren en te publiceren zodat deze
niet in de vergetelheid raken en we deze door kunnen geven aan de volgende generatie.
statement_language: nl
extracted_verbatim: true
source_url: https://www.oorlogsherinneringen.nl/missie
content_hash: sha256-vAv8ouxVwP1w0Hi+CpjAEAYO2S2B0qW6k4YGGS4KUKM=
provenance:
statement_created_at: '2026-01-04T16:48:21.557978+00:00'
source_archived_at: '2026-01-04T16:47:53.509677+00:00'
retrieval_agent: linkup-api
extraction_agent: zai-glm/glm-4.7
extraction_confidence: 0.9
prov:wasDerivedFrom: https://www.oorlogsherinneringen.nl/missie
prov:generatedAtTime: '2026-01-04T16:48:21.557978+00:00'
source_section: Hartelijk Welkom!
- statement_id: https://nde.nl/ontology/hc/mission/nl-ge-erm-s-o/goal-2026
statement_type: goal
statement_text: Ook het bewaren van voorwerpen behoort tot onze doelstellingen. Hoe klein ook, voorwerpen uit de oorlog
zijn waardevol en mogen niet in de prullenbak belanden!
statement_language: nl
extracted_verbatim: true
source_url: https://www.oorlogsherinneringen.nl/missie
content_hash: sha256-/2CReS2t34I1JraztJg3DwH/yicLpsEb5nnXFyQ2UZk=
provenance:
statement_created_at: '2026-01-04T16:48:21.558015+00:00'
source_archived_at: '2026-01-04T16:47:53.509677+00:00'
retrieval_agent: linkup-api
extraction_agent: zai-glm/glm-4.7
extraction_confidence: 0.9
prov:wasDerivedFrom: https://www.oorlogsherinneringen.nl/missie
prov:generatedAtTime: '2026-01-04T16:48:21.558015+00:00'
source_section: Hartelijk Welkom!

View file

@ -37,8 +37,7 @@ wikidata_enrichment:
instance_of: &id001
- id: Q5774403
label: historical society
description: organization that collects, researches, interprets and preserves
information or items of historical interest
description: organization that collects, researches, interprets and preserves information or items of historical interest
wikidata_instance_of: *id001
wikidata_location:
headquarters_location:
@ -209,17 +208,15 @@ google_maps_enrichment:
author_uri: https://www.google.com/maps/contrib/108321175328724751813/reviews
rating: 5
relative_time_description: 8 jaar geleden
text: Leuke vereniging die de historie van Gendt en Hulhuizen in kaart brengt,
maar vooral ook enthousiast deelt in de gemeenschap. Vrijwilligers zijn altijd
welkom!
text: Leuke vereniging die de historie van Gendt en Hulhuizen in kaart brengt, maar vooral ook enthousiast deelt in de
gemeenschap. Vrijwilligers zijn altijd welkom!
publish_time: '2017-03-27T07:36:24.946Z'
- author_name: Nico de Boer
author_uri: https://www.google.com/maps/contrib/111875080030679884322/reviews
rating: 5
relative_time_description: 8 jaar geleden
text: Actieve vereniging in een mooi gebouw. Zeker een bezoekje waard. (Openingstijden
ma 20.00h-22.00h; wo 10.00h-12.00h). In de kelder is ook een klein oorlogsmuseum.
Gaan kijken!
text: Actieve vereniging in een mooi gebouw. Zeker een bezoekje waard. (Openingstijden ma 20.00h-22.00h; wo 10.00h-12.00h).
In de kelder is ook een klein oorlogsmuseum. Gaan kijken!
publish_time: '2017-05-05T09:04:50.138Z'
- author_name: Crietje 69
author_uri: https://www.google.com/maps/contrib/108304321703340097425/reviews
@ -375,11 +372,9 @@ 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
@ -387,9 +382,8 @@ 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
@ -398,11 +392,9 @@ 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
@ -410,9 +402,8 @@ 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
@ -421,9 +412,8 @@ 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.875778999999994
@ -501,16 +491,14 @@ timespan:
events:
- date: '1983'
type: founding
description: opgericht in 1983, voortgekomen uit de viering van 750 jaar stadsrechten
van Gendt
description: opgericht in 1983, voortgekomen uit de viering van 750 jaar stadsrechten van Gendt
timeline_enrichment:
timeline_events:
- event_type: FOUNDING
event_date: '1983'
date_precision: year
approximate: false
description: opgericht in 1983, voortgekomen uit de viering van 750 jaar stadsrechten
van Gendt
description: opgericht in 1983, voortgekomen uit de viering van 750 jaar stadsrechten van Gendt
source_urls:
- https://mijngelderland.nl/inhoud/organisaties/stichting-historische-kring-gente
- http://www.vgkgent.com/onze-geschiedenis.html
@ -518,8 +506,8 @@ timeline_enrichment:
- https://www.historischekringgente.nl/bestuur-van-hkg/
- https://www.historischekringgente.nl/links-naar-overeenkomstige-websites/
linkup_query: '"Historische Kring Gente" Gendt opgericht OR gesticht OR sinds'
linkup_answer: De Historische Kring Gente is opgericht in 1983, voortgekomen uit
de viering van 750 jaar stadsrechten van Gendt.
linkup_answer: De Historische Kring Gente is opgericht in 1983, voortgekomen uit de viering van 750 jaar stadsrechten
van Gendt.
fetch_timestamp: '2025-12-15T17:34:37.466201+00:00'
archive_path: web/0183/linkup/linkup_founding_20251215T173437Z.json
extraction_method: linkup_answer_regex
@ -559,3 +547,26 @@ logo_enrichment:
has_favicon: true
has_og_image: false
favicon_count: 3
mission_statement:
- statement_id: https://nde.nl/ontology/hc/mission/nl-ge-gen-s-hkg/goal-2026
statement_type: goal
statement_text: 'Het bevorderen van de beoefening van de geschiedenis van Gendt. Het bevorderen van de instandhouding van
de in Gendt nog levende folkloristische gebruiken. Het opsporen en het waken voor het behoud der in Gendt aanwezige archeologische,
historische, kunsthistorische en folkloristische en objecten zulks in de ruimste zin des woords. Het zo mogelijk bijeenbrengen
van dergelijke objecten in een openbare verzameling. Het aankweken en verspreiden van kennis omtrent de bedoelde onderwerpen.
De stichting tracht haar doel te verwezenlijken, onder meer door: het organiseren van bijeenkomsten, lezingen, cursussen,
tentoonstellingen, folkloristische optochten, archeologisch onderzoek, alsmede door publicaties van persoonlijk of gezamenlijk
werk, in welke vorm dan ook.'
statement_language: nl
extracted_verbatim: true
source_url: https://www.historischekringgente.nl/
content_hash: sha256-1Yt1Itl0XmKLCtZJ4MNiqzphwXU6jl/AtGm7a89YaKA=
provenance:
statement_created_at: '2026-01-04T15:00:16.362776+00:00'
source_archived_at: '2026-01-04T14:59:45.747836+00:00'
retrieval_agent: linkup-api
extraction_agent: zai-glm/glm-4.7
extraction_confidence: 0.95
prov:wasDerivedFrom: https://www.historischekringgente.nl/
prov:generatedAtTime: '2026-01-04T15:00:16.362776+00:00'
source_section: Ons doel

View file

@ -63,14 +63,13 @@ wikidata_enrichment:
instance_of: &id001
- id: Q33506
label: museum
description: institution that holds artifacts and other objects of scientific,
artistic, cultural, historical, or other importance
description: institution that holds artifacts and other objects of scientific, artistic, cultural, historical, or other
importance
main_subject:
- id: Q2434238
label: heritage
description: property, custom, or other material, immaterial or natural object
inherited from previous generations, and conserved for its importance for
future generations
description: property, custom, or other material, immaterial or natural object inherited from previous generations,
and conserved for its importance for future generations
wikidata_instance_of: *id001
wikidata_location:
country: &id002
@ -271,19 +270,17 @@ google_maps_enrichment:
author_uri: https://www.google.com/maps/contrib/100865164898917080376/reviews
rating: 5
relative_time_description: 6 maanden geleden
text: Wij zijn gisteren in de zandse kerk. Naar de filmavond geweest. Met ons
3 broers neijenhuis. Was heel mooi en gezellig. Bedankt voor de mooie avond.
Afz Theo neijenhuis
text: Wij zijn gisteren in de zandse kerk. Naar de filmavond geweest. Met ons 3 broers neijenhuis. Was heel mooi en gezellig.
Bedankt voor de mooie avond. Afz Theo neijenhuis
publish_time: '2025-05-22T08:49:44.602780Z'
- author_name: Ton Peperkamp
author_uri: https://www.google.com/maps/contrib/104910076366616184627/reviews
rating: 5
relative_time_description: 4 jaar geleden
text: Mooie site .Ik ben via mijn oma van vaders kant afstammeling van de Zandse
familie van Wissen. Kapper Sjaak van Wissen beter bekend als de Mop was neefje
van mijn oma Anna van Wissen. Zij schreef de naam van Wissen met een zg SZ voor
de 2 sessun dus zo als in Duitsland gebruikelijk. Het verhaal over een voorvader
die 300 jaar verdronk kende ik al
text: Mooie site .Ik ben via mijn oma van vaders kant afstammeling van de Zandse familie van Wissen. Kapper Sjaak van
Wissen beter bekend als de Mop was neefje van mijn oma Anna van Wissen. Zij schreef de naam van Wissen met een zg SZ
voor de 2 sessun dus zo als in Duitsland gebruikelijk. Het verhaal over een voorvader die 300 jaar verdronk kende ik
al
publish_time: '2021-02-08T12:25:50.257723Z'
- author_name: Jan Wannet
author_uri: https://www.google.com/maps/contrib/118401036146075047415/reviews
@ -319,8 +316,7 @@ google_maps_enrichment:
icon_background_color: '#4B96F3'
utc_offset_minutes: 60
google_maps_status: SUCCESS
google_maps_search_query: Historische Kring Huessen en Stadsmusum "Hof van Hessen",
Vierakkerstraat 39, Huissen, Netherlands
google_maps_search_query: Historische Kring Huessen en Stadsmusum "Hof van Hessen", Vierakkerstraat 39, Huissen, Netherlands
web_enrichment:
web_archives:
- url: https://www.huessen.nl/
@ -419,13 +415,10 @@ youtube_enrichment:
videos:
- video_id: ypq1man5IJs
video_url: https://www.youtube.com/watch?v=ypq1man5IJs
title: 1983 Koningschieten. St. Gangulphusgilde en het St. Laurentiusgilde binnen
de Stad Huissen
description: "Ieder jaar wordt er door de Gilden van Huissen het Koningschieten\
\ georganiseerd. Er wordt geschoten op een houten klos en diegene die het laatste\
\ stukje klos van de paal af schiet is de nieuwe koning. Er zijn in Huissen\
\ twee gilden, St. Gangulphusgilde en het St. Laurentiusgilde. \nElke Gilde\
\ schiet zijn koning."
title: 1983 Koningschieten. St. Gangulphusgilde en het St. Laurentiusgilde binnen de Stad Huissen
description: "Ieder jaar wordt er door de Gilden van Huissen het Koningschieten georganiseerd. Er wordt geschoten op een\
\ houten klos en diegene die het laatste stukje klos van de paal af schiet is de nieuwe koning. Er zijn in Huissen twee\
\ gilden, St. Gangulphusgilde en het St. Laurentiusgilde. \nElke Gilde schiet zijn koning."
published_at: '2025-01-14T16:11:16Z'
duration: PT21M37S
definition: sd
@ -443,8 +436,7 @@ youtube_enrichment:
- comment_id: Ugyli0w7CS08OTDIHe14AaABAg
author_display_name: '@gildenhuissen9970'
author_channel_url: http://www.youtube.com/@gildenhuissen9970
text: Er wordt niet geschoten op een houten vogel (die is voor het prijsschieten),
maar op een houten klos.
text: Er wordt niet geschoten op een houten vogel (die is voor het prijsschieten), maar op een houten klos.
like_count: 0
published_at: '2025-01-15T17:19:30Z'
updated_at: '2025-01-15T17:19:50Z'
@ -453,8 +445,7 @@ youtube_enrichment:
- video_id: yHhzCXnlpgo
video_url: https://www.youtube.com/watch?v=yHhzCXnlpgo
title: Carnavalsoptocht Huissen 1961-962
description: 'Huissen, het stadje in de Over-Betuwe gelegen aan de Rijn, heeft
een lange carnavals traditie.
description: 'Huissen, het stadje in de Over-Betuwe gelegen aan de Rijn, heeft een lange carnavals traditie.
Publiek komt uit de hele Betuwe, Arnhem en Nijmegen om hier carnaval te vieren.
@ -476,10 +467,8 @@ youtube_enrichment:
comments_fetched: 0
- video_id: sewEnZamRik
video_url: https://www.youtube.com/watch?v=sewEnZamRik
title: 19 december 1990 Huissen in de sneeuw muziek Ton Hooijman collectie h
h
description: "19-12-1990 Huissen in de sneeuw. \nEen film van Hans Hoen\nMuziek\
\ Ton Hooijman"
title: 19 december 1990 Huissen in de sneeuw muziek Ton Hooijman collectie h h
description: "19-12-1990 Huissen in de sneeuw. \nEen film van Hans Hoen\nMuziek Ton Hooijman"
published_at: '2021-12-24T18:17:20Z'
duration: PT2M37S
definition: sd
@ -497,11 +486,9 @@ youtube_enrichment:
comments_fetched: 0
- video_id: bibZecO6aRw
video_url: https://www.youtube.com/watch?v=bibZecO6aRw
title: 1931 gilden en muziekkorps St. Cecilia uit Huissen bij het folkloristisch
feest Utrecht
description: 'Op 27 juni 1931 was er het Folkloristisch feest i.v.m jubileum
van de universiteit Utrecht. De gilden uit Huissen en muziekkorps St. Cecilia
uit Huissen waren daarbij aanwezig. Duur van de film is ongeveer 2.31 min.
title: 1931 gilden en muziekkorps St. Cecilia uit Huissen bij het folkloristisch feest Utrecht
description: 'Op 27 juni 1931 was er het Folkloristisch feest i.v.m jubileum van de universiteit Utrecht. De gilden uit
Huissen en muziekkorps St. Cecilia uit Huissen waren daarbij aanwezig. Duur van de film is ongeveer 2.31 min.
Bron van de film is het Utrechts archief
@ -524,10 +511,8 @@ youtube_enrichment:
- video_id: EWasKlU-qFo
video_url: https://www.youtube.com/watch?v=EWasKlU-qFo
title: Bouw Sancta Maria en sloop Gemeentehuis de Altena in 1974/1975
description: 'In 1974-1975 werd het oude gemeentehuis van Huissen gesloopt en
werd er op die plaats Sancta Maria gebouwd. Ook dit gebouw is inmiddels alweer
gesloopt en heeft plaats gemaakt voor nieuwbouw die aangepast is aan de moderne
normen.
description: 'In 1974-1975 werd het oude gemeentehuis van Huissen gesloopt en werd er op die plaats Sancta Maria gebouwd. Ook
dit gebouw is inmiddels alweer gesloopt en heeft plaats gemaakt voor nieuwbouw die aangepast is aan de moderne normen.
De opnames zijn gemaakt door Nol Hengst en gemonteerd door Hans Hoen
@ -557,8 +542,8 @@ youtube_enrichment:
- video_id: mWsqZtb4En4
video_url: https://www.youtube.com/watch?v=mWsqZtb4En4
title: 'Mea Vota: van druiven snoeien tot wijn maken'
description: 'In Mea Vota, het tuinbouwmuseum van Huissen, worden nog steeds op
de ouderwetse manier druiven gekweekt en daar o.a. ook wijn van gemaakt.
description: 'In Mea Vota, het tuinbouwmuseum van Huissen, worden nog steeds op de ouderwetse manier druiven gekweekt
en daar o.a. ook wijn van gemaakt.
In deze film kunt u dat hele proces volgen
@ -592,12 +577,10 @@ youtube_enrichment:
- video_id: UiABijc3GE8
video_url: https://www.youtube.com/watch?v=UiABijc3GE8
title: Bouw AH en appartementen markt in 1988, deel 2
description: "In 1988 werd de markt in Huissen visueel afgesloten van de dijk\
\ door de bouw van Albert Heijn en de bovenliggende appartementen.\nDe bouwer\
\ was aannemingsbedrijf Toepoel.\nOndertussen heeft de Albert Heijn de markt\
\ weer verlaten en is nu gevestigd aan de Langestraat in de buurt van de Arnhemse\
\ Poort\n\n De film is van Hans Hoen en bestaat uit twee delen.\nDit is deel\
\ 2\n(C) Historische Kring Huessen"
description: "In 1988 werd de markt in Huissen visueel afgesloten van de dijk door de bouw van Albert Heijn en de bovenliggende\
\ appartementen.\nDe bouwer was aannemingsbedrijf Toepoel.\nOndertussen heeft de Albert Heijn de markt weer verlaten\
\ en is nu gevestigd aan de Langestraat in de buurt van de Arnhemse Poort\n\n De film is van Hans Hoen en bestaat uit\
\ twee delen.\nDit is deel 2\n(C) Historische Kring Huessen"
published_at: '2020-11-21T14:48:32Z'
duration: PT29M17S
definition: sd
@ -622,12 +605,10 @@ youtube_enrichment:
- video_id: vYL3iJBloZg
video_url: https://www.youtube.com/watch?v=vYL3iJBloZg
title: Bouw AH en appartementen markt in 1988, deel 1
description: "In 1988 werd de markt in Huissen visueel afgesloten van de dijk\
\ door de bouw van Albert Heijn en de bovenliggende appartementen.\nDe bouwer\
\ was aannemingsbedrijf Toepoel.\nOndertussen heeft de Albert Heijn de markt\
\ weer verlaten en is nu gevestigd aan de Langestraat in de buurt van de Arnhemse\
\ Poort\n\n De film is van Hans Hoen en bestaat uit twee delen.\nDit is deel\
\ 1\n(C) Historische Kring Huessen"
description: "In 1988 werd de markt in Huissen visueel afgesloten van de dijk door de bouw van Albert Heijn en de bovenliggende\
\ appartementen.\nDe bouwer was aannemingsbedrijf Toepoel.\nOndertussen heeft de Albert Heijn de markt weer verlaten\
\ en is nu gevestigd aan de Langestraat in de buurt van de Arnhemse Poort\n\n De film is van Hans Hoen en bestaat uit\
\ twee delen.\nDit is deel 1\n(C) Historische Kring Huessen"
published_at: '2020-11-21T14:32:39Z'
duration: PT25M48S
definition: sd
@ -653,8 +634,8 @@ youtube_enrichment:
- video_id: x3W4qq7spFw
video_url: https://www.youtube.com/watch?v=x3W4qq7spFw
title: Opening stadsmuseum de hof van hessen 8 april 1995
description: '25 jaar geleden kreeg de Historische Kring Huessen de beschikking
over een eigen kringpand. Daarin werd ook het Stadsmuseum "Hof van Hessen" gevestigd.
description: '25 jaar geleden kreeg de Historische Kring Huessen de beschikking over een eigen kringpand. Daarin werd
ook het Stadsmuseum "Hof van Hessen" gevestigd.
Bovenstaande film geeft een beeld van de feestelijke opening'
published_at: '2020-07-09T14:06:48Z'
@ -674,8 +655,7 @@ youtube_enrichment:
comments_fetched: 0
- video_id: q6vQdONCdGA
video_url: https://www.youtube.com/watch?v=q6vQdONCdGA
title: Greet van aalten petersen achterveld mp4 6 13 min met tekst en achtergrondmuziek
coll h h
title: Greet van aalten petersen achterveld mp4 6 13 min met tekst en achtergrondmuziek coll h h
description: ''
published_at: '2020-07-06T18:41:11Z'
duration: PT6M14S
@ -702,13 +682,11 @@ youtube_enrichment:
- video_id: i_JE_EO3ku0
video_url: https://www.youtube.com/watch?v=i_JE_EO3ku0
title: Zilveren gildenbeker, Museum Hof van Hessen , deel 6
description: "Uit de serie \"Hof van Hessen komt naar u toe\", de Zilveren gildenbeker\n\
Het Koningschieten kon afgelopen week helaas niet doorgaan. \nEen lange traditie,\
\ maar wat houdt het eigenlijk in? \nEmile neemt ons mee in de geschiedenis\
\ van de Huissense gilden (Sint Laurentius en het Sint Gangulphus) aan de hand\
\ van een bijzonder achttiende eeuws object: een zilveren gildenbeker.\n\nPresentatie:\
\ Emile Smit\nCamera: Lian van der Zon \nMuziek: Bensound\n(C) Historische Kring\
\ Huessen"
description: "Uit de serie \"Hof van Hessen komt naar u toe\", de Zilveren gildenbeker\nHet Koningschieten kon afgelopen\
\ week helaas niet doorgaan. \nEen lange traditie, maar wat houdt het eigenlijk in? \nEmile neemt ons mee in de geschiedenis\
\ van de Huissense gilden (Sint Laurentius en het Sint Gangulphus) aan de hand van een bijzonder achttiende eeuws object:\
\ een zilveren gildenbeker.\n\nPresentatie: Emile Smit\nCamera: Lian van der Zon \nMuziek: Bensound\n(C) Historische\
\ Kring Huessen"
published_at: '2020-07-03T14:36:46Z'
duration: PT2M27S
definition: hd
@ -727,12 +705,10 @@ youtube_enrichment:
- video_id: SqyDf2yRKNw
video_url: https://www.youtube.com/watch?v=SqyDf2yRKNw
title: Een wierookvat, Museum Hof van Hessen Deel 5
description: "Uit de serie \"Hof van Hessen komt naar u toe\", het wierookvat.\n\
Het spannende verhaal van een wierookvat dat samen met zijn eigenaar het bombardement\
\ op Huissen met veel geluk overleefde. \nDaarna verweesd achtergebleven maar\
\ vele jaren later toch weer verenigd met nazaten van de voormalige eigenaar.\n\
Presentatie: Emile Smit\nCamera: Lian van der Zon \nMuziek: Bensound\n(C) Historische\
\ Kring Huessen"
description: "Uit de serie \"Hof van Hessen komt naar u toe\", het wierookvat.\nHet spannende verhaal van een wierookvat\
\ dat samen met zijn eigenaar het bombardement op Huissen met veel geluk overleefde. \nDaarna verweesd achtergebleven\
\ maar vele jaren later toch weer verenigd met nazaten van de voormalige eigenaar.\nPresentatie: Emile Smit\nCamera:\
\ Lian van der Zon \nMuziek: Bensound\n(C) Historische Kring Huessen"
published_at: '2020-06-15T08:02:18Z'
duration: PT3M21S
definition: hd
@ -755,13 +731,11 @@ youtube_enrichment:
- video_id: hzEOy1p_af0
video_url: https://www.youtube.com/watch?v=hzEOy1p_af0
title: Hof van Hessen, opbouw tentoonstelling 'Huissen herleeft' door Cor en Koos
description: Neem een kijkje achter de schermen! Er wordt hard gewerkt aan de
heropening van museum Hof van Hessen. Cor en Koos vertellen over de nieuwe tentoonstelling
'Huissen herleeft'. In deze tijdelijke tentoonstelling, waar ook Emile, Hans
en Lian een belangrijk aandeel in hebben, beleef je verhalen over de terugkeer
en wederopbouw van Huissen na de Tweede Wereldoorlog. Zien we je daar? Vanaf
14 juni kun je reserveren via museum@huessen.nl of tijdens openingstijden via
026 325 5058.
description: Neem een kijkje achter de schermen! Er wordt hard gewerkt aan de heropening van museum Hof van Hessen. Cor
en Koos vertellen over de nieuwe tentoonstelling 'Huissen herleeft'. In deze tijdelijke tentoonstelling, waar ook Emile,
Hans en Lian een belangrijk aandeel in hebben, beleef je verhalen over de terugkeer en wederopbouw van Huissen na de
Tweede Wereldoorlog. Zien we je daar? Vanaf 14 juni kun je reserveren via museum@huessen.nl of tijdens openingstijden
via 026 325 5058.
published_at: '2020-05-29T16:40:41Z'
duration: PT3M18S
definition: hd
@ -780,13 +754,11 @@ youtube_enrichment:
- video_id: r7uoE5i3E7E
video_url: https://www.youtube.com/watch?v=r7uoE5i3E7E
title: Een 17e eeuwse sierbordje Museum Hof van Hessen Deel 4
description: 'Hoe gingen Huissenaren vroeger om met besmettelijke ziektes? Dit
sierbordje kan ons daar meer over vertellen. Het is in 1621 gemaakt in het Duitse
Werra-gebied. Waarschijnlijk was het van een rijke familie uit Huissen. Het
bordje is samen met veel ander kostbaar aardewerk gevonden in een beerput in
de Langestraat (ter hoogte van de huidige Action-winkel). Normaal gesproken
was een beerput bedoeld voor uitwerpselen. Bij ziektes werd de put dicht gemaakt
en gingen er ook spullen mee de put in.
description: 'Hoe gingen Huissenaren vroeger om met besmettelijke ziektes? Dit sierbordje kan ons daar meer over vertellen.
Het is in 1621 gemaakt in het Duitse Werra-gebied. Waarschijnlijk was het van een rijke familie uit Huissen. Het bordje
is samen met veel ander kostbaar aardewerk gevonden in een beerput in de Langestraat (ter hoogte van de huidige Action-winkel).
Normaal gesproken was een beerput bedoeld voor uitwerpselen. Bij ziektes werd de put dicht gemaakt en gingen er ook
spullen mee de put in.
Presentatie: Cor Neijenhuis
@ -819,12 +791,10 @@ youtube_enrichment:
- video_id: mR_cUG4tk1g
video_url: https://www.youtube.com/watch?v=mR_cUG4tk1g
title: Romeins zwaard. Museum Hof van Hessen Deel 3
description: 'In de Romeinse tijd waren er veel soldaten in Huissen en omgeving.
Huissen lag namelijk aan de Limes, de noordelijke verdedigingsgrens van het
Romeinse rijk. Dit korte zwaard (genaamd gladius) behoorde tot de uitrusting
van een Romeinse soldaat. Maar wie was deze soldaat? En waar kwam hij vandaan?
Misschien geven de inscripties op het zwaard ons een aanwijzing. Cor laat zien
wat ze kunnen betekenen.
description: 'In de Romeinse tijd waren er veel soldaten in Huissen en omgeving. Huissen lag namelijk aan de Limes, de
noordelijke verdedigingsgrens van het Romeinse rijk. Dit korte zwaard (genaamd gladius) behoorde tot de uitrusting van
een Romeinse soldaat. Maar wie was deze soldaat? En waar kwam hij vandaan? Misschien geven de inscripties op het zwaard
ons een aanwijzing. Cor laat zien wat ze kunnen betekenen.
Presentatie: Cor Neijenhuis
@ -889,9 +859,8 @@ youtube_enrichment:
- video_id: hJaYjGxwoqg
video_url: https://www.youtube.com/watch?v=hJaYjGxwoqg
title: Kinderschoentje, Museum Hof van Hessen Deel 1
description: 'Wil je de voorwerpen uit Museum Hof van Hessen vanuit je luie stoel
bekijken? Dat kan! In deze aflevering laat Cor Neijenhuis je een heel bijzonder
kinderschoentje zien...
description: 'Wil je de voorwerpen uit Museum Hof van Hessen vanuit je luie stoel bekijken? Dat kan! In deze aflevering
laat Cor Neijenhuis je een heel bijzonder kinderschoentje zien...
Video: Lian van der Zon
@ -925,8 +894,8 @@ youtube_enrichment:
- video_id: I2N2V1SM_5U
video_url: https://www.youtube.com/watch?v=I2N2V1SM_5U
title: Passiespel 1960
description: In 1960 werd er door de leerlingen van de Huishoudschool en de Technische
school het Passiespel opgevoerd in de parochiekerk van Huissen-Stad
description: In 1960 werd er door de leerlingen van de Huishoudschool en de Technische school het Passiespel opgevoerd
in de parochiekerk van Huissen-Stad
published_at: '2020-04-12T10:46:16Z'
duration: PT7M
definition: sd
@ -954,8 +923,7 @@ youtube_enrichment:
comments_fetched: 0
- video_id: IX043p8OLfc
video_url: https://www.youtube.com/watch?v=IX043p8OLfc
title: 02 2019 8 sept opening tentoonstelling Huissen getroffen coll h h 11
09 min
title: 02 2019 8 sept opening tentoonstelling Huissen getroffen coll h h 11 09 min
description: 'opening tentoon stelling "Huissen getroffen" op 8 september 2019
Collectie Hans Hoen'
@ -985,8 +953,7 @@ youtube_enrichment:
comments_fetched: 0
- video_id: wWi4-DDDAT4
video_url: https://www.youtube.com/watch?v=wWi4-DDDAT4
title: 01 2019 8 sept sabel overhandiging van a c maasdam aan hkh coll h h 3
30 min
title: 01 2019 8 sept sabel overhandiging van a c maasdam aan hkh coll h h 3 30 min
description: sabel overhandiging van a c maasdam aan Historische Kring Huessen
published_at: '2019-09-09T17:20:08Z'
duration: PT3M31S
@ -1012,9 +979,8 @@ youtube_enrichment:
- video_id: gTc22RHF_0A
video_url: https://www.youtube.com/watch?v=gTc22RHF_0A
title: 1946 07 min Oorlogsschade in de Betuwe 1
description: 'Na de mislukking van Market Garden verplaatste het slagveld zich
naar de Betuwe, het gebied tussen Rijn en Waal. Dit gebied heeft daarbij zwaar
te lijden gehad van de hevige gevechten.
description: 'Na de mislukking van Market Garden verplaatste het slagveld zich naar de Betuwe, het gebied tussen Rijn
en Waal. Dit gebied heeft daarbij zwaar te lijden gehad van de hevige gevechten.
Deze film laat de oorlogsschade zien in dit gebied'
published_at: '2019-07-16T19:52:49Z'
@ -1041,8 +1007,7 @@ youtube_enrichment:
- comment_id: UgwZZoYspr7cr79mp1V4AaABAg
author_display_name: '@DutchDigit'
author_channel_url: http://www.youtube.com/@DutchDigit
text: Dank u wel dat u deze video heeft gedeeld! Het helpt mij om mijn familiegeschiedenis
beter te begrijpen. Hulde!
text: Dank u wel dat u deze video heeft gedeeld! Het helpt mij om mijn familiegeschiedenis beter te begrijpen. Hulde!
like_count: 0
published_at: '2024-07-04T08:38:40Z'
updated_at: '2024-07-04T08:38:40Z'
@ -1051,8 +1016,8 @@ youtube_enrichment:
- video_id: jtWvVzdndIA
video_url: https://www.youtube.com/watch?v=jtWvVzdndIA
title: 1963 1968 05 min Huishoudschool Huissen 1
description: Een film over de Huishoudschool in Huissen tussen 1963 en 1968 aan
de hand van foto's van juffrouw Lubbers, hoofd der school
description: Een film over de Huishoudschool in Huissen tussen 1963 en 1968 aan de hand van foto's van juffrouw Lubbers,
hoofd der school
published_at: '2018-11-18T11:57:08Z'
duration: PT4M25S
definition: sd
@ -1078,8 +1043,7 @@ youtube_enrichment:
- video_id: 8VtaXQuv2rY
video_url: https://www.youtube.com/watch?v=8VtaXQuv2rY
title: 1975 02 min Nieuwe Brandweerauto 1
description: Met trots presenteert de Gemeente Huissen zijn nieuwe brandweerwagen.
Een film uit 1975
description: Met trots presenteert de Gemeente Huissen zijn nieuwe brandweerwagen. Een film uit 1975
published_at: '2018-07-15T10:15:23Z'
duration: PT1M23S
definition: sd
@ -1106,8 +1070,7 @@ youtube_enrichment:
- video_id: g7h9lhaDTi4
video_url: https://www.youtube.com/watch?v=g7h9lhaDTi4
title: 1930 Koningschieten en Beleg en Ontzet
description: 'Ieder jaar vindt er in Huissen de viering plaats van het Beleg en
Ontzet van Huissen in 1502.
description: 'Ieder jaar vindt er in Huissen de viering plaats van het Beleg en Ontzet van Huissen in 1502.
Hoe dit gevierd werd in 1930 ziet u in deze film'
published_at: '2018-07-09T11:46:30Z'
@ -1141,8 +1104,7 @@ youtube_enrichment:
Bij terugkeer in hun stad was er een nijpend tekort aan woonruimte.
Deze film geeft een beeld van de constructie en bouw van de noodwoningen die
in de Peperstraat opgericht werden'
Deze film geeft een beeld van de constructie en bouw van de noodwoningen die in de Peperstraat opgericht werden'
published_at: '2018-05-14T14:06:00Z'
duration: PT2M31S
definition: sd
@ -1173,8 +1135,8 @@ youtube_enrichment:
Wie herinnnert zich 1995 niet?
Heel het gebied tussen de grote rivieren hield het hart vast of de dijken de
grote watertoestroom vanuit Duitsland zou kunnen houden.'
Heel het gebied tussen de grote rivieren hield het hart vast of de dijken de grote watertoestroom vanuit Duitsland zou
kunnen houden.'
published_at: '2018-01-17T10:33:09Z'
duration: PT5M59S
definition: sd
@ -1199,8 +1161,7 @@ youtube_enrichment:
- video_id: EcaBQqPkr14
video_url: https://www.youtube.com/watch?v=EcaBQqPkr14
title: Romeins grafveld bij Loovelden, Huissen
description: 'Opgraving van een Romeins grafveld voorafgaand aan de bouw van de
nieuwe wijk Loovelden in Huissen.
description: 'Opgraving van een Romeins grafveld voorafgaand aan de bouw van de nieuwe wijk Loovelden in Huissen.
De film is gemaakt door Wim Evers'
published_at: '2018-01-08T12:41:55Z'
@ -1230,13 +1191,12 @@ youtube_enrichment:
- video_id: 2HfEsgaAXu0
video_url: https://www.youtube.com/watch?v=2HfEsgaAXu0
title: Gerrit Meeuwsen, watertoren
description: 'Op 11 december 2011 heeft Koos Meeuwsen zijn oom Gerrit geinterviewd
over de plannen en de bouw van de watertoren aan het Klokkenpad te Huissen.
description: 'Op 11 december 2011 heeft Koos Meeuwsen zijn oom Gerrit geinterviewd over de plannen en de bouw van de watertoren
aan het Klokkenpad te Huissen.
De beelden en de montage zijn van Hans Hoen.
Koos Meeuwsen is van onschatbare waarde geweest m.b.t. de vastlegging in beeld
en geluid van de recente Huissense geschiedenis.
Koos Meeuwsen is van onschatbare waarde geweest m.b.t. de vastlegging in beeld en geluid van de recente Huissense geschiedenis.
Dit is een van de laatste gesprekken met hem.'
published_at: '2017-12-27T11:06:10Z'
@ -1377,21 +1337,16 @@ youtube_enrichment:
- video_id: lfgxaaHD3KQ
video_url: https://www.youtube.com/watch?v=lfgxaaHD3KQ
title: 1989 karel van gelre arnhem
description: 'Van 29 mei tot 26 Juni 1502 werd de stad Huissen belegerd door Karel
van Egmond, hertog van Gelre.
description: 'Van 29 mei tot 26 Juni 1502 werd de stad Huissen belegerd door Karel van Egmond, hertog van Gelre.
De voorgeschiedenis en afloop van deze belegering kunt u uitgebreid lezen op
de site van de Gilden Huissen
De voorgeschiedenis en afloop van deze belegering kunt u uitgebreid lezen op de site van de Gilden Huissen
Op dezelfde pagina vindt u ook een filmpje over de viering van dit Beleg en
Ontzet.
Op dezelfde pagina vindt u ook een filmpje over de viering van dit Beleg en Ontzet.
Tot 1989 werd, voorafgaande aan deze viering, het beeld van de Hertog van Gelre
op de Jansplaats in Arnhem versierd.
Tot 1989 werd, voorafgaande aan deze viering, het beeld van de Hertog van Gelre op de Jansplaats in Arnhem versierd.
De traditie naar Arnhem werd afgeschaft omdat er aan vergunningen moest worden
voldaan i.v.m. de veiligheid.
De traditie naar Arnhem werd afgeschaft omdat er aan vergunningen moest worden voldaan i.v.m. de veiligheid.
Ook de omstanders, het uitgaanspubliek rondom de Korenmarkt, werden wat agressiever
@ -1423,8 +1378,7 @@ youtube_enrichment:
Die dag werd in heel Nederland het bevrijdingsfeest extra uitbundig gevierd.
In Normandië werd het bevrijdingsvuur ontstoken en door estafettelopers naar
diverse steden gebracht.
In Normandië werd het bevrijdingsvuur ontstoken en door estafettelopers naar diverse steden gebracht.
In Huissen werd een bevrijdingsoptocht georganiseerd.
@ -1453,17 +1407,14 @@ youtube_enrichment:
title: 1942 7 okt huwelijk theo bruins en christien derksen
description: 'Op 7 oktober 1942 trouwde Stien Derksen met Theo Bruins.
Van deze huwelijksviering is een film gemaakt hetgeen in die tijd bijzonder
genoemd mag worden.
Van deze huwelijksviering is een film gemaakt hetgeen in die tijd bijzonder genoemd mag worden.
Deze film, gemaakt door Foto Brusse uit Enschede, werd zelfs diezelfde dag nog
vertoond.
Deze film, gemaakt door Foto Brusse uit Enschede, werd zelfs diezelfde dag nog vertoond.
De film start met beelden van de feestgids gemaakt door Louis Frequin.
U ziet beelden van de ontvangst van de gasten op het Station Arnhem en het Burgelijk-
en Kerkelijk Huwelijk.Ook ziet u het Huissen van 1942 en belangrijke personen
die daar toen een rol speelden.
U ziet beelden van de ontvangst van de gasten op het Station Arnhem en het Burgelijk- en Kerkelijk Huwelijk.Ook ziet
u het Huissen van 1942 en belangrijke personen die daar toen een rol speelden.
M.a.w. een uniek tijdsbeeld.'
published_at: '2017-12-06T18:47:10Z'
@ -1555,11 +1506,9 @@ 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
@ -1567,9 +1516,8 @@ 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
@ -1578,11 +1526,9 @@ 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
@ -1590,9 +1536,8 @@ 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
@ -1601,9 +1546,8 @@ unesco_ich_enrichment:
inscription_year: 2017
multinational: false
url: https://ich.unesco.org/en/RL/craft-of-the-miller-operating-windmills-and-watermills-01265
description: The craft of the miller operating windmills and watermills involves
the knowledge and skills necessary to operate a mill and maintain it in a good
state of repair. With a declining number of people earning their livelihood
description: The craft of the miller operating windmills and watermills involves the knowledge and skills necessary to
operate a mill and maintain it in a good state of repair. With a declining number of people earning their livelihood
from the craft, millers today also play a key role in transmitting the cultur...
timespan:
begin_of_the_begin: '1647-01-01T00:00:00Z'
@ -1612,8 +1556,7 @@ timespan:
end_of_the_end: null
sources:
- 'Wikidata Q96742350 P571: https://www.wikidata.org/wiki/Q96742350'
notes: 'Stadsmuseum Hof van Hessen building date 1647. Note: This is the historic
building date, not museum founding.'
notes: 'Stadsmuseum Hof van Hessen building date 1647. Note: This is the historic building date, not museum founding.'
location:
latitude: 51.9364218
longitude: 5.9426622
@ -1651,8 +1594,7 @@ digital_platform_v2:
platform_name: Historische Kring Huessen Website
platform_url: https://www.huessen.nl/
platform_type: DISCOVERY_PORTAL
description: De Historische Kring Huessen, met veel historische informatie over
de stad Huissen aan de Rijn
description: De Historische Kring Huessen, met veel historische informatie over de stad Huissen aan de Rijn
language: nl
og_image: null
favicon: http://www.huessen.nl/media/system/images/joomla-favicon.svg
@ -1727,3 +1669,21 @@ logo_enrichment:
has_favicon: true
has_og_image: false
favicon_count: 3
mission_statement:
- statement_id: https://nde.nl/ontology/hc/mission/nl-ge-hui-s-hkhshh/mission-2026
statement_type: mission
statement_text: De Historische Kring Huessen is een vereniging tot beoefening van de geschiedenis van en tot instandhouding
van de folklore in Huissen.
statement_language: nl
extracted_verbatim: true
source_url: https://www.huessen.nl/
content_hash: sha256-Ww0nAn9ycF1cGULKS6lnLnGIFDH5B9O1qei1WN0XT0U=
provenance:
statement_created_at: '2026-01-04T15:45:06.853805+00:00'
source_archived_at: '2026-01-04T15:44:14.016302+00:00'
retrieval_agent: linkup-api
extraction_agent: zai-glm/glm-4.7
extraction_confidence: 0.8
prov:wasDerivedFrom: https://www.huessen.nl/
prov:generatedAtTime: '2026-01-04T15:45:06.853805+00:00'
source_section: Voorpagina

View file

@ -6,8 +6,8 @@ original_entry:
webadres_organisatie: https://www.ru.nl/services/katholiek-documentatie-centrum
type_organisatie: documentatiecentrum
opmerkingen_inez: Geen eigen KvK inschrijving.
opmerkingen: Katholiek Documentatiecentrum in Nijmegen heeft geen eigen KvK inschrijving.
Nu wel de naam van de organisatie en Stichting Radboud Universiteit als koepelorganisatie.
opmerkingen: Katholiek Documentatiecentrum in Nijmegen heeft geen eigen KvK inschrijving. Nu wel de naam van de organisatie
en Stichting Radboud Universiteit als koepelorganisatie.
isil_code_na: NL-NmKDC
wikidata_id: Q13742228
type:
@ -44,13 +44,11 @@ wikidata_enrichment:
wikidata_label_en: Catholic Documentation Centre
wikidata_label_nl: Katholiek Documentatie Centrum
wikidata_descriptions:
en: heritage institution part of the University Library of the Radboud University
in Nijmegen specialized in the social aspects of Dutch Catholicism since the
nineteenth century
en: heritage institution part of the University Library of the Radboud University in Nijmegen specialized in the social
aspects of Dutch Catholicism since the nineteenth century
sv: arkiv i Nederländerna
wikidata_description_en: heritage institution part of the University Library of
the Radboud University in Nijmegen specialized in the social aspects of Dutch
Catholicism since the nineteenth century
wikidata_description_en: heritage institution part of the University Library of the Radboud University in Nijmegen specialized
in the social aspects of Dutch Catholicism since the nineteenth century
wikidata_aliases:
nl:
- KDC
@ -73,8 +71,8 @@ wikidata_enrichment:
description: facility dedicated to research
- id: Q166118
label: archive
description: agency or institution responsible for the preservation and communication
of records selected for permanent preservation
description: agency or institution responsible for the preservation and communication of records selected for permanent
preservation
- id: Q43229
label: organization
description: social entity established to meet needs or pursue goals
@ -419,8 +417,7 @@ google_maps_enrichment:
author_uri: https://www.google.com/maps/contrib/112124036230072244499/reviews
rating: 5
relative_time_description: 4 jaar geleden
text: Gastvrij, behulpzaam, omvangrijk en onmisbaar voor onderzoek naar katholieke
aspecten van het Nederlandse verleden.
text: Gastvrij, behulpzaam, omvangrijk en onmisbaar voor onderzoek naar katholieke aspecten van het Nederlandse verleden.
publish_time: '2021-02-25T16:00:19.727213Z'
- author_name: Ruud van den Heuvel
author_uri: https://www.google.com/maps/contrib/113633503930297342119/reviews
@ -434,8 +431,7 @@ google_maps_enrichment:
icon_background_color: '#7B9EB0'
utc_offset_minutes: 60
google_maps_status: SUCCESS
google_maps_search_query: Katholiek Documentatiecentrum in Nijmegen, Erasmuslaan 36,
Nijmegen, Netherlands
google_maps_search_query: Katholiek Documentatiecentrum in Nijmegen, Erasmuslaan 36, Nijmegen, Netherlands
web_enrichment:
web_archives:
- url: https://www.ru.nl/kdc/
@ -541,26 +537,22 @@ youtube_enrichment:
channel_id: UCT9UzjyRa8di9WbKJOKOBkQ
channel_url: https://www.youtube.com/channel/UCT9UzjyRa8di9WbKJOKOBkQ
title: Katholiek Documentatie Centrum
description: 'Het Katholiek Documentatie Centrum (KDC) bewaart, ordent en ontsluit
archieven, boeken, brochures, tijdschriften, beeld- en geluidsmateriaal die
afkomstig zijn van katholieke personen en instellingen in Nederland.
description: 'Het Katholiek Documentatie Centrum (KDC) bewaart, ordent en ontsluit archieven, boeken, brochures, tijdschriften,
beeld- en geluidsmateriaal die afkomstig zijn van katholieke personen en instellingen in Nederland.
Het KDC heeft geen kerkelijke archieven in bewaring, maar richt zich op themas
zoals politiek, onderwijs, zorg, welzijnswerk, vakbonden, vrije tijd, jeugd,
kunst en cultuur. Alle collecties hebben betrekking op het dagelijks leven van
de Nederlandse katholieken vanaf 1800.
Het KDC heeft geen kerkelijke archieven in bewaring, maar richt zich op themas zoals politiek, onderwijs, zorg, welzijnswerk,
vakbonden, vrije tijd, jeugd, kunst en cultuur. Alle collecties hebben betrekking op het dagelijks leven van de Nederlandse
katholieken vanaf 1800.
Als onderdeel van de Universiteitsbibliotheek van de Radboud Universiteit Nijmegen
stelt het KDC zijn collecties beschikbaar voor onderzoekers, studenten en liefhebbers,
organiseert het symposia en exposities, levert het verdiepingsartikelen voor
boeken en periodieken en verschaft het informatie, zowel aan de individuele
vragensteller als samenstellers van naslagwerken en encyclopedieën.
Als onderdeel van de Universiteitsbibliotheek van de Radboud Universiteit Nijmegen stelt het KDC zijn collecties beschikbaar
voor onderzoekers, studenten en liefhebbers, organiseert het symposia en exposities, levert het verdiepingsartikelen
voor boeken en periodieken en verschaft het informatie, zowel aan de individuele vragensteller als samenstellers van
naslagwerken en encyclopedieën.
Nieuwsgierig naar wat het KDC voor u kan betekenen? Neem dan gerust contact
met het KDC via onze website!'
Nieuwsgierig naar wat het KDC voor u kan betekenen? Neem dan gerust contact met het KDC via onze website!'
custom_url: '@kdcnijmegen'
published_at: '2011-10-07T06:58:27Z'
country: NL
@ -576,23 +568,17 @@ youtube_enrichment:
- video_id: oehG5eRtlRw
video_url: https://www.youtube.com/watch?v=oehG5eRtlRw
title: 'Ariens lezing 2023: Herman Schaepman & Alfons Ariëns'
description: "Op 15 juni 2023 werd de Ariëns Lezing 2023 georganiseerd door het\
\ Ariëns Comité, samen met het Katholiek Documentatie Centrum (KDC) te Nijmegen.\
\ Dit is een opname van de livestream (via Zoom) van de presentatie door Ton\
\ Crijnen, journalist, historicus en biograaf van Schaepman. \n\nCrijnen vertelt\
\ over het leven en werk van Herman Schaepman, die als politicus en dichter\
\ een grote invloed heeft gehad op de maatschappelijke en politieke emancipatie\
\ van de katholieken. Hij spreekt tevens over Alfons Ariëns, die als priester,\
\ missionair theoloog en emancipator een grote invloed heeft gehad op de ontwikkeling\
\ van de katholieke arbeidersbeweging en drankbestrijdingsbeweging in ons land.\n\
\nIn september 2022 publiceerde Ton Crijnen, samen met de recent overleden juriste\
\ Ina Herbers, het boek Een groot emancipator (Valkhof Pers) over het leven\
\ van Schaepman. Op basis van deze studie zal hij vergelijkingen trekken tussen\
\ de werken van Schaepman en Ariëns als twee grote voortrekkers van katholieke\
\ emancipatie. Ook zullen hun verschillende manieren van aanpak aan bod komen.\
\ Het belooft een boeiende lezing te worden, waarin duidelijk zal worden waarom\
\ Schaepman en Ariëns van belang zijn binnen het thema van sociale en politieke\
\ emancipatie.\n\nMeer info: www.ru.nl/kdc"
description: "Op 15 juni 2023 werd de Ariëns Lezing 2023 georganiseerd door het Ariëns Comité, samen met het Katholiek\
\ Documentatie Centrum (KDC) te Nijmegen. Dit is een opname van de livestream (via Zoom) van de presentatie door Ton\
\ Crijnen, journalist, historicus en biograaf van Schaepman. \n\nCrijnen vertelt over het leven en werk van Herman Schaepman,\
\ die als politicus en dichter een grote invloed heeft gehad op de maatschappelijke en politieke emancipatie van de\
\ katholieken. Hij spreekt tevens over Alfons Ariëns, die als priester, missionair theoloog en emancipator een grote\
\ invloed heeft gehad op de ontwikkeling van de katholieke arbeidersbeweging en drankbestrijdingsbeweging in ons land.\n\
\nIn september 2022 publiceerde Ton Crijnen, samen met de recent overleden juriste Ina Herbers, het boek Een groot emancipator\
\ (Valkhof Pers) over het leven van Schaepman. Op basis van deze studie zal hij vergelijkingen trekken tussen de werken\
\ van Schaepman en Ariëns als twee grote voortrekkers van katholieke emancipatie. Ook zullen hun verschillende manieren\
\ van aanpak aan bod komen. Het belooft een boeiende lezing te worden, waarin duidelijk zal worden waarom Schaepman\
\ en Ariëns van belang zijn binnen het thema van sociale en politieke emancipatie.\n\nMeer info: www.ru.nl/kdc"
published_at: '2023-06-21T11:00:08Z'
duration: PT56M11S
definition: hd
@ -611,31 +597,26 @@ youtube_enrichment:
- video_id: PcE46XRK77M
video_url: https://www.youtube.com/watch?v=PcE46XRK77M
title: 'Ariëns lezing 2022: Van League of the Cross naar Kruisverbond'
description: 'Op 22 april 2022 werd de Ariëns Lezing 2022 georganiseerd door het
Ariëns Comité, samen met het Katholiek Documentatie Centrum (KDC) te Nijmegen,
nadat de editie van 25 november 2021 moest worden uitgesteld vanwege de lockdown.
description: 'Op 22 april 2022 werd de Ariëns Lezing 2022 georganiseerd door het Ariëns Comité, samen met het Katholiek
Documentatie Centrum (KDC) te Nijmegen, nadat de editie van 25 november 2021 moest worden uitgesteld vanwege de lockdown.
Dit is de livestream die op deze middag is opgenomen.
Op deze editie sprak dr. Chris Dols, historicus en erfgoedspecialist, over het
leven en werk van Alphons Ariëns, die als priester, missionair theoloog en emancipator
een grote invloed heeft gehad op de ontwikkeling van de katholieke drankbestrijding
in ons land.
Op deze editie sprak dr. Chris Dols, historicus en erfgoedspecialist, over het leven en werk van Alphons Ariëns, die
als priester, missionair theoloog en emancipator een grote invloed heeft gehad op de ontwikkeling van de katholieke
drankbestrijding in ons land.
Daarbij zal Dols op basis van dwarsverbanden tussen de Engelse casus van kardinaal
Henry Manning en zijn League of the Cross en de Nederlandse casus van Ariëns
en zijn Kruisverbond vooral aandacht schenken aan het tot nu toe onderbelichte
aspect van de internationale dimensies. Het onderzoek hiervoor verrichtte Dols
niet alleen in het Ariëns-archief, maar ook in de British Library (London) en
de National Library of Scotland (Edinburgh).
Daarbij zal Dols op basis van dwarsverbanden tussen de Engelse casus van kardinaal Henry Manning en zijn League of the
Cross en de Nederlandse casus van Ariëns en zijn Kruisverbond vooral aandacht schenken aan het tot nu toe onderbelichte
aspect van de internationale dimensies. Het onderzoek hiervoor verrichtte Dols niet alleen in het Ariëns-archief, maar
ook in de British Library (London) en de National Library of Scotland (Edinburgh).
Sinds 2007 publiceert Dols uitvoerig over het historisch fenomeen van de drankbestrijding.
Thans is hij als conservator van Radboud Erfgoed en lid van de Radboud Jonge
Akademie verbonden aan de Nijmeegse universiteit. Het belooft een boeiende lezing
te worden, waarin duidelijk zal worden waarom Ariëns nog altijd van belang is
binnen het thema van drankmisbruik en drankbestrijding.
Sinds 2007 publiceert Dols uitvoerig over het historisch fenomeen van de drankbestrijding. Thans is hij als conservator
van Radboud Erfgoed en lid van de Radboud Jonge Akademie verbonden aan de Nijmeegse universiteit. Het belooft een boeiende
lezing te worden, waarin duidelijk zal worden waarom Ariëns nog altijd van belang is binnen het thema van drankmisbruik
en drankbestrijding.
Meer info: www.ru.nl/kdc'
@ -657,14 +638,11 @@ youtube_enrichment:
- video_id: plCCsPxkQ0M
video_url: https://www.youtube.com/watch?v=plCCsPxkQ0M
title: Boekpresentatie 'De Rode Paus'
description: "In april 2021 verschijnt het boek De rode paus. Biografie van de\
\ Nederlandse curiekardinaal Willem van Rosssum CSsR [1854-1932], geschreven\
\ door niemand minder dan onze dr. Vefie Poels, adjunct-directeur van het KDC.\
\ \n\nVefie is ter ere van haar publicatie over kardinaal Van Rossum geïnterviewd\
\ door Stijn Fens, redacteur bij Trouw. In het gesprek vertelt ze over het leven\
\ van de kardinaal als weeskind in Zwolle tot rode paus in Rome en blikt ze\
\ terug op haar onderzoekservaringen.\n\nHet boek kan besteld worden bij Uitgeverij\
\ Valkhof Pers: https://valkhofpers.nl/Willem-van-Rossum-CSsR"
description: "In april 2021 verschijnt het boek De rode paus. Biografie van de Nederlandse curiekardinaal Willem van Rosssum\
\ CSsR [1854-1932], geschreven door niemand minder dan onze dr. Vefie Poels, adjunct-directeur van het KDC. \n\nVefie\
\ is ter ere van haar publicatie over kardinaal Van Rossum geïnterviewd door Stijn Fens, redacteur bij Trouw. In het\
\ gesprek vertelt ze over het leven van de kardinaal als weeskind in Zwolle tot rode paus in Rome en blikt ze terug\
\ op haar onderzoekservaringen.\n\nHet boek kan besteld worden bij Uitgeverij Valkhof Pers: https://valkhofpers.nl/Willem-van-Rossum-CSsR"
published_at: '2021-04-08T08:35:30Z'
duration: PT32M7S
definition: hd
@ -682,17 +660,14 @@ youtube_enrichment:
comments_fetched: 0
- video_id: sEcDiTwmFm4
video_url: https://www.youtube.com/watch?v=sEcDiTwmFm4
title: 'Radboud Erfgoed: Online Boekensalon - Van auteur naar autoriteit: Augustinus
in Middeleeuwse manusc'
description: 'In de tweede online boekensalon zal Shari Boodts vertellen over
de netelige kwestie van auteursattributie in Middeleeuwse boeken. Hoe weet een
kopiist eigenlijk welk werk hij voor zich heeft? Ze gebruikt daarvoor het voorbeeld
van de Kerkvader Augustinus, wiens naam doorheen de Middeleeuwen verbonden is
met een hele reeks werken die hij niet zelf geschreven heeft.
title: 'Radboud Erfgoed: Online Boekensalon - Van auteur naar autoriteit: Augustinus in Middeleeuwse manusc'
description: 'In de tweede online boekensalon zal Shari Boodts vertellen over de netelige kwestie van auteursattributie
in Middeleeuwse boeken. Hoe weet een kopiist eigenlijk welk werk hij voor zich heeft? Ze gebruikt daarvoor het voorbeeld
van de Kerkvader Augustinus, wiens naam doorheen de Middeleeuwen verbonden is met een hele reeks werken die hij niet
zelf geschreven heeft.
Donderdag 19 november om 15.30 uur vanuit de Leeszaal Bijzondere Collecties
van de UB Nijmegen.'
Donderdag 19 november om 15.30 uur vanuit de Leeszaal Bijzondere Collecties van de UB Nijmegen.'
published_at: '2020-11-20T03:02:06Z'
duration: PT28M59S
definition: hd
@ -717,18 +692,14 @@ youtube_enrichment:
- video_id: Kh6rDkelke8
video_url: https://www.youtube.com/watch?v=Kh6rDkelke8
title: 'KDC Webinar: Oost/West - Op zoek naar verhalen van ontmoeting'
description: "Als gevolg van anderhalve eeuw uitwisseling liggen in Nederland\
\ en Indonesië schatten van gedeeld erfgoed verborgen. Oost en west ontmoeten\
\ elkaar in de missie-archieven. \n\nIn januari 2020 vertrok Maaike Derksen\
\ namens de Radboud Universiteit en het KDC naar Indonesië met een bijzondere\
\ missie. Zij ging met lokale partners inventariseren in hoeverre er interesse\
\ bestaat in het conserveren en beschikbaar maken van het gedeelde religieuze\
\ en culturele erfgoed. \n\nOmdat er in de Nederlandse missiearchieven veel\
\ Indonesisch archiefmateriaal is terug te vinden en visa versa, zouden onderzoekers\
\ in beide landen kunnen profiteren van de digitalisering en uitwisseling van\
\ materiaal.\n\nIn het kader van de Maand van de Geschiedenis vertelt ze meer\
\ over haar reis en het project \"Gedeeld erfgoed delen\" dat daar uit voortvloeit.\
\ \n\nMeer info vindt u op www.ru.nl/kdc"
description: "Als gevolg van anderhalve eeuw uitwisseling liggen in Nederland en Indonesië schatten van gedeeld erfgoed\
\ verborgen. Oost en west ontmoeten elkaar in de missie-archieven. \n\nIn januari 2020 vertrok Maaike Derksen namens\
\ de Radboud Universiteit en het KDC naar Indonesië met een bijzondere missie. Zij ging met lokale partners inventariseren\
\ in hoeverre er interesse bestaat in het conserveren en beschikbaar maken van het gedeelde religieuze en culturele\
\ erfgoed. \n\nOmdat er in de Nederlandse missiearchieven veel Indonesisch archiefmateriaal is terug te vinden en visa\
\ versa, zouden onderzoekers in beide landen kunnen profiteren van de digitalisering en uitwisseling van materiaal.\n\
\nIn het kader van de Maand van de Geschiedenis vertelt ze meer over haar reis en het project \"Gedeeld erfgoed delen\"\
\ dat daar uit voortvloeit. \n\nMeer info vindt u op www.ru.nl/kdc"
published_at: '2020-10-22T09:00:07Z'
duration: PT21M36S
definition: hd
@ -761,14 +732,12 @@ youtube_enrichment:
- video_id: Z_NDOaWiZ7Y
video_url: https://www.youtube.com/watch?v=Z_NDOaWiZ7Y
title: 'Radboud Erfgoed: Online Boekensalon - het Journael van Bontekoe'
description: "We gaan weer beginnen met de boekensalon, maar nu online. In het\
\ kader van de maand van de geschiedenis en 024 geschiedenis zal Johan Oosterman,\
\ hoogleraar Oudere Nederlandse letterkunde aan de Radboud Universiteit, aftrappen.\
\ \n\nHij vertelt over een verzameling van zestien boekjes in één band. Het\
\ zijn allemaal reisverhalen, van het Journael van Bontekoe en het relaas over\
\ de overwintering op Nova Zembla, tot verhalen over reizen naar Amerika, China,\
\ Rusland, Turkije en nog veel meer. \n\nDonderdag 15 oktober om 15.30 uur vanuit\
\ de Leeszaal Bijzondere Collecties van de UB Nijmegen."
description: "We gaan weer beginnen met de boekensalon, maar nu online. In het kader van de maand van de geschiedenis\
\ en 024 geschiedenis zal Johan Oosterman, hoogleraar Oudere Nederlandse letterkunde aan de Radboud Universiteit, aftrappen.\
\ \n\nHij vertelt over een verzameling van zestien boekjes in één band. Het zijn allemaal reisverhalen, van het Journael\
\ van Bontekoe en het relaas over de overwintering op Nova Zembla, tot verhalen over reizen naar Amerika, China, Rusland,\
\ Turkije en nog veel meer. \n\nDonderdag 15 oktober om 15.30 uur vanuit de Leeszaal Bijzondere Collecties van de UB\
\ Nijmegen."
published_at: '2020-10-16T02:06:57Z'
duration: PT30M21S
definition: hd
@ -793,31 +762,26 @@ youtube_enrichment:
- video_id: ReYvvt0BwYw
video_url: https://www.youtube.com/watch?v=ReYvvt0BwYw
title: 'Radboud Recharge: Saving the Overlooked Continent'
description: 'In de polarisatie van de Amerikaanse politiek spelen religieuze
sentimenten een prominente rol. Voor Europeanen is deze rol moeilijk te bevatten
en lastig te waarderen. De publieke rol van religie is daarvoor te verschillend.
description: 'In de polarisatie van de Amerikaanse politiek spelen religieuze sentimenten een prominente rol. Voor Europeanen
is deze rol moeilijk te bevatten en lastig te waarderen. De publieke rol van religie is daarvoor te verschillend.
Recent onderzoek heeft aangetoond dat de bron van deze religieuze verschillen
tijdens de Tweede Wereldoorlog door protestantse leiders in de Verenigde Staten
werden opgemerkt en dat ze gelijk actie ondernamen:. Europa moest weer teruggebracht
Recent onderzoek heeft aangetoond dat de bron van deze religieuze verschillen tijdens de Tweede Wereldoorlog door protestantse
leiders in de Verenigde Staten werden opgemerkt en dat ze gelijk actie ondernamen:. Europa moest weer teruggebracht
worden naar de oorspronkelijke christelijke oorsprong.
Deze Recharge Lezing gaat over de motieven en middelen die Amerikaanse protestanten
bewogen om Europa te herkerstenen tussen 1940 en 1975. Deze poging was een nieuw
verschijnsel in religieuze beïnvloeding, want Europa was tot dusver steeds de
zender van evangelisten geweest en werd nu een ontvanger. Ver voor de jaren
1960, toen secularisatie een belangrijk thema werd, was Amerika dus al bezorgd
over de ziel van Europa. Deze religieuze missie sloot aan bij de naoorlogse
militaire, economische en politieke bemoeienis van de Verenigde Staten met West-Europa.
Deze transatlantische episode toont de diverse lagen van religieuze export aan
en de ontwikkeling van scheidslijnen en nieuwe verbindingen. De echos daarvan
Deze Recharge Lezing gaat over de motieven en middelen die Amerikaanse protestanten bewogen om Europa te herkerstenen
tussen 1940 en 1975. Deze poging was een nieuw verschijnsel in religieuze beïnvloeding, want Europa was tot dusver steeds
de zender van evangelisten geweest en werd nu een ontvanger. Ver voor de jaren 1960, toen secularisatie een belangrijk
thema werd, was Amerika dus al bezorgd over de ziel van Europa. Deze religieuze missie sloot aan bij de naoorlogse militaire,
economische en politieke bemoeienis van de Verenigde Staten met West-Europa. Deze transatlantische episode toont de
diverse lagen van religieuze export aan en de ontwikkeling van scheidslijnen en nieuwe verbindingen. De echos daarvan
weerklinken nog steeds.
Spreker: Dr. Hans Krabbendam is directeur van het Katholiek Documentatie Centrum
(KDC) aan de Radboud Universiteit en deed onderzoek naar de Amerikaanse religiegeschiedenis.'
Spreker: Dr. Hans Krabbendam is directeur van het Katholiek Documentatie Centrum (KDC) aan de Radboud Universiteit en
deed onderzoek naar de Amerikaanse religiegeschiedenis.'
published_at: '2020-10-14T06:30:16Z'
duration: PT54M45S
definition: hd
@ -839,20 +803,15 @@ youtube_enrichment:
- video_id: 4MNwV1LUwAk
video_url: https://www.youtube.com/watch?v=4MNwV1LUwAk
title: 'Trailer: Migrantenkerken en Kerkgebouwen'
description: "Op 17 september 2020 gaat het nieuwe Netwerk Religieus Erfgoed van\
\ start met een digitale kick-off. Het Netwerk bestaat uit universiteiten, hogescholen\
\ en erfgoedorganisaties en brengt academici, kerken, musea, seculiere kerkstichtingen\
\ en overheden met elkaar in gesprek over de waarde en betekenis van religieus\
\ erfgoed voor de samenleving. Daarnaast wil het Netwerk de komende generatie\
\ erfgoedprofessionals trainen en grensverleggend onderzoek doen. Vanaf 17 september\
\ zullen de partners uit het netwerk twee jaar lang workshops organiseren rond\
\ diverse thema's. Ook zal een Summerschool worden georganiseerd en is het mogelijk\
\ om via het netwerk een onderzoeksstage te doen.\n\nTijdens de kick-off worden\
\ alle workshops gepresenteerd.\n\nHet KDC is partner in het Netwerk Religieus\
\ Erfgoed en organiseert samen met het Instituut voor Oosters Christendom een\
\ workshop over Migrantenkerken en Kerkgebouwen. \n\nMeer over de workshop:\
\ https://www.ru.nl/kdc/weten/agenda/@1280740/migrantenkerken-kerkgebouwen/\n\
\nBezoek onze website: www.ru.nl/kdc"
description: "Op 17 september 2020 gaat het nieuwe Netwerk Religieus Erfgoed van start met een digitale kick-off. Het\
\ Netwerk bestaat uit universiteiten, hogescholen en erfgoedorganisaties en brengt academici, kerken, musea, seculiere\
\ kerkstichtingen en overheden met elkaar in gesprek over de waarde en betekenis van religieus erfgoed voor de samenleving.\
\ Daarnaast wil het Netwerk de komende generatie erfgoedprofessionals trainen en grensverleggend onderzoek doen. Vanaf\
\ 17 september zullen de partners uit het netwerk twee jaar lang workshops organiseren rond diverse thema's. Ook zal\
\ een Summerschool worden georganiseerd en is het mogelijk om via het netwerk een onderzoeksstage te doen.\n\nTijdens\
\ de kick-off worden alle workshops gepresenteerd.\n\nHet KDC is partner in het Netwerk Religieus Erfgoed en organiseert\
\ samen met het Instituut voor Oosters Christendom een workshop over Migrantenkerken en Kerkgebouwen. \n\nMeer over\
\ de workshop: https://www.ru.nl/kdc/weten/agenda/@1280740/migrantenkerken-kerkgebouwen/\n\nBezoek onze website: www.ru.nl/kdc"
published_at: '2020-09-17T10:51:36Z'
duration: PT2M22S
definition: hd
@ -881,17 +840,14 @@ youtube_enrichment:
- video_id: AvOJpf3B3_o
video_url: https://www.youtube.com/watch?v=AvOJpf3B3_o
title: 50 jaar KDC in beeld
description: "Het Katholiek Documentatie Centrum (KDC) van de Radboud Universiteit\
\ Nijmegen vierde dit jaar zijn 50-jarig jubileum. Met deze mini-documentaire\
\ kijkt het KDC terug op de mooie resultaten van de afgelopen halve eeuw en\
\ vooruit naar een actieve rol als bruggenbouwer van het katholieke erfgoed.\n\
\nPresentatie:\nHans Krabbendam (directeur KDC)\nMarieke Smulders (collectiespecialist)\n\
Lodewijk Winkeler (oud-directeur en ervaringsdeskundige) \n\nSamengesteld door\
\ Jeffry Huntjens en Collin Burgemeestre namens het KDC (februari - maart 2019).\
\ Met hartelijk dank aan alle collega's voor de medewerking.\n\nEngelse ondertiteling\
\ door Jeffry Huntjens en Violeta Gilbert.\n\nDeze korte film werd oorspronkelijk\
\ vertoond op 1 mei 2019 tijdens de jubileumviering in het Academiegebouw Berchmanianum\
\ en is vanaf nu online beschikbaar. \n\nAlle rechten voorbehouden aan het KDC."
description: "Het Katholiek Documentatie Centrum (KDC) van de Radboud Universiteit Nijmegen vierde dit jaar zijn 50-jarig\
\ jubileum. Met deze mini-documentaire kijkt het KDC terug op de mooie resultaten van de afgelopen halve eeuw en vooruit\
\ naar een actieve rol als bruggenbouwer van het katholieke erfgoed.\n\nPresentatie:\nHans Krabbendam (directeur KDC)\n\
Marieke Smulders (collectiespecialist)\nLodewijk Winkeler (oud-directeur en ervaringsdeskundige) \n\nSamengesteld door\
\ Jeffry Huntjens en Collin Burgemeestre namens het KDC (februari - maart 2019). Met hartelijk dank aan alle collega's\
\ voor de medewerking.\n\nEngelse ondertiteling door Jeffry Huntjens en Violeta Gilbert.\n\nDeze korte film werd oorspronkelijk\
\ vertoond op 1 mei 2019 tijdens de jubileumviering in het Academiegebouw Berchmanianum en is vanaf nu online beschikbaar.\
\ \n\nAlle rechten voorbehouden aan het KDC."
published_at: '2019-12-12T10:55:50Z'
duration: PT6M41S
definition: hd
@ -917,20 +873,15 @@ youtube_enrichment:
- video_id: 181YbJEzZTU
video_url: https://www.youtube.com/watch?v=181YbJEzZTU
title: 'KDC | Hans Garritsen - Nijmegen: wederwaardigheden en reflecties'
description: "In het kader van Erfgoedfestival Gelderland organiseerde het KDC\
\ de verhalenmiddag \"Het dorp uit, naar Havanna aan de Waal\" over de metamorfose\
\ van de katholieke student op donderdag 14 juni 2018.\n\nIn vier lezingen werden\
\ bijzondere ervaringen gedeeld van studenten, die verhuisden van het kalme,\
\ 'katholieke' platteland naar het roerige, rode Nijmegen.\n\nDit is een samenvatting\
\ van het verhaal van drs. Hans Garritsen, schrijver, kunstenaar en theoloog,\
\ over zijn studententijd (1971-1979), een verandering in het denken over religie\
\ en een tijd van idealen en dromerigheid. Het gelijknamige boek is te bestellen\
\ via http://hansgarritsen.nl\n\nMeer weten? Bezoek ons: http://www.ru.nl/kdc\n\
\nBeeld & Geluid: L. Poels (KDC), C. Burgemeestre (KDC) en D. Baetsleer (HAN).\n\
Montage: J. Huntjens (KDC) \nMuziekfragment: Ross Bugden - New York 1924 (Creative\
\ Commons Attribution 4.0 International License)\nFoto's en afbeeldingen zijn\
\ afkomstig uit de collecties van de KDC, RU, RAN en de persoonlijke collectie\
\ van de spreker."
description: "In het kader van Erfgoedfestival Gelderland organiseerde het KDC de verhalenmiddag \"Het dorp uit, naar\
\ Havanna aan de Waal\" over de metamorfose van de katholieke student op donderdag 14 juni 2018.\n\nIn vier lezingen\
\ werden bijzondere ervaringen gedeeld van studenten, die verhuisden van het kalme, 'katholieke' platteland naar het\
\ roerige, rode Nijmegen.\n\nDit is een samenvatting van het verhaal van drs. Hans Garritsen, schrijver, kunstenaar\
\ en theoloog, over zijn studententijd (1971-1979), een verandering in het denken over religie en een tijd van idealen\
\ en dromerigheid. Het gelijknamige boek is te bestellen via http://hansgarritsen.nl\n\nMeer weten? Bezoek ons: http://www.ru.nl/kdc\n\
\nBeeld & Geluid: L. Poels (KDC), C. Burgemeestre (KDC) en D. Baetsleer (HAN).\nMontage: J. Huntjens (KDC) \nMuziekfragment:\
\ Ross Bugden - New York 1924 (Creative Commons Attribution 4.0 International License)\nFoto's en afbeeldingen zijn\
\ afkomstig uit de collecties van de KDC, RU, RAN en de persoonlijke collectie van de spreker."
published_at: '2018-08-27T13:23:29Z'
duration: PT18M34S
definition: hd
@ -956,20 +907,15 @@ youtube_enrichment:
- video_id: vBp7gL6ORc0
video_url: https://www.youtube.com/watch?v=vBp7gL6ORc0
title: KDC | Leo Salemink - Tussen Maria en Marx
description: "In het kader van Erfgoedfestival Gelderland organiseerde het KDC\
\ de verhalenmiddag \"Het dorp uit, naar Havanna aan de Waal\" over de metamorfose\
\ van de katholieke student op donderdag 14 juni 2018.\n\nIn vier lezingen werden\
\ bijzondere ervaringen gedeeld van studenten, die verhuisden van het kalme,\
\ 'katholieke' platteland naar het roerige, rode Nijmegen.\n\nDit is een samenvatting\
\ van het verhaal van drs. Leo Salemink, historicus en docent geschiedenis,\
\ over zijn studententijd (1973-1981) aan de KUN en het spanningsveld tussen\
\ katholicisme en socialisme waar de studenten mee te maken kregen. Meer weten?\
\ Bezoek ook: https://saleminkhistorie.nl\n\nMeer weten? Bezoek ons: http://www.ru.nl/kdc\n\
\nBeeld & Geluid: L. Poels (KDC), C. Burgemeestre (KDC) en D. Baetsleer (HAN).\n\
Montage: J. Huntjens (KDC) \nMuziekfragment: Ross Bugden - New York 1924 (Creative\
\ Commons Attribution 4.0 International License)\nFoto's en afbeeldingen zijn\
\ afkomstig uit de collecties van de KDC, RU, RAN en de persoonlijke collectie\
\ van de spreker."
description: "In het kader van Erfgoedfestival Gelderland organiseerde het KDC de verhalenmiddag \"Het dorp uit, naar\
\ Havanna aan de Waal\" over de metamorfose van de katholieke student op donderdag 14 juni 2018.\n\nIn vier lezingen\
\ werden bijzondere ervaringen gedeeld van studenten, die verhuisden van het kalme, 'katholieke' platteland naar het\
\ roerige, rode Nijmegen.\n\nDit is een samenvatting van het verhaal van drs. Leo Salemink, historicus en docent geschiedenis,\
\ over zijn studententijd (1973-1981) aan de KUN en het spanningsveld tussen katholicisme en socialisme waar de studenten\
\ mee te maken kregen. Meer weten? Bezoek ook: https://saleminkhistorie.nl\n\nMeer weten? Bezoek ons: http://www.ru.nl/kdc\n\
\nBeeld & Geluid: L. Poels (KDC), C. Burgemeestre (KDC) en D. Baetsleer (HAN).\nMontage: J. Huntjens (KDC) \nMuziekfragment:\
\ Ross Bugden - New York 1924 (Creative Commons Attribution 4.0 International License)\nFoto's en afbeeldingen zijn\
\ afkomstig uit de collecties van de KDC, RU, RAN en de persoonlijke collectie van de spreker."
published_at: '2018-08-27T12:57:58Z'
duration: PT22M31S
definition: hd
@ -993,20 +939,15 @@ youtube_enrichment:
- video_id: fQEZpIAYga0
video_url: https://www.youtube.com/watch?v=fQEZpIAYga0
title: KDC | Monique Leyenaar - Vrouwen in de politiek van het heden en de toekomst
description: "Op donderdag 31 mei 2018 organiseerden het KDC, de faculteiten FTR\
\ en Managementwetenschappen van de Radboud Universiteit Nijmegen en de Vrije\
\ Universiteit Amsterdam het symposium '100 jaar vrouwenkiesrecht. Wat komen\
\ jullie hier doen?'. Met lezingen en gesprekken van o.a. prof.dr. Sophie van\
\ Bijsterveld (RU), drs. Hillie van de Streek (EPP), prof.dr. George Harinck\
\ (VU), dr. Alexander van Kessel (CPG), prof.dr. Monique Leyenaar (RU) en oud-politica\
\ dr. Annemiek van Heel-Kasteel (KVP/CDA). \n\nDit is een samenvatting van een\
\ lezing van prof.dr. Monique Leyenaar, hoogleraar politicologie, over vrouwen\
\ in de politiek van nu. Hoe ver zijn we gekomen? En waar gaan we heen?\n\n\
Meer weten? Bezoek ons: http://www.ru.nl/kdc\n\nBeeld & Geluid: RU Mediatechniek\
\ & L. Poels (KDC)\nMontage: J. Huntjens (KDC) & C. Burgemeestre (KDC)\nMuziekfragment:\
\ Ross Bugden - New York 1924 (Creative Commons Attribution 4.0 International\
\ License)\nFoto's en afbeeldingen zijn (zover te achterhalen was) afkomstig\
\ uit de collecties van de KDC, RU, VU en Nationaal Archief."
description: "Op donderdag 31 mei 2018 organiseerden het KDC, de faculteiten FTR en Managementwetenschappen van de Radboud\
\ Universiteit Nijmegen en de Vrije Universiteit Amsterdam het symposium '100 jaar vrouwenkiesrecht. Wat komen jullie\
\ hier doen?'. Met lezingen en gesprekken van o.a. prof.dr. Sophie van Bijsterveld (RU), drs. Hillie van de Streek (EPP),\
\ prof.dr. George Harinck (VU), dr. Alexander van Kessel (CPG), prof.dr. Monique Leyenaar (RU) en oud-politica dr. Annemiek\
\ van Heel-Kasteel (KVP/CDA). \n\nDit is een samenvatting van een lezing van prof.dr. Monique Leyenaar, hoogleraar politicologie,\
\ over vrouwen in de politiek van nu. Hoe ver zijn we gekomen? En waar gaan we heen?\n\nMeer weten? Bezoek ons: http://www.ru.nl/kdc\n\
\nBeeld & Geluid: RU Mediatechniek & L. Poels (KDC)\nMontage: J. Huntjens (KDC) & C. Burgemeestre (KDC)\nMuziekfragment:\
\ Ross Bugden - New York 1924 (Creative Commons Attribution 4.0 International License)\nFoto's en afbeeldingen zijn\
\ (zover te achterhalen was) afkomstig uit de collecties van de KDC, RU, VU en Nationaal Archief."
published_at: '2018-06-12T15:53:49Z'
duration: PT20M26S
definition: hd
@ -1032,21 +973,16 @@ youtube_enrichment:
- video_id: yGT0xXSE-eM
video_url: https://www.youtube.com/watch?v=yGT0xXSE-eM
title: KDC | Interview met Annemiek van Heel-Kasteel (KVP / CDA)
description: "Op donderdag 31 mei 2018 organiseerden het KDC, de faculteiten FTR\
\ en Managementwetenschappen van de Radboud Universiteit Nijmegen en de Vrije\
\ Universiteit Amsterdam het symposium '100 jaar vrouwenkiesrecht. Wat komen\
\ jullie hier doen?'. Met lezingen en gesprekken van o.a. prof.dr. Sophie van\
\ Bijsterveld (RU), drs. Hillie van de Streek (EPP), prof.dr. George Harinck\
\ (VU), dr. Alexander van Kessel (CPG), prof.dr. Monique Leyenaar (RU) en oud-politica\
\ dr. Annemiek van Heel-Kasteel (KVP/CDA). \n\nDit is een samenvatting van een\
\ interview met Annemiek van Heel-Kasteel over haar carrière als Tweede Kamerlid\
\ van 1973-1981 voor KVP en CDA. Dr. Hans Krabbendam (KDC) was de gastheer en\
\ er waren ook diverse vragen uit het publiek.\n\nMeer weten? Bezoek ons: http://www.ru.nl/kdc\n\
\nBeeld & Geluid: RU Mediatechniek & L. Poels (KDC)\nMontage: J. Huntjens (KDC)\
\ & C. Burgemeestre (KDC)\nMuziekfragment: Ross Bugden - New York 1924 (Creative\
\ Commons Attribution 4.0 International License)\nFoto's en afbeeldingen zijn\
\ (zover te achterhalen was) afkomstig uit de collecties van de KDC, RU, VU\
\ en Nationaal Archief."
description: "Op donderdag 31 mei 2018 organiseerden het KDC, de faculteiten FTR en Managementwetenschappen van de Radboud\
\ Universiteit Nijmegen en de Vrije Universiteit Amsterdam het symposium '100 jaar vrouwenkiesrecht. Wat komen jullie\
\ hier doen?'. Met lezingen en gesprekken van o.a. prof.dr. Sophie van Bijsterveld (RU), drs. Hillie van de Streek (EPP),\
\ prof.dr. George Harinck (VU), dr. Alexander van Kessel (CPG), prof.dr. Monique Leyenaar (RU) en oud-politica dr. Annemiek\
\ van Heel-Kasteel (KVP/CDA). \n\nDit is een samenvatting van een interview met Annemiek van Heel-Kasteel over haar\
\ carrière als Tweede Kamerlid van 1973-1981 voor KVP en CDA. Dr. Hans Krabbendam (KDC) was de gastheer en er waren\
\ ook diverse vragen uit het publiek.\n\nMeer weten? Bezoek ons: http://www.ru.nl/kdc\n\nBeeld & Geluid: RU Mediatechniek\
\ & L. Poels (KDC)\nMontage: J. Huntjens (KDC) & C. Burgemeestre (KDC)\nMuziekfragment: Ross Bugden - New York 1924\
\ (Creative Commons Attribution 4.0 International License)\nFoto's en afbeeldingen zijn (zover te achterhalen was) afkomstig\
\ uit de collecties van de KDC, RU, VU en Nationaal Archief."
published_at: '2018-06-12T15:53:10Z'
duration: PT21M16S
definition: hd
@ -1075,21 +1011,16 @@ youtube_enrichment:
- video_id: xSb4Np8Bebc
video_url: https://www.youtube.com/watch?v=xSb4Np8Bebc
title: KDC | Academisch gesprek - De kerken over vrouwen
description: "Op donderdag 31 mei 2018 organiseerden het KDC, de faculteiten FTR\
\ en Managementwetenschappen van de Radboud Universiteit Nijmegen en de Vrije\
\ Universiteit Amsterdam het symposium '100 jaar vrouwenkiesrecht. Wat komen\
\ jullie hier doen?'. Met lezingen en gesprekken van o.a. prof.dr. Sophie van\
\ Bijsterveld (RU), drs. Hillie van de Streek (EPP), prof.dr. George Harinck\
\ (VU), dr. Alexander van Kessel (CPG), prof.dr. Monique Leyenaar (RU) en oud-politica\
\ dr. Annemiek van Heel-Kasteel (KVP/CDA). \n\nDit is een samenvatting van een\
\ gesprek tussen Van Bijsterveld, Van de Streek, Harinck en Van Kessel (met\
\ vragen uit publiek) over het standpunt van de katholieke en protestantse kerken\
\ over vrouwen in de Nederlandse politiek.\n\nMeer weten? Bezoek ons: http://www.ru.nl/kdc\n\
\nBeeld & Geluid: RU Mediatechniek & L. Poels (KDC)\nMontage: J. Huntjens (KDC)\
\ & C. Burgemeestre (KDC)\nMuziekfragment: Ross Bugden - New York 1924 (Creative\
\ Commons Attribution 4.0 International License)\nFoto's en afbeeldingen zijn\
\ (zover te achterhalen was) afkomstig uit de collecties van de KDC, RU, VU\
\ en Nationaal Archief."
description: "Op donderdag 31 mei 2018 organiseerden het KDC, de faculteiten FTR en Managementwetenschappen van de Radboud\
\ Universiteit Nijmegen en de Vrije Universiteit Amsterdam het symposium '100 jaar vrouwenkiesrecht. Wat komen jullie\
\ hier doen?'. Met lezingen en gesprekken van o.a. prof.dr. Sophie van Bijsterveld (RU), drs. Hillie van de Streek (EPP),\
\ prof.dr. George Harinck (VU), dr. Alexander van Kessel (CPG), prof.dr. Monique Leyenaar (RU) en oud-politica dr. Annemiek\
\ van Heel-Kasteel (KVP/CDA). \n\nDit is een samenvatting van een gesprek tussen Van Bijsterveld, Van de Streek, Harinck\
\ en Van Kessel (met vragen uit publiek) over het standpunt van de katholieke en protestantse kerken over vrouwen in\
\ de Nederlandse politiek.\n\nMeer weten? Bezoek ons: http://www.ru.nl/kdc\n\nBeeld & Geluid: RU Mediatechniek & L.\
\ Poels (KDC)\nMontage: J. Huntjens (KDC) & C. Burgemeestre (KDC)\nMuziekfragment: Ross Bugden - New York 1924 (Creative\
\ Commons Attribution 4.0 International License)\nFoto's en afbeeldingen zijn (zover te achterhalen was) afkomstig uit\
\ de collecties van de KDC, RU, VU en Nationaal Archief."
published_at: '2018-06-12T15:36:21Z'
duration: PT20M14S
definition: hd
@ -1118,22 +1049,16 @@ youtube_enrichment:
- video_id: BIv8eX2FrbE
video_url: https://www.youtube.com/watch?v=BIv8eX2FrbE
title: KDC | Alexander van Kessel - 100 jaar vrouwen in de politiek
description: "Op donderdag 31 mei 2018 organiseerden het KDC, de faculteiten FTR\
\ en Managementwetenschappen van de Radboud Universiteit Nijmegen en de Vrije\
\ Universiteit Amsterdam het symposium '100 jaar vrouwenkiesrecht. Wat komen\
\ jullie hier doen?'. Met lezingen en gesprekken van o.a. prof.dr. Sophie van\
\ Bijsterveld (RU), drs. Hillie van de Streek (EPP), prof.dr. George Harinck\
\ (VU), dr. Alexander van Kessel (CPG), prof.dr. Monique Leyenaar (RU) en oud-politica\
\ dr. Annemiek van Heel-Kasteel (KVP/CDA). \n\nDit is een samenvatting van de\
\ lezing van dr. Alexander van Kessel (Centrum voor Parlementaire Geschiedenis)\
\ over de 100 jarige geschiedenis van vrouwen in de Nederlandse politiek. De\
\ originele titel van deze lezing was \"Vrouwenkiesrecht en de Confessionelen:\
\ een beginselkwestie?\".\n\nMeer weten? Bezoek ons: http://www.ru.nl/kdc\n\n\
Beeld & Geluid: RU Mediatechniek & L. Poels (KDC)\nMontage: J. Huntjens (KDC)\
\ & C. Burgemeestre (KDC)\nMuziekfragment: Ross Bugden - New York 1924 (Creative\
\ Commons Attribution 4.0 International License)\nFoto's en afbeeldingen zijn\
\ (zover te achterhalen was) afkomstig uit de collecties van de KDC, RU, VU\
\ en Nationaal Archief."
description: "Op donderdag 31 mei 2018 organiseerden het KDC, de faculteiten FTR en Managementwetenschappen van de Radboud\
\ Universiteit Nijmegen en de Vrije Universiteit Amsterdam het symposium '100 jaar vrouwenkiesrecht. Wat komen jullie\
\ hier doen?'. Met lezingen en gesprekken van o.a. prof.dr. Sophie van Bijsterveld (RU), drs. Hillie van de Streek (EPP),\
\ prof.dr. George Harinck (VU), dr. Alexander van Kessel (CPG), prof.dr. Monique Leyenaar (RU) en oud-politica dr. Annemiek\
\ van Heel-Kasteel (KVP/CDA). \n\nDit is een samenvatting van de lezing van dr. Alexander van Kessel (Centrum voor Parlementaire\
\ Geschiedenis) over de 100 jarige geschiedenis van vrouwen in de Nederlandse politiek. De originele titel van deze\
\ lezing was \"Vrouwenkiesrecht en de Confessionelen: een beginselkwestie?\".\n\nMeer weten? Bezoek ons: http://www.ru.nl/kdc\n\
\nBeeld & Geluid: RU Mediatechniek & L. Poels (KDC)\nMontage: J. Huntjens (KDC) & C. Burgemeestre (KDC)\nMuziekfragment:\
\ Ross Bugden - New York 1924 (Creative Commons Attribution 4.0 International License)\nFoto's en afbeeldingen zijn\
\ (zover te achterhalen was) afkomstig uit de collecties van de KDC, RU, VU en Nationaal Archief."
published_at: '2018-06-12T15:17:14Z'
duration: PT13M38S
definition: hd
@ -1159,21 +1084,16 @@ youtube_enrichment:
comments_fetched: 0
- video_id: bCxCa8QaehU
video_url: https://www.youtube.com/watch?v=bCxCa8QaehU
title: KDC | Introductie Symposium '100 jaar vrouwenkiesrecht. Wat komen jullie
hier doen?'
description: "Op donderdag 31 mei 2018 organiseerden het KDC, de faculteiten FTR\
\ en Managementwetenschappen van de Radboud Universiteit Nijmegen en de Vrije\
\ Universiteit Amsterdam het symposium '100 jaar vrouwenkiesrecht. Wat komen\
\ jullie hier doen?'. Met lezingen en gesprekken van o.a. prof.dr. Sophie van\
\ Bijsterveld (RU), drs. Hillie van de Streek (EPP), prof.dr. George Harinck\
\ (VU), dr. Alexander van Kessel (CPG), prof.dr. Monique Leyenaar (RU) en oud-politica\
\ dr. Annemiek van Heel-Kasteel (KVP/CDA). \n\nDit is een introductievideo voor\
\ de diverse lezingen die op video zijn verschenen.\n\nMeer weten? Bezoek ons:\
\ http://www.ru.nl/kdc\n\nBeeld & Geluid: RU Mediatechniek & L. Poels (KDC)\n\
Montage: J. Huntjens (KDC) & C. Burgemeestre (KDC)\nMuziek: Ross Bugden - New\
\ York 1924 (Creative Commons Attribution 4.0 International License)\nFoto's\
\ en afbeeldingen zijn (zover te achterhalen was) afkomstig uit de collecties\
\ van de KDC, RU, VU en Nationaal Archief."
title: KDC | Introductie Symposium '100 jaar vrouwenkiesrecht. Wat komen jullie hier doen?'
description: "Op donderdag 31 mei 2018 organiseerden het KDC, de faculteiten FTR en Managementwetenschappen van de Radboud\
\ Universiteit Nijmegen en de Vrije Universiteit Amsterdam het symposium '100 jaar vrouwenkiesrecht. Wat komen jullie\
\ hier doen?'. Met lezingen en gesprekken van o.a. prof.dr. Sophie van Bijsterveld (RU), drs. Hillie van de Streek (EPP),\
\ prof.dr. George Harinck (VU), dr. Alexander van Kessel (CPG), prof.dr. Monique Leyenaar (RU) en oud-politica dr. Annemiek\
\ van Heel-Kasteel (KVP/CDA). \n\nDit is een introductievideo voor de diverse lezingen die op video zijn verschenen.\n\
\nMeer weten? Bezoek ons: http://www.ru.nl/kdc\n\nBeeld & Geluid: RU Mediatechniek & L. Poels (KDC)\nMontage: J. Huntjens\
\ (KDC) & C. Burgemeestre (KDC)\nMuziek: Ross Bugden - New York 1924 (Creative Commons Attribution 4.0 International\
\ License)\nFoto's en afbeeldingen zijn (zover te achterhalen was) afkomstig uit de collecties van de KDC, RU, VU en\
\ Nationaal Archief."
published_at: '2018-06-12T15:02:12Z'
duration: PT2M10S
definition: hd
@ -1200,8 +1120,7 @@ youtube_enrichment:
- video_id: 0ttleZrDRW4
video_url: https://www.youtube.com/watch?v=0ttleZrDRW4
title: Tony Barr An Easter Carol
description: Track 8 of You Are for Me. The liturgical music of Tony Barr. A Biblical
journey (2006)
description: Track 8 of You Are for Me. The liturgical music of Tony Barr. A Biblical journey (2006)
published_at: '2016-03-30T14:50:21Z'
duration: PT2M50S
definition: hd
@ -1220,9 +1139,8 @@ youtube_enrichment:
- video_id: Dbj2lcRXVCk
video_url: https://www.youtube.com/watch?v=Dbj2lcRXVCk
title: De geesel gods, een zegen?
description: 'Korte documentaire van het Katholiek Documentatie Centrum over de
effecten van de Eerste Wereldoorlog op katholieken in Nederland. Met bijdragen
van Paul Luykx, Annelies van Heijst, Fred van Iersel en Vefie Poels. Interviews,
description: 'Korte documentaire van het Katholiek Documentatie Centrum over de effecten van de Eerste Wereldoorlog op
katholieken in Nederland. Met bijdragen van Paul Luykx, Annelies van Heijst, Fred van Iersel en Vefie Poels. Interviews,
redactie en montage: Ramses Peters'
published_at: '2015-01-29T21:59:44Z'
duration: PT19M38S
@ -1343,28 +1261,26 @@ youtube_enrichment:
title: zoeken in audiovisuele collectie kdc
description: '1. ga naar de website www.ru.nl/kdc.
2. ga naar ''Totale KDC-collectie (http://kdc-app.hosting.kun.nl/adlib-opac.html)''
en daarna in het rolmenu naar ''Kath. Leven in Beeld en geluid''
2. ga naar ''Totale KDC-collectie (http://kdc-app.hosting.kun.nl/adlib-opac.html)'' en daarna in het rolmenu naar ''Kath.
Leven in Beeld en geluid''
3. Als u verwacht veel materiaal te vinden, wijzigt u onderaan de pagina in
het rolmenu ''records per pagina'' de 50 in 500.
3. Als u verwacht veel materiaal te vinden, wijzigt u onderaan de pagina in het rolmenu ''records per pagina'' de 50
in 500.
4. vul in het veld ''vrije tekst'' een zoekterm in, bijv. ''Vaticanum'' en klik
op ''zoeken''. Het systeem vindt dan 299 documenten.
4. vul in het veld ''vrije tekst'' een zoekterm in, bijv. ''Vaticanum'' en klik op ''zoeken''. Het systeem vindt dan
299 documenten.
5. om de beschrijvingen en de beelddocumenten nader te bekijken klikt u onderaan
de pagina op ''markering wisselen'', daarna op ''details''. U krijgt dan de
eerste vijftig (of vijfhonderd) items te zien.
5. om de beschrijvingen en de beelddocumenten nader te bekijken klikt u onderaan de pagina op ''markering wisselen'',
daarna op ''details''. U krijgt dan de eerste vijftig (of vijfhonderd) items te zien.
5. om de volgende 50 (of 500) documenten te bekijken gaat u terug naar het vorige
scherm, u klikt onderaan op ''volgende pagina'' en u herhaalt de handelingen
zoals beschreven onder punt 4.
5. om de volgende 50 (of 500) documenten te bekijken gaat u terug naar het vorige scherm, u klikt onderaan op ''volgende
pagina'' en u herhaalt de handelingen zoals beschreven onder punt 4.
6. om met een nieuw trefwoord te zoeken klikt u onderaan op ''opnieuw zoeken''.
U kunt op de website onder "Diensten"/"Producten bestellen" (http://www.ru.nl/kdc/diensten/producten_bestellen/)
met behulp van het afbeeldingsnummer een scan van de gekozen afbeelding aanvragen.'
U kunt op de website onder "Diensten"/"Producten bestellen" (http://www.ru.nl/kdc/diensten/producten_bestellen/) met
behulp van het afbeeldingsnummer een scan van de gekozen afbeelding aanvragen.'
published_at: '2012-07-05T08:03:58Z'
duration: PT50S
definition: hd
@ -1411,9 +1327,8 @@ digital_platforms:
platform_type: WEBSITE
platform_category:
- Organizational website
digital_collections: heritage institution part of the University Library of the
Radboud University in Nijmegen specialized in the social aspects of Dutch Catholicism
since the nineteenth century
digital_collections: heritage institution part of the University Library of the Radboud University in Nijmegen specialized
in the social aspects of Dutch Catholicism since the nineteenth century
technology_stack: Standard web technology
data_standards:
- HTML5
@ -1433,11 +1348,9 @@ 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
@ -1445,9 +1358,8 @@ 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
@ -1456,11 +1368,9 @@ 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
@ -1468,9 +1378,8 @@ 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
@ -1479,9 +1388,8 @@ unesco_ich_enrichment:
inscription_year: 2017
multinational: false
url: https://ich.unesco.org/en/RL/craft-of-the-miller-operating-windmills-and-watermills-01265
description: The craft of the miller operating windmills and watermills involves
the knowledge and skills necessary to operate a mill and maintain it in a good
state of repair. With a declining number of people earning their livelihood
description: The craft of the miller operating windmills and watermills involves the knowledge and skills necessary to
operate a mill and maintain it in a good state of repair. With a declining number of people earning their livelihood
from the craft, millers today also play a key role in transmitting the cultur...
timespan:
begin_of_the_begin: '1969-01-01T00:00:00Z'
@ -1563,9 +1471,8 @@ digital_platform_v2:
platform_name: Katholiek Documentatie Centrum Website
platform_url: https://www.ru.nl/kdc/
platform_type: DISCOVERY_PORTAL
description: Het Katholiek Documentatie Centrum bewaart, ordent en ontsluit archieven,
boeken, brochures, tijdschriften, beeld- en geluidsmateriaal dat afkomstig is
van katholieke personen en instellingen in Nederland.
description: Het Katholiek Documentatie Centrum bewaart, ordent en ontsluit archieven, boeken, brochures, tijdschriften,
beeld- en geluidsmateriaal dat afkomstig is van katholieke personen en instellingen in Nederland.
language: nl
og_image: null
favicon: https://www.ru.nl/apple-touch-icon.png
@ -1710,3 +1617,21 @@ logo_enrichment:
has_favicon: true
has_og_image: true
favicon_count: 6
mission_statement:
- statement_id: https://nde.nl/ontology/hc/mission/nl-ge-nij-a-kdc/mission-2026
statement_type: mission
statement_text: De Radboud Universiteit wil bijdragen aan een gezonde, vrije wereld met gelijke kansen voor iedereen en
zowel regionaal als internationaal van betekenis zijn.
statement_language: nl
extracted_verbatim: true
source_url: https://www.ru.nl/over-ons
content_hash: sha256-sci72s274+0aX2nAJE/ay40vcOHbf3DrVhYH8vEdvx8=
provenance:
statement_created_at: '2026-01-04T15:59:49.288162+00:00'
source_archived_at: '2026-01-04T15:59:23.849815+00:00'
retrieval_agent: linkup-api
extraction_agent: zai-glm/glm-4.7
extraction_confidence: 0.9
prov:wasDerivedFrom: https://www.ru.nl/over-ons
prov:generatedAtTime: '2026-01-04T15:59:49.288162+00:00'
source_section: Missie en Strategie

View file

@ -54,8 +54,7 @@ wikidata_enrichment:
de: Museum in den Niederlanden
ar: متحف في نايميخن، هولندا
pt: Museu em Nimegue, Países Baixos
wikidata_description_en: childrens orphanage museum in Neerbosch, Nijmegen, the
Netherlands
wikidata_description_en: childrens orphanage museum in Neerbosch, Nijmegen, the Netherlands
wikidata_aliases:
nl:
- Ds. G. Boer Stichting
@ -71,8 +70,8 @@ wikidata_enrichment:
instance_of: &id001
- id: Q33506
label: museum
description: institution that holds artifacts and other objects of scientific,
artistic, cultural, historical, or other importance
description: institution that holds artifacts and other objects of scientific, artistic, cultural, historical, or other
importance
wikidata_instance_of: *id001
wikidata_location:
country: &id002
@ -343,18 +342,16 @@ google_maps_enrichment:
author_uri: https://www.google.com/maps/contrib/102516449782973771604/reviews
rating: 5
relative_time_description: een maand geleden
text: De geschiedenis van 20.000 kinderen in een gebouw. Een belangrijk stuk geschiedenis
dat niet vergeten mag worden! Zeker te bezoeken waard!
text: De geschiedenis van 20.000 kinderen in een gebouw. Een belangrijk stuk geschiedenis dat niet vergeten mag worden!
Zeker te bezoeken waard!
publish_time: '2025-10-28T17:39:37.458907331Z'
- author_name: R M
author_uri: https://www.google.com/maps/contrib/100171836904144255202/reviews
rating: 5
relative_time_description: 8 maanden geleden
text: Museum in mooie oude kapel op het terrein van voormalig Kinderdorp Neerbosch.
Geschiedenis van het vroegere huis voor weeskinderen wordt op respectvolle manier
verteld, ondersteund met vele fotos, filmpjes, gebruiksvoorwerpen etc. Moeite
waard om te bezoeken! Geheel toegankelijk voor rolstoelgebruikers. Opritten
naar hoofdingang, lift in kapel aanwezig!
text: Museum in mooie oude kapel op het terrein van voormalig Kinderdorp Neerbosch. Geschiedenis van het vroegere huis
voor weeskinderen wordt op respectvolle manier verteld, ondersteund met vele fotos, filmpjes, gebruiksvoorwerpen etc.
Moeite waard om te bezoeken! Geheel toegankelijk voor rolstoelgebruikers. Opritten naar hoofdingang, lift in kapel aanwezig!
publish_time: '2025-04-01T13:58:45.711481Z'
- author_name: Erik Sprokkereef
author_uri: https://www.google.com/maps/contrib/111819270756639336885/reviews
@ -366,8 +363,7 @@ google_maps_enrichment:
author_uri: https://www.google.com/maps/contrib/109743580003813190115/reviews
rating: 4
relative_time_description: 2 maanden geleden
text: Interessante omgeving en plaats om te wandelen en wat van de geschiedenis
te leren
text: Interessante omgeving en plaats om te wandelen en wat van de geschiedenis te leren
publish_time: '2025-09-14T18:10:34.800230344Z'
- author_name: Rensco Wees
author_uri: https://www.google.com/maps/contrib/116372191213505972968/reviews
@ -425,9 +421,8 @@ digital_platform_v2:
platform_name: Museum Kinderdorp Neerbosch Nijmegen Website
platform_url: https://museumkinderdorpneerbosch.nl/
platform_type: DISCOVERY_PORTAL
description: Museum Kinderdorp Neerbosch in Nijmegen vertelt het verhaal van 20.000
weeskinderen. Een unieke kijk in de opvang van wezen en de ontwikkeling van
de jeugdzorg in Nederland vanaf 1863.
description: Museum Kinderdorp Neerbosch in Nijmegen vertelt het verhaal van 20.000 weeskinderen. Een unieke kijk in de
opvang van wezen en de ontwikkeling van de jeugdzorg in Nederland vanaf 1863.
language: nl
og_image: https://museumkinderdorpneerbosch.nl/wp-content/uploads/2017/12/WordVriendBeeld.jpg
favicon: https://museumkinderdorpneerbosch.nl/wp-content/uploads/2024/06/cropped-KinderdorpNeerboschFavicon_WEB-32x32.png
@ -511,3 +506,24 @@ logo_enrichment:
has_favicon: true
has_og_image: true
favicon_count: 3
mission_statement:
- statement_id: https://nde.nl/ontology/hc/mission/nl-ge-nij-m-mkn/mission-2026
statement_type: mission
statement_text: Museum Kinderdorp Neerbosch vertelt het verhaal van Kinderdorp Neerbosch van 1863 tot 2000. Het is een plek
van inspiratie, reflectie, waar men kennis kan maken met de levende sociale geschiedenis. Het verhaal kent vele dimensies
en sluit aan bij actuele en universele themas als veerkracht, verdriet, vallen en opstaan en optimisme. Het museum stelt
zich daarbij continu de vraag hoe jongeren opgroeien en hun identiteit ontwikkelen, ook in moeilijke omstandigheden. Op
deze weg werken we in ons programma samen met jeugdzorg, onderwijs, wetenschap en de erfgoedsector.
statement_language: nl
extracted_verbatim: true
source_url: https://museumkinderdorpneerbosch.nl/organisatie
content_hash: sha256-POKF/5zC2qThMytFp6T9f5V0br8rLbTv1WGkBkrNc6I=
provenance:
statement_created_at: '2026-01-04T15:55:27.203149+00:00'
source_archived_at: '2026-01-04T15:54:29.172769+00:00'
retrieval_agent: linkup-api
extraction_agent: zai-glm/glm-4.7
extraction_confidence: 1.0
prov:wasDerivedFrom: https://museumkinderdorpneerbosch.nl/organisatie
prov:generatedAtTime: '2026-01-04T15:55:27.203149+00:00'
source_section: Onze missie

View file

@ -243,8 +243,7 @@ wikidata_enrichment:
description: outdoor garden dedicated to the presentation of sculptures
- id: Q207694
label: art museum
description: building or space for the exhibition of art (for institution, use
Q3196771)
description: building or space for the exhibition of art (for institution, use Q3196771)
- id: Q17431399
label: national museum
description: museum maintained by a national authority
@ -253,8 +252,8 @@ wikidata_enrichment:
description: organization that works for the preservation or promotion of culture
- id: Q33506
label: museum
description: institution that holds artifacts and other objects of scientific,
artistic, cultural, historical, or other importance
description: institution that holds artifacts and other objects of scientific, artistic, cultural, historical, or other
importance
heritage_designation:
- id: Q916333
label: Rijksmonument
@ -291,8 +290,7 @@ wikidata_enrichment:
part_of:
id: Q18776166
label: Kröller Müller Museum complex
description: building complex that houses the Kröller Müller Museum, Otterlo,
the Netherlands
description: building complex that houses the Kröller Müller Museum, Otterlo, the Netherlands
member_of:
- id: Q69725772
label: Gelderland heritage
@ -618,12 +616,10 @@ google_maps_enrichment:
author_uri: https://www.google.com/maps/contrib/107380138199682628714/reviews
rating: 4
relative_time_description: 2 weken geleden
text: 'Een prachtig museum op een mooie locatie. Wij zijn via Hoenderloo het nationaal
park ingereden, de auto geparkeerd. Er staan overal witte fietsen. Die kun je
gebruiken, want het is dan nog 5 km naar het museum. Daar zijn vooral werken
uit de 20 e eeuw en hedendaagse kunst te bewonderen. Er hangen veel schilderijen
van Vincent van Goch. We hadden zonnig weer en in de beeldentuin zorgden de herfstbladeren
voor een kleurijke omlijsting van prachtige beelden.
text: 'Een prachtig museum op een mooie locatie. Wij zijn via Hoenderloo het nationaal park ingereden, de auto geparkeerd.
Er staan overal witte fietsen. Die kun je gebruiken, want het is dan nog 5 km naar het museum. Daar zijn vooral werken
uit de 20 e eeuw en hedendaagse kunst te bewonderen. Er hangen veel schilderijen van Vincent van Goch. We hadden zonnig
weer en in de beeldentuin zorgden de herfstbladeren voor een kleurijke omlijsting van prachtige beelden.
Het museum is zeker een bezoek waard.'
publish_time: '2025-11-10T17:02:28.490383737Z'
@ -631,36 +627,32 @@ google_maps_enrichment:
author_uri: https://www.google.com/maps/contrib/117142672713478125951/reviews
rating: 5
relative_time_description: 2 weken geleden
text: Prachtige stukken, grote collectie van van Gogh, overzichtelijke ruimtes.
Zowel binnen als buiten genoeg te bewonderen. Prima garderobe. Toiletten netjes.
Restaurant sfeerloos en het eten is matig. Maar een kunstliefhebber kan hier
zijn hart zeker ophalen!
text: Prachtige stukken, grote collectie van van Gogh, overzichtelijke ruimtes. Zowel binnen als buiten genoeg te bewonderen.
Prima garderobe. Toiletten netjes. Restaurant sfeerloos en het eten is matig. Maar een kunstliefhebber kan hier zijn
hart zeker ophalen!
publish_time: '2025-11-07T16:39:19.974616373Z'
- author_name: Marian Koops
author_uri: https://www.google.com/maps/contrib/114842660989292324501/reviews
rating: 3
relative_time_description: 2 maanden geleden
text: 'Allereerst: ze mogen wel wat duidelijker zijn over de verschillende opties:
Hoe het werkt met parkeren (moet je weer apart betalen) en je betaalt voor de
toegang tot het park, terwijl wij alleen maar op de fiets naar het museum reden,
(vanaf de parkeerplaats)
text: 'Allereerst: ze mogen wel wat duidelijker zijn over de verschillende opties: Hoe het werkt met parkeren (moet je
weer apart betalen) en je betaalt voor de toegang tot het park, terwijl wij alleen maar op de fiets naar het museum
reden, (vanaf de parkeerplaats)
Het museum zelf vond ik als gebouw niet erg aantrekkelijk, beetje naargeestig
zelfs (lijkt op een aula van een begraafplaats) ook was het best druk!
Het museum zelf vond ik als gebouw niet erg aantrekkelijk, beetje naargeestig zelfs (lijkt op een aula van een begraafplaats)
ook was het best druk!
Vond vooral de schilderijen van Van Gogh erg mooi om te zien, en het was wel
fijn om even naar buiten te kunnen in de beeldentuin.'
Vond vooral de schilderijen van Van Gogh erg mooi om te zien, en het was wel fijn om even naar buiten te kunnen in de
beeldentuin.'
publish_time: '2025-09-11T09:07:52.490394133Z'
- author_name: Fried
author_uri: https://www.google.com/maps/contrib/101330863088319646935/reviews
rating: 5
relative_time_description: 3 maanden geleden
text: 'Mooie museum, met de voor die tijd de typische bouwstijl binnen in de zaal
en het restaurant.
text: 'Mooie museum, met de voor die tijd de typische bouwstijl binnen in de zaal en het restaurant.
In de tentoonstelling over Charley Toorop, zie je de invloed van vader en Van
Gogh in haar ontwikkeling mooi terug komen. Leuk om dan aansluitend in de vaste
opstelling over Van Gogh dit zelf terug te zien ...
In de tentoonstelling over Charley Toorop, zie je de invloed van vader en Van Gogh in haar ontwikkeling mooi terug komen.
Leuk om dan aansluitend in de vaste opstelling over Van Gogh dit zelf terug te zien ...
Aansluitend nog in het beeldenpark interessante objecten gezien.
@ -674,20 +666,18 @@ google_maps_enrichment:
(b)lijkt t niet nodig bij de toegang !
De toegang in het Park met invalideparkeerkaart, maar bij de ingang gekocht
... Hiervoor zijn er te weinig geschikte parkeerplaatsen beschikbaar.'
De toegang in het Park met invalideparkeerkaart, maar bij de ingang gekocht ... Hiervoor zijn er te weinig geschikte parkeerplaatsen
beschikbaar.'
publish_time: '2025-08-06T17:58:42.504710334Z'
- author_name: Ronald Bos
author_uri: https://www.google.com/maps/contrib/114903730778284185774/reviews
rating: 5
relative_time_description: 2 maanden geleden
text: Dit is het mooiste museum van NL. De ligging in het Nationale park De Hoge
Veluwe, het prachtige gebouw dat door de bescheiden vormgeving alle aandacht
geeft aan de kunstobjecten, het beeldenpark en steeds verrassende expos naast
text: Dit is het mooiste museum van NL. De ligging in het Nationale park De Hoge Veluwe, het prachtige gebouw dat door
de bescheiden vormgeving alle aandacht geeft aan de kunstobjecten, het beeldenpark en steeds verrassende expos naast
de geweldige vaste collectie maken dit tot een perfecte beleving.
publish_time: '2025-09-11T19:06:48.831447814Z'
editorial_summary: Kunstmuseum met moderne schilderijen, een aanzienlijke Vincent
van Gogh-collectie en een beeldentuin.
editorial_summary: Kunstmuseum met moderne schilderijen, een aanzienlijke Vincent van Gogh-collectie en een beeldentuin.
photo_urls:
- https://places.googleapis.com/v1/places/ChIJ59IECAaxx0cRXiACiCogHF8/photos/AWn5SU79owISONcAOCXxhcis9tjvxTDevkbp-Jo4VuMVQmkoQGWNRpHipYMAeNxb2tbE9iP_vc2kUQ4bF2ctbSWxUAllQvMyc4yERbo5CBKz97vGT8im_VcpsInDAOHCBJk2hO6TMiapeyDVMx06Fh9e9XWybMPvXawO4bRqgi6UQhAVSPPQXZsu_wIWDGA6jBT7arNHusfEAuLamd50_1uxXvlu2qG9wMoa3JMvC2M7ovac-MFt6ymTTxpyEl0x8lyOofGlbINU8dTxAfloJkA3K8TXHh-rsfmJTtQuvoooMfJncZOXJlikoByjUzm9f5MZR6rHZaTAlqJ5ZM0XNy-gfuGsjie2j3Mcyv5RObcP8YhJHsSEUrN-8jHvam0ZF2Nca0otLo77alPNgPKiAUWnaMPnNNB2PjqVEzqd8zCNYA8qvLk/media?maxWidthPx=800&key=AIzaSyAHuazNth9ZvfRFYk5-v49CwXwhABH8Ri0
- https://places.googleapis.com/v1/places/ChIJ59IECAaxx0cRXiACiCogHF8/photos/AWn5SU7Sy1t_ILNWbIJ7ydcbs-FTas1HokOHuMVBgoMxU3SmWd4AfYmYvdPXK8_Wa5LdevIlUzM_eqab7fn_3una8IMg1EC01ihUD3ztfv03gjaswAyobxOuFjyxIxYPj_RHgkzFRg_oNlcofGR99IeSE5zIfjzvbJZK1cVaYTVVPI2qJCKkFWL5vtDLE92g1vPddDG2UxIZVacKXkRVXuTXLbx2In1EoqeiB0-elZF4ZRO1hpUx8P2Str2zQfi2Jy6jtaGyCejkZWHTI9Gfzwedc7_QE9sr9D3QNx8wSsweuJps8PT_Dv6kAV3yP3mipFeh8LUULMU-_CePmXAq_O1tHWSElHSz32q_Qsxph3eQytettikEMYhsWmrOhnZYXq89vGnShJI1DP8ukO7FubkZhuYD8i3nW7VWj5BMx4_qqqaWzR19/media?maxWidthPx=800&key=AIzaSyAHuazNth9ZvfRFYk5-v49CwXwhABH8Ri0
@ -736,8 +726,7 @@ google_maps_enrichment:
icon_background_color: '#13B5C7'
utc_offset_minutes: 60
google_maps_status: SUCCESS
google_maps_search_query: Stichting Kröller-Müller Museum, Houtkampweg 6, Otterlo,
Netherlands
google_maps_search_query: Stichting Kröller-Müller Museum, Houtkampweg 6, Otterlo, Netherlands
web_enrichment:
web_archives:
- url: http://www.kmm.nl
@ -889,13 +878,11 @@ 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_ich_enrichment:
country_code: NL
total_elements_in_country: 5
@ -908,11 +895,9 @@ 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
@ -920,9 +905,8 @@ 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
@ -931,11 +915,9 @@ 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
@ -943,9 +925,8 @@ 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
@ -954,9 +935,8 @@ unesco_ich_enrichment:
inscription_year: 2017
multinational: false
url: https://ich.unesco.org/en/RL/craft-of-the-miller-operating-windmills-and-watermills-01265
description: The craft of the miller operating windmills and watermills involves
the knowledge and skills necessary to operate a mill and maintain it in a good
state of repair. With a declining number of people earning their livelihood
description: The craft of the miller operating windmills and watermills involves the knowledge and skills necessary to
operate a mill and maintain it in a good state of repair. With a declining number of people earning their livelihood
from the craft, millers today also play a key role in transmitting the cultur...
timespan:
begin_of_the_begin: '1938-07-13T00:00:00Z'
@ -1003,8 +983,8 @@ digital_platform_v2:
platform_name: Kröller-Müller Museum | Unieke combinatie van kunst en natuur Website
platform_url: https://krollermuller.nl/?utm_source=google&utm_medium=googlebedrijfsprofiel
platform_type: DISCOVERY_PORTAL
description: Bewonder de unieke collectie van het Kröller-Müller Museum met topstukken
van beroemde meesters, zoals Van Gogh en Mondriaan. Kom ook naar het museum!
description: Bewonder de unieke collectie van het Kröller-Müller Museum met topstukken van beroemde meesters, zoals Van
Gogh en Mondriaan. Kom ook naar het museum!
language: nl
og_image: null
favicon: https://krollermuller.nl/apple-touch-icon.png
@ -1165,8 +1145,7 @@ person_observations:
retrieval_agent: linkedin_html_parser
- person_id: kroller-muller-museum_staff_0012_aukje_vergeest
person_name: Aukje Vergeest
role_title: Freelance schrijver, redacteur, onderzoeker, educator voor musea en
culturele instellingen
role_title: Freelance schrijver, redacteur, onderzoeker, educator voor musea en culturele instellingen
heritage_relevant: true
heritage_type: M
current: true
@ -1226,8 +1205,7 @@ person_observations:
retrieval_agent: linkedin_html_parser
- person_id: kroller-muller-museum_staff_0018_bente_sovee_faaij
person_name: Bente Sovée Faaij
role_title: Kunsthistoricus | Student Research Master (Art & Visual Culture) |
Rondleider
role_title: Kunsthistoricus | Student Research Master (Art & Visual Culture) | Rondleider
heritage_relevant: true
heritage_type: R
current: true
@ -1277,8 +1255,7 @@ person_observations:
retrieval_agent: linkedin_html_parser
- person_id: kroller-muller-museum_staff_0023_susanne_kensche
person_name: Susanne Kensche
role_title: Conservator/Restorer of Modern Art and Sculpture at Kröller-Müller
Museum
role_title: Conservator/Restorer of Modern Art and Sculpture at Kröller-Müller Museum
heritage_relevant: true
heritage_type: M
current: true
@ -1288,8 +1265,7 @@ person_observations:
retrieval_agent: linkedin_html_parser
- person_id: kroller-muller-museum_staff_0024_claire_joskin
person_name: Claire Joskin
role_title: Kröller-Müller Museum - Online marketeer I MA Nederland-Duitsland
Studies
role_title: Kröller-Müller Museum - Online marketeer I MA Nederland-Duitsland Studies
heritage_relevant: true
heritage_type: M
current: true
@ -1399,9 +1375,8 @@ person_observations:
retrieval_agent: linkedin_html_parser
- person_id: kroller-muller-museum_staff_0035_julie_van_loon
person_name: Julie van Loon
role_title: Curator in Training at Kröller-Müller Museum | REMA Modern History
| MA Student Art History and Curatorial Studies | BA Art History | BA European
Politics & Society |
role_title: Curator in Training at Kröller-Müller Museum | REMA Modern History | MA Student Art History and Curatorial
Studies | BA Art History | BA European Politics & Society |
heritage_relevant: true
heritage_type: M
current: true
@ -1521,8 +1496,7 @@ person_observations:
retrieval_agent: linkedin_html_parser
- person_id: kroller-muller-museum_staff_0047_sjaco_manuputty
person_name: Sjaco Manuputty
role_title: Medewerker Technische Dienst Installaties en Gebouwen bij Kröller-Müller
Museum
role_title: Medewerker Technische Dienst Installaties en Gebouwen bij Kröller-Müller Museum
heritage_relevant: true
heritage_type: M
current: true
@ -1542,8 +1516,8 @@ person_observations:
retrieval_agent: linkedin_html_parser
- person_id: kroller-muller-museum_staff_0049_miranda_leeuwis
person_name: Miranda Leeuwis
role_title: Rondleider Kröller-Müller Museum/ freelance Museumdocent Mondriaanhuis
Amersfoort/ bestuurslid EMB NL/ startbekwaam kinderfilosoof
role_title: Rondleider Kröller-Müller Museum/ freelance Museumdocent Mondriaanhuis Amersfoort/ bestuurslid EMB NL/ startbekwaam
kinderfilosoof
heritage_relevant: true
heritage_type: M
current: true
@ -1593,9 +1567,8 @@ person_observations:
retrieval_agent: linkedin_html_parser
- person_id: kroller-muller-museum_staff_0054_amelie_japke
person_name: Amelie Japke
role_title: Bachelor from University of West London in Music and Event Management
| Third year Bachelor of Communication student at HAN | Intern at the Kröller-Müller
Museum
role_title: Bachelor from University of West London in Music and Event Management | Third year Bachelor of Communication
student at HAN | Intern at the Kröller-Müller Museum
heritage_relevant: true
heritage_type: M
current: true
@ -1775,9 +1748,8 @@ person_observations:
retrieval_agent: linkedin_html_parser
- person_id: kroller-muller-museum_staff_0072_bram_derix
person_name: » Bram Derix
role_title: Webmaster & Multimedia Coördinator bij Kröller-Müller Museum + Pitstop
voor Ondernemers > Creatief Strategische meedenkburo helpt ondernemers met conceptversterking
en organisatiesoftware
role_title: Webmaster & Multimedia Coördinator bij Kröller-Müller Museum + Pitstop voor Ondernemers > Creatief Strategische
meedenkburo helpt ondernemers met conceptversterking en organisatiesoftware
heritage_relevant: true
heritage_type: M
current: true
@ -1827,8 +1799,7 @@ person_observations:
retrieval_agent: linkedin_html_parser
- person_id: kroller-muller-museum_staff_0077_peter_schilder
person_name: Peter Schilder
role_title: Zeer ervaren en veelzijdige Financial/Manager, die verder kijkt dan
Finance.
role_title: Zeer ervaren en veelzijdige Financial/Manager, die verder kijkt dan Finance.
heritage_relevant: false
heritage_type: null
current: true
@ -1878,8 +1849,7 @@ person_observations:
retrieval_agent: linkedin_html_parser
- person_id: kroller-muller-museum_staff_0082_chantal_zoutman_balk
person_name: Chantal Zoutman-Balk
role_title: Event coördinatie/organisatie | Productie leiding/ondersteuning |
Begeleiding | Eventservice | Artist en Publieksbegeleiding
role_title: Event coördinatie/organisatie | Productie leiding/ondersteuning | Begeleiding | Eventservice | Artist en Publieksbegeleiding
heritage_relevant: false
heritage_type: null
current: true
@ -1889,8 +1859,7 @@ person_observations:
retrieval_agent: linkedin_html_parser
- person_id: kroller-muller-museum_staff_0083_arno_van_loenen
person_name: Arno van Loenen
role_title: beveiliger, coördinator bedrijfsbrandweer/bhv, secretaris personeelsvereniging
en brandweerman
role_title: beveiliger, coördinator bedrijfsbrandweer/bhv, secretaris personeelsvereniging en brandweerman
heritage_relevant: true
heritage_type: S
current: true
@ -2110,8 +2079,8 @@ person_observations:
retrieval_agent: linkedin_html_parser
- person_id: kroller-muller-museum_staff_0105_simone_derksen
person_name: Simone Derksen
role_title: Owner LIMOONWORKS | Sr. projectmanager | Huisvesting | Project management
| Facility Management | Advies | Maakt werk van mens en plek
role_title: Owner LIMOONWORKS | Sr. projectmanager | Huisvesting | Project management | Facility Management | Advies |
Maakt werk van mens en plek
heritage_relevant: true
heritage_type: R
current: true
@ -2121,8 +2090,7 @@ person_observations:
retrieval_agent: linkedin_html_parser
- person_id: kroller-muller-museum_staff_0106_marjan_reitsma
person_name: Marjan Reitsma
role_title: Head of Marketing & Development at Kröller-Müller Museum | ex Gazelle,
Auping, Quality Lodgings, Altrex
role_title: Head of Marketing & Development at Kröller-Müller Museum | ex Gazelle, Auping, Quality Lodgings, Altrex
heritage_relevant: false
heritage_type: null
current: true
@ -2192,8 +2160,8 @@ person_observations:
retrieval_agent: linkedin_html_parser
- person_id: kroller-muller-museum_staff_0113_menno_van_der_valk
person_name: Menno van der Valk
role_title: Du Faucon Consultancy | Public-private development | Governance strategy
& stakeholder alignment | Boardroom sensitivity
role_title: Du Faucon Consultancy | Public-private development | Governance strategy & stakeholder alignment | Boardroom
sensitivity
heritage_relevant: false
heritage_type: null
current: true
@ -2371,8 +2339,7 @@ linkedin_enrichment:
headline: Head Security at Kröller-Müller Museum
heritage_type: M
- name: Sjaco Manuputty
headline: Medewerker Technische Dienst Installaties en Gebouwen bij Kröller-Müller
Museum
headline: Medewerker Technische Dienst Installaties en Gebouwen bij Kröller-Müller Museum
linkedin_url: https://www.linkedin.com/in/sjacomanuputty
heritage_type: M
- name: Rina Leenstra
@ -2384,9 +2351,8 @@ linkedin_enrichment:
linkedin_url: https://www.linkedin.com/in/jeannette-westerbeek-pothoven
heritage_type: M
- name: Amelie Japke
headline: Bachelor from University of West London in Music and Event Management
| Third year Bachelor of Communication student at HAN | Intern at the Kröller-Müller
Museum
headline: Bachelor from University of West London in Music and Event Management | Third year Bachelor of Communication
student at HAN | Intern at the Kröller-Müller Museum
linkedin_url: https://www.linkedin.com/in/amelie-japke-b1a774181
heritage_type: M
- name: David van Loon
@ -2571,3 +2537,21 @@ logo_enrichment:
has_favicon: true
has_og_image: false
favicon_count: 4
mission_statement:
- statement_id: https://nde.nl/ontology/hc/mission/nl-ge-ott-m-kmm/mission-2026
statement_type: mission
statement_text: Als internationaal toonaangevend museum wil het Kröller-Müller Museum zijn gasten optimaal laten genieten
van de wereldberoemde collectie.
statement_language: nl
extracted_verbatim: true
source_url: https://krollermuller.nl/organisatie
content_hash: sha256-Az1K6esbUW0gZSAep6RnlxOgoBpj61ahfuEFO+qGqfw=
provenance:
statement_created_at: '2026-01-04T15:55:04.558948+00:00'
source_archived_at: '2026-01-04T15:54:47.218506+00:00'
retrieval_agent: linkup-api
extraction_agent: zai-glm/glm-4.7
extraction_confidence: 0.85
prov:wasDerivedFrom: https://krollermuller.nl/organisatie
prov:generatedAtTime: '2026-01-04T15:55:04.558948+00:00'
source_section: Organisatie

View file

@ -354,40 +354,33 @@ google_maps_enrichment:
author_uri: https://www.google.com/maps/contrib/111422923315791291120/reviews
rating: 3
relative_time_description: 2 maanden geleden
text: Zo tussen de rivieren Waal en de Maas ligt het slot Loevestein op een hele
mooie plek. Vanaf de grote parkeerplaats is het een mooie wandeling waar je
het slot en de muren er omheen al mooi kan bekijken. Eenmaal achter de muren
heb je een mooie straat waarin je binnenkomt. Het slot is zelf een mooi gebouw
waarin je kan rondlopen, maar wat wel jammer is dat er te weinig informatie
over het slot zelf te zien is. Het zou mooi zijn als er wat meer ingerichte
ruimtes de geschiedenis van het slot zouden laten zien. Ook vinden we dat, toen
we er waren, er een te groot deel van het buitenterrein afgezet is, voor de
kleine groep schapen die er rondlopen, zodat je niet overal kan rondlopen om
bijvoorbeeld het natuurgebied ernaast in te kijken.
text: Zo tussen de rivieren Waal en de Maas ligt het slot Loevestein op een hele mooie plek. Vanaf de grote parkeerplaats
is het een mooie wandeling waar je het slot en de muren er omheen al mooi kan bekijken. Eenmaal achter de muren heb
je een mooie straat waarin je binnenkomt. Het slot is zelf een mooi gebouw waarin je kan rondlopen, maar wat wel jammer
is dat er te weinig informatie over het slot zelf te zien is. Het zou mooi zijn als er wat meer ingerichte ruimtes
de geschiedenis van het slot zouden laten zien. Ook vinden we dat, toen we er waren, er een te groot deel van het buitenterrein
afgezet is, voor de kleine groep schapen die er rondlopen, zodat je niet overal kan rondlopen om bijvoorbeeld het natuurgebied
ernaast in te kijken.
publish_time: '2025-09-11T11:49:45.934626796Z'
- author_name: Ronald Verduin
author_uri: https://www.google.com/maps/contrib/105657478799299822304/reviews
rating: 3
relative_time_description: 3 weken geleden
text: Het slot heeft natuurlijk een geweldige historie. Persoonlijk weet ik het
altijd te waarderen als er in ieder geval enkele ruimtes zijn ingericht zoals
destijds. Nu is het natuurlijk een staatsgevangenis geweest dus geen pracht
en praal hier maar dus ook weinig informatie over hoe de gevangen hier geleefd
hebben. In plaats daarvan een tentoonstelling over oorlogsrecht. Zeker toepasselijk
gezien de geschiedenis.
text: Het slot heeft natuurlijk een geweldige historie. Persoonlijk weet ik het altijd te waarderen als er in ieder geval
enkele ruimtes zijn ingericht zoals destijds. Nu is het natuurlijk een staatsgevangenis geweest dus geen pracht en praal
hier maar dus ook weinig informatie over hoe de gevangen hier geleefd hebben. In plaats daarvan een tentoonstelling
over oorlogsrecht. Zeker toepasselijk gezien de geschiedenis.
publish_time: '2025-11-02T15:46:54.325792876Z'
- author_name: Jesse dW
author_uri: https://www.google.com/maps/contrib/107016976130165188874/reviews
rating: 5
relative_time_description: een maand geleden
text: 'Bezocht met 2 kids tijdens het ridder toernooi, dat is een leuk evenement,
daarom dan ook 5 sterren. Zonder evenement ook nog steeds een bezoek waard,
maar dan heb je het wel wat sneller gezien.
text: 'Bezocht met 2 kids tijdens het ridder toernooi, dat is een leuk evenement, daarom dan ook 5 sterren. Zonder evenement
ook nog steeds een bezoek waard, maar dan heb je het wel wat sneller gezien.
Kasteel heeft met Hugo de Groot een uniek verhaal, er zijn ook wat interactieve
dingen te doen voor kinderen, los van het evenement wat er nu was. Kasteel ligt
zeer afgelegen in een zeer fraai natuurgebied waar je doorheen rijdt. Moeite
Kasteel heeft met Hugo de Groot een uniek verhaal, er zijn ook wat interactieve dingen te doen voor kinderen, los van
het evenement wat er nu was. Kasteel ligt zeer afgelegen in een zeer fraai natuurgebied waar je doorheen rijdt. Moeite
waard om daar te wandelen.'
publish_time: '2025-10-28T05:48:09.353024532Z'
- author_name: Wolverine
@ -402,17 +395,16 @@ google_maps_enrichment:
Er is een grote parkeerplaats waar je vanaf daar naar het kasteel wandeld.
Het heeft een groot buitengedeelte met huisjes waarvan een paar ingedeeld zijn
als museum en een paar ingedeeld zijn als lunchroom.
Het heeft een groot buitengedeelte met huisjes waarvan een paar ingedeeld zijn als museum en een paar ingedeeld zijn
als lunchroom.
Het kasteel is binnen veel ruimer als dat je buiten denkt. Er is veel informatie
om te lezen en je kunt verschillende kamers bezichtigen. Ook kun je je wanen
in ridderkleding voor een leuk fotootje.
Het kasteel is binnen veel ruimer als dat je buiten denkt. Er is veel informatie om te lezen en je kunt verschillende
kamers bezichtigen. Ook kun je je wanen in ridderkleding voor een leuk fotootje.
Wij hebben genoten van dit leuke uitje en bezichtiging al zijn sommige binnen
gedeeltes saai t.o.v. andere kastelen die wij bezocht hebben.
Wij hebben genoten van dit leuke uitje en bezichtiging al zijn sommige binnen gedeeltes saai t.o.v. andere kastelen
die wij bezocht hebben.
Zeker de moeite waard!'
@ -421,23 +413,19 @@ google_maps_enrichment:
author_uri: https://www.google.com/maps/contrib/107057135783738716259/reviews
rating: 4
relative_time_description: 2 maanden geleden
text: 'In 2003 bezocht tijdens een fietstocht maar nu met onze kleinzoon met de
auto. Met kortingskaartjes van Tripper want we waren na anderhalf uur weer buiten
de poort.
text: 'In 2003 bezocht tijdens een fietstocht maar nu met onze kleinzoon met de auto. Met kortingskaartjes van Tripper
want we waren na anderhalf uur weer buiten de poort.
Mooi natuurgebied met schaapjes. Meer drukte op de smalle weg doordat de paardjes
hier stonden en een evenement van de KWF gaande was. In het kasteel was hier
niets merkbaar van.
Mooi natuurgebied met schaapjes. Meer drukte op de smalle weg doordat de paardjes hier stonden en een evenement van
de KWF gaande was. In het kasteel was hier niets merkbaar van.
Educatief zelfs voor een kleuter.
Alles netjes onderhouden. Bij de katapult een kindvriendelijke uitleg van een
jonge vrijwilliger.
Alles netjes onderhouden. Bij de katapult een kindvriendelijke uitleg van een jonge vrijwilliger.
Taverne is een gezellige plek met veel vriendelijk personeel.'
publish_time: '2025-09-27T10:33:06.568959277Z'
editorial_summary: Rondleidingen door een versterkte burcht met aarden wallen, een
dubbele gracht en een 18e-eeuws soldatendorp.
editorial_summary: Rondleidingen door een versterkte burcht met aarden wallen, een dubbele gracht en een 18e-eeuws soldatendorp.
photo_urls:
- https://places.googleapis.com/v1/places/ChIJvVwy2SSPxkcRQbNF4At58BM/photos/AWn5SU7PgKpOQVg2Ju9vbWKnbF1aZYPI9DEYuGA6Uuf53_5s9Ft9PPid2FxRA9MSpP61lXma8--Gh1f9NPWw1hcVjWCKP26kG5_0yl4HzUM4b8x61H1tGWD5rUgdhawDvN7jd7Ovf-JLaTx22SXZgCRWAk8E9G2Qs6UekbQjE4afu3YeXND3Puuq1GSjxZs5rgXGTVE3F_BI6eVO46n25lICqccjMuGMRAniDnGa8qxzpSm41_cHBfZO-mCWuRzDS0xjQpfI1tVvKrd-qi09YKzAP9i2TK1UI61auGJj8gpzU-bvHA/media?maxWidthPx=800&key=AIzaSyAHuazNth9ZvfRFYk5-v49CwXwhABH8Ri0
- https://places.googleapis.com/v1/places/ChIJvVwy2SSPxkcRQbNF4At58BM/photos/AWn5SU5UchzWJB284uE0EdfyXu7ubC-o3-nsQes_nFPOWta8ruAMK01_yj6v4KOTWWZ50Awyus56LOJVioK7hLa4O-WnsckVBohGqcBqnIF8nTXuN--w7IyxDJPHmLsB6Hu4BdKE0XGcJ_APR8CIikTasoJR09Wtflg5MaXSY9imPFrat7hSsbDQXxSRZCSErm6CqBnJK6_RNff9Az51yiuqJ0VvCDRcLAjW01hWiJgmoL55LIowlOLMV8iId1iUlX3876tr8Em_84ZYCjcxRJMwPyEsgovBfaUxlXsZK67bFK1u92ceDA4CgdYfha8D3L7MI7qqkQAafLuiEEmEnCssjRuP2H7xOnFLC7ICsL7HgH9sCZeBjyi_MCNIshQ5byssifG1wFcy_F4woFG5uw4Avoi5GYDyQl0xgnFejPz4F7_o5lc/media?maxWidthPx=800&key=AIzaSyAHuazNth9ZvfRFYk5-v49CwXwhABH8Ri0
@ -486,8 +474,7 @@ google_maps_enrichment:
icon_background_color: '#13B5C7'
utc_offset_minutes: 60
google_maps_status: SUCCESS
google_maps_search_query: Stichting Rijksmuseum Slot Loevestein, Loevestein 1, Poederoijen,
Netherlands
google_maps_search_query: Stichting Rijksmuseum Slot Loevestein, Loevestein 1, Poederoijen, Netherlands
web_enrichment:
web_archives:
- url: http://www.slotloevestein.nl/
@ -642,8 +629,7 @@ digital_platforms:
platform_type: WEBSITE
platform_category:
- Organizational website
digital_collections: Rondleidingen door een versterkte burcht met aarden wallen,
een dubbele gracht en een 18e-eeuws soldatendorp.
digital_collections: Rondleidingen door een versterkte burcht met aarden wallen, een dubbele gracht en een 18e-eeuws soldatendorp.
technology_stack: Standard web technology
data_standards:
- HTML5
@ -671,13 +657,11 @@ unesco_enrichment:
lon: 4.649444444
lat: 51.8825
url: https://whc.unesco.org/en/list/818
short_description: The outstanding contribution made by the people of the Netherlands
to the technology of handling water is admirably demonstrated by the installations
in the Kinderdijk-Elshout area. Construction of hydraulic works for the drainage
of land for agriculture and settlement began in the Middle Ages and have continued
uninterruptedly to the present day. The site illustrates all the typical features
associated with this technology dykes, reservoirs, pumping stations, administrative
buildings and a se...
short_description: The outstanding contribution made by the people of the Netherlands to the technology of handling water
is admirably demonstrated by the installations in the Kinderdijk-Elshout area. Construction of hydraulic works for the
drainage of land for agriculture and settlement began in the Middle Ages and have continued uninterruptedly to the present
day. The site illustrates all the typical features associated with this technology dykes, reservoirs, pumping stations,
administrative buildings and a se...
- unesco_id: '965'
uuid: 518092a5-4ae1-572f-982d-1b95cca62e3e
name_en: Rietveld Schröderhuis (Rietveld Schröder House)
@ -694,13 +678,11 @@ 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: '1441'
uuid: 1f4bfdf6-dd3a-5b5e-a3b1-ccf0bbde7550
name_en: Van Nellefabriek
@ -717,12 +699,10 @@ unesco_enrichment:
lon: 4.4325
lat: 51.9244444444
url: https://whc.unesco.org/en/list/1441
short_description: Van Nellefabriek was designed and built in the 1920s on the
banks of a canal in the Spaanse Polder industrial zone north-west of Rotterdam.
The site is one of the icons of 20th-century industrial architecture, comprising
a complex of factories, with façades consisting essentially of steel and glass,
making large-scale use of the curtain wall principle. It was conceived as an
ideal factory, open to the outside world, whose interior working spaces evolved
short_description: Van Nellefabriek was designed and built in the 1920s on the banks of a canal in the Spaanse Polder
industrial zone north-west of Rotterdam. The site is one of the icons of 20th-century industrial architecture, comprising
a complex of factories, with façades consisting essentially of steel and glass, making large-scale use of the curtain
wall principle. It was conceived as an ideal factory, open to the outside world, whose interior working spaces evolved
according to need, and in which daylight...
unesco_ich_enrichment:
country_code: NL
@ -736,11 +716,9 @@ 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
@ -748,9 +726,8 @@ 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
@ -759,11 +736,9 @@ 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
@ -771,9 +746,8 @@ 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
@ -782,9 +756,8 @@ unesco_ich_enrichment:
inscription_year: 2017
multinational: false
url: https://ich.unesco.org/en/RL/craft-of-the-miller-operating-windmills-and-watermills-01265
description: The craft of the miller operating windmills and watermills involves
the knowledge and skills necessary to operate a mill and maintain it in a good
state of repair. With a declining number of people earning their livelihood
description: The craft of the miller operating windmills and watermills involves the knowledge and skills necessary to
operate a mill and maintain it in a good state of repair. With a declining number of people earning their livelihood
from the craft, millers today also play a key role in transmitting the cultur...
timespan:
begin_of_the_begin: '1994-12-31T00:00:00Z'
@ -859,8 +832,8 @@ digital_platform_v2:
platform_name: Slot Loevestein - Slot Loevestein - Rijksmuseum Website
platform_url: https://www.slotloevestein.nl/
platform_type: DISCOVERY_PORTAL
description: 'Rijksmuseum Slot Loevestein - UNESCO Werelderfgoed Nieuwe Hollandse
Waterlinie - Beroemdste gevangene: Hugo de Groot. Ontsnapt in boekenkist.'
description: 'Rijksmuseum Slot Loevestein - UNESCO Werelderfgoed Nieuwe Hollandse Waterlinie - Beroemdste gevangene: Hugo
de Groot. Ontsnapt in boekenkist.'
language: nl
og_image: null
favicon: https://www.slotloevestein.nl/wp-content/uploads/2022/01/cropped-FAVICON__loevestein-1-32x32.png
@ -962,8 +935,8 @@ linkedin_enrichment:
linkedin_url: https://www.linkedin.com/in/quirine-dus%C3%A9e-van-aerts-85b91060
heritage_type: M
- name: Anton Kuijntjes
headline: Creative Director en eigenaar @Dirkdoet en @Fysioeel | Auteur 'Zweet'
| Spreker | Dagvoorzitter | Motivator | Schrijver
headline: Creative Director en eigenaar @Dirkdoet en @Fysioeel | Auteur 'Zweet' | Spreker | Dagvoorzitter | Motivator
| Schrijver
linkedin_url: https://www.linkedin.com/in/antonkuijntjes
- name: Danique Bouman
headline: Masterstudent Cultuurgeschiedenis en Erfgoed
@ -1062,3 +1035,38 @@ logo_enrichment:
has_favicon: true
has_og_image: false
favicon_count: 3
mission_statement:
- statement_id: https://nde.nl/ontology/hc/mission/nl-ge-poe-m-msl/mission-2026
statement_type: mission
statement_text: We willen het erfgoed van Loevestein behouden en beleefbaar maken om bij te dragen aan een vrije en vreedzame
samenleving, waarin we respectvol met elkaar en de wereld omgaan.
statement_language: nl
extracted_verbatim: true
source_url: https://www.slotloevestein.nl/over
content_hash: sha256-Jo056R7HG24qxz1jPRYSZhMOwCpV4ajtIOJ1E0Yll04=
provenance:
statement_created_at: '2026-01-04T14:23:18.475174+00:00'
source_archived_at: '2026-01-04T14:22:43.230112+00:00'
retrieval_agent: linkup-api
extraction_agent: zai-glm/glm-4.7
extraction_confidence: 1.0
prov:wasDerivedFrom: https://www.slotloevestein.nl/over
prov:generatedAtTime: '2026-01-04T14:23:18.475174+00:00'
source_section: Over ons
- statement_id: https://nde.nl/ontology/hc/mission/nl-ge-poe-m-msl/vision-2026
statement_type: vision
statement_text: Vanuit de erfenis van Loevestein duiden we de Nederlandse staat en identiteit, waarbij we aanzetten tot
het nadenken over vrede, vrijheid en het belang van internationaal en persoonlijk recht.
statement_language: nl
extracted_verbatim: true
source_url: https://www.slotloevestein.nl/over
content_hash: sha256-gA/DTmlpmYe3BqCOKErELFXZyOTa8Kg77OYvtF/NkNY=
provenance:
statement_created_at: '2026-01-04T14:23:18.475195+00:00'
source_archived_at: '2026-01-04T14:22:43.230112+00:00'
retrieval_agent: linkup-api
extraction_agent: zai-glm/glm-4.7
extraction_confidence: 1.0
prov:wasDerivedFrom: https://www.slotloevestein.nl/over
prov:generatedAtTime: '2026-01-04T14:23:18.475195+00:00'
source_section: Over ons

File diff suppressed because it is too large Load diff

View file

@ -95,8 +95,7 @@ provenance:
notes:
- Provenance tracking added retroactively
- claim_level_provenance available in sources section
- Removed incorrect wikidata_enrichment on 2025-12-08T08:18:54.156295+00:00. Re-enrichment
required with proper matching.
- Removed incorrect wikidata_enrichment on 2025-12-08T08:18:54.156295+00:00. Re-enrichment required with proper matching.
- Canonical location added via normalize_custodian_files.py on 2025-12-08T23:16:31Z
- Canonical location added via normalize_custodian_files.py on 2025-12-09T07:01:53Z
enrichment_source: KB Netherlands Library Network
@ -330,11 +329,9 @@ 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
@ -342,9 +339,8 @@ 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
@ -353,11 +349,9 @@ 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
@ -365,9 +359,8 @@ 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
@ -376,9 +369,8 @@ 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.1425297
@ -493,16 +485,14 @@ web-enrichments:
layout_score: 0.0
pattern_score: 0.0
final_confidence: 0.95
- entity: LOOP JE LICHTER looptraining bij lichte psychische problemen (gratis,
iedere vrijdag)
- entity: LOOP JE LICHTER looptraining bij lichte psychische problemen (gratis, iedere vrijdag)
entity_type: THG.EVT
xpath: /html/body/main[1]/div[1]/div[2]/div[2]/div[2]/div[2]/div[1]/p[4]/a
base_confidence: 0.95
layout_score: 0.0
pattern_score: 0.0
final_confidence: 0.95
- entity: 'WelKom aan Tafel: gezellig en gezond 2- of 3-gangen diner | elke oneven
week'
- entity: 'WelKom aan Tafel: gezellig en gezond 2- of 3-gangen diner | elke oneven week'
entity_type: THG.EVT
xpath: /html/body/main[1]/div[1]/div[2]/div[2]/div[2]/div[2]/div[1]/p[5]/a
base_confidence: 0.95
@ -585,9 +575,8 @@ timeline_enrichment:
- https://www.inzutphen.nl/nl/locaties/3351872502/bibliotheek-broederenkerk
- https://cultuurbewust.nl/bij-de-bieb-zutphen-in-zutphen/
linkup_query: '"BIJ de bieb / Zutphen" Zutphen opgericht OR gesticht OR sinds'
linkup_answer: De bibliotheek "BIJ de bieb / Zutphen" is sinds 1983 gevestigd
in de Broederenkerk in Zutphen. De Librije, een historische kettingbibliotheek
bij de Walburgiskerk in Zutphen, is gesticht in 1561. De huidige openbare bibliotheek
linkup_answer: De bibliotheek "BIJ de bieb / Zutphen" is sinds 1983 gevestigd in de Broederenkerk in Zutphen. De Librije,
een historische kettingbibliotheek bij de Walburgiskerk in Zutphen, is gesticht in 1561. De huidige openbare bibliotheek
in de Broederenkerk is dus sinds 1983 actief op die locatie.
fetch_timestamp: '2025-12-15T17:53:48.984401+00:00'
archive_path: web/1467/linkup/linkup_founding_20251215T175348Z.json
@ -601,9 +590,8 @@ timeline_enrichment:
description: gevestigd in de Broederenkerk in Zutphen
source_urls: *id001
linkup_query: '"BIJ de bieb / Zutphen" Zutphen opgericht OR gesticht OR sinds'
linkup_answer: De bibliotheek "BIJ de bieb / Zutphen" is sinds 1983 gevestigd
in de Broederenkerk in Zutphen. De Librije, een historische kettingbibliotheek
bij de Walburgiskerk in Zutphen, is gesticht in 1561. De huidige openbare bibliotheek
linkup_answer: De bibliotheek "BIJ de bieb / Zutphen" is sinds 1983 gevestigd in de Broederenkerk in Zutphen. De Librije,
een historische kettingbibliotheek bij de Walburgiskerk in Zutphen, is gesticht in 1561. De huidige openbare bibliotheek
in de Broederenkerk is dus sinds 1983 actief op die locatie.
fetch_timestamp: '2025-12-15T17:53:48.984401+00:00'
archive_path: web/1467/linkup/linkup_founding_20251215T175348Z.json
@ -669,7 +657,6 @@ logo_enrichment:
has_favicon: true
has_og_image: false
favicon_count: 1
wikidata_enrichment:
wikidata_id: Q123299703
wikidata_url: https://www.wikidata.org/wiki/Q123299703
@ -678,3 +665,23 @@ wikidata_enrichment:
enrichment_timestamp: '2025-01-13T00:00:00Z'
enrichment_method: manual_wikidata_lookup
notes: Library organization now branded as "BIJ de Bieb"; originally known as Bibliotheek Berkel & IJssel
mission_statement:
- statement_id: https://nde.nl/ontology/hc/mission/nl-ge-zut-l-bz/mission-2026
statement_type: mission
statement_text: Wij zijn Bibliotheek Berkel & IJssel, kortweg BIJ de bieb. Vanaf 1 januari 2023 de Bibliotheek voor alle
inwoners van de gemeenten Brummen, Lochem, Voorst en Zutphen. Wij zijn er voor iedereen. Je kunt je hele leven lang bij
ons terecht voor je persoonlijke ontwikkeling. Bij onze locaties kun je leren, ontdekken en ontmoeten. Wij zetten ons
in om iedereen kennis te laten maken met taal, digitale vaardigheden, literatuur, cultuur en de maatschappij.
statement_language: nl
extracted_verbatim: true
source_url: https://www.bijdebieb.nl/over-ons
content_hash: sha256-OK0HvJ9rVPsBAeglnX0/FLuQ5stWRYrfBPVl4KZjuiw=
provenance:
statement_created_at: '2026-01-04T15:24:19.244836+00:00'
source_archived_at: '2026-01-04T15:23:57.305344+00:00'
retrieval_agent: linkup-api
extraction_agent: zai-glm/glm-4.7
extraction_confidence: 0.95
prov:wasDerivedFrom: https://www.bijdebieb.nl/over-ons
prov:generatedAtTime: '2026-01-04T15:24:19.244836+00:00'
source_section: Over ons - Missie

View file

@ -49,9 +49,8 @@ wikidata_enrichment:
wikidata_label_de: Museum de Oude Wolden
wikidata_label_fr: Museum de Oude Wolden
wikidata_descriptions:
nl: Museum de Oude Wolden in Bellingwolde toont kunst en cultuurhistorie uit het
Groninger landschap. In een voormalig achterhuis vind je permanente werken van
LodewijkBruckman én wisseltentoonstellingen, vaak rond DePloeg en streekhistorie.
nl: Museum de Oude Wolden in Bellingwolde toont kunst en cultuurhistorie uit het Groninger landschap. In een voormalig
achterhuis vind je permanente werken van LodewijkBruckman én wisseltentoonstellingen, vaak rond DePloeg en streekhistorie.
en: museum in Bellingwolde, the Netherlands
wikidata_description_en: museum in Bellingwolde, the Netherlands
wikidata_aliases:
@ -80,8 +79,8 @@ wikidata_enrichment:
description: museum that covers local history
- id: Q33506
label: museum
description: institution that holds artifacts and other objects of scientific,
artistic, cultural, historical, or other importance
description: institution that holds artifacts and other objects of scientific, artistic, cultural, historical, or other
importance
wikidata_instance_of: *id001
wikidata_location:
coordinates: &id005
@ -111,8 +110,7 @@ wikidata_enrichment:
member_of:
- id: Q110983803
label: Erfgoedpartners Groningen
description: organisatie voor instandhouding en beheer van monumenten en erfgoed
in de provincie Groningen
description: organisatie voor instandhouding en beheer van monumenten en erfgoed in de provincie Groningen
wikidata_web:
official_website: http://www.museumdeoudewolden.nl
described_at_url: https://www.museumkaart.nl/museum/Museum+de+Oude+Wolden.aspx
@ -414,16 +412,14 @@ google_maps_enrichment:
author_uri: https://www.google.com/maps/contrib/109919586164671415236/reviews
rating: 5
relative_time_description: 5 maanden geleden
text: 'Het MOW | Museum Westerwolde in Bellingwolde, Oost Groningen bezocht als
één van de vele deelnemers aan "Westerwolde rijgt".
text: 'Het MOW | Museum Westerwolde in Bellingwolde, Oost Groningen bezocht als één van de vele deelnemers aan "Westerwolde
rijgt".
Mooi, kleinschalig museum wat met name moderne kunst exposeert van kunstenaars
uit Westerwolde en omgeving.
Mooi, kleinschalig museum wat met name moderne kunst exposeert van kunstenaars uit Westerwolde en omgeving.
Het gebouw, de afwisselende sfeervolle ruimtes, in combinatie met het licht
zorgen ervoor dat de kunstwerken goed tot hun recht komen. Daarbij is de gastvrijheid
zeker een pluspunt. Het MOW, wat mij betreft erg de moeite waard om te bezoeken!'
Het gebouw, de afwisselende sfeervolle ruimtes, in combinatie met het licht zorgen ervoor dat de kunstwerken goed tot
hun recht komen. Daarbij is de gastvrijheid zeker een pluspunt. Het MOW, wat mij betreft erg de moeite waard om te bezoeken!'
publish_time: '2025-06-28T20:27:12.812129605Z'
- author_name: Brie de Strandjutter
author_uri: https://www.google.com/maps/contrib/101386181303855861403/reviews
@ -431,15 +427,14 @@ google_maps_enrichment:
relative_time_description: 4 maanden geleden
text: 'Expositie Verdwalen :
Fantastische ontvangst en wat een verrassend mooi museum in Noord Groningen
… mooie rustige tentoonstelling ZEER de moeite waard…'
Fantastische ontvangst en wat een verrassend mooi museum in Noord Groningen … mooie rustige tentoonstelling ZEER de
moeite waard…'
publish_time: '2025-07-27T18:29:05.415075017Z'
- author_name: Maarten Roorda
author_uri: https://www.google.com/maps/contrib/109925281623356460102/reviews
rating: 5
relative_time_description: een maand geleden
text: Ontzettend leuk thema originele speurtocht erg leuk voor kinderen. Hele
behulpzame en vriendelijke medewerkers
text: Ontzettend leuk thema originele speurtocht erg leuk voor kinderen. Hele behulpzame en vriendelijke medewerkers
publish_time: '2025-10-28T06:32:55.102348167Z'
- author_name: Inge Bolss
author_uri: https://www.google.com/maps/contrib/109614597994163608846/reviews
@ -466,8 +461,7 @@ google_maps_enrichment:
Uitleg over het museum en de opzet van de tentoonstelling.
De tentoongestelde werken variëren sterk in kleuren en materiaal gebruik. Het
blijft daardoor interessant.
De tentoongestelde werken variëren sterk in kleuren en materiaal gebruik. Het blijft daardoor interessant.
Koffie en thee ook beschikbaar.'
@ -520,8 +514,7 @@ google_maps_enrichment:
icon_background_color: '#13B5C7'
utc_offset_minutes: 60
google_maps_status: SUCCESS
google_maps_search_query: Stichting Streekmuseum De Oude Wolden, Hoofdweg 161, Belllingwolde,
Netherlands
google_maps_search_query: Stichting Streekmuseum De Oude Wolden, Hoofdweg 161, Belllingwolde, Netherlands
web_enrichment:
web_archives:
- url: https://www.hetmow.nl/
@ -653,9 +646,8 @@ youtube_enrichment:
- video_id: dHvjNnnuBPE
video_url: https://www.youtube.com/watch?v=dHvjNnnuBPE
title: De wolf van Westerwolde
description: Lied van troubadour Bernard Wubbels ter gelegenheid van de opening
van Knollenland, een tentoonstelling over wilde dieren in het Groninger land,
20 oktober 2024.
description: Lied van troubadour Bernard Wubbels ter gelegenheid van de opening van Knollenland, een tentoonstelling over
wilde dieren in het Groninger land, 20 oktober 2024.
published_at: '2024-11-07T14:45:31Z'
duration: PT5M17S
definition: hd
@ -674,8 +666,8 @@ youtube_enrichment:
- video_id: trlWkSXGgf0
video_url: https://www.youtube.com/watch?v=trlWkSXGgf0
title: Het MOW | Museum Westerwolde door de tijd, van 1973 tot 2024
description: Vanaf de start van het museum in 1973 gaan we door foto's van het
pand aan de buiten- en binnenkant door de tijd naar het nu.
description: Vanaf de start van het museum in 1973 gaan we door foto's van het pand aan de buiten- en binnenkant door
de tijd naar het nu.
published_at: '2024-09-12T09:56:57Z'
duration: PT9M52S
definition: hd
@ -713,9 +705,8 @@ youtube_enrichment:
- video_id: GS92V1Sz_EE
video_url: https://www.youtube.com/watch?v=GS92V1Sz_EE
title: Kijkdoos vol collectie
description: Je kijkt rond in de kijkdoos met als thema 'het rijke boerenleven'
dat het MOW voor de tentoonstelling De grote nostalgieshow (2022) maakte. Vrijwel
alle getoonde objecten stammen uit de museumcollectie.
description: Je kijkt rond in de kijkdoos met als thema 'het rijke boerenleven' dat het MOW voor de tentoonstelling De
grote nostalgieshow (2022) maakte. Vrijwel alle getoonde objecten stammen uit de museumcollectie.
published_at: '2023-04-05T16:27:02Z'
duration: PT16S
definition: hd
@ -734,9 +725,8 @@ youtube_enrichment:
- video_id: -cQvEpV-GbY
video_url: https://www.youtube.com/watch?v=-cQvEpV-GbY
title: Vergeet mijn naam
description: In deze tekstvideo leest Boris Wanders drie van zijn gedichten voor,
die hij maakte bij de foto's van Judith Lechner, in het gezamenlijke project
Vergeet mijn naam (2022)
description: In deze tekstvideo leest Boris Wanders drie van zijn gedichten voor, die hij maakte bij de foto's van Judith
Lechner, in het gezamenlijke project Vergeet mijn naam (2022)
published_at: '2023-02-04T15:23:48Z'
duration: PT1M31S
definition: hd
@ -755,8 +745,8 @@ youtube_enrichment:
- video_id: sNbXZJ-5SSg
video_url: https://www.youtube.com/watch?v=sNbXZJ-5SSg
title: Teken je favoriete huisgenoot!
description: In de expo Thuis tekenden bezoekers hun meest lieve, trouwe, zorgzame,
gezellige of grappige huisgenoot. Kijk hier naar de unieke verzameling portretten.
description: In de expo Thuis tekenden bezoekers hun meest lieve, trouwe, zorgzame, gezellige of grappige huisgenoot.
Kijk hier naar de unieke verzameling portretten.
published_at: '2022-12-06T12:30:49Z'
duration: PT1M7S
definition: hd
@ -794,8 +784,7 @@ youtube_enrichment:
- video_id: tSUKpwbP8yk
video_url: https://www.youtube.com/watch?v=tSUKpwbP8yk
title: Blik in de Thuiskamer
description: Blik in de zaal Thuiskamer, tijdens de tentoonstelling Thuis te zien,
tot en met 15 mei.
description: Blik in de zaal Thuiskamer, tijdens de tentoonstelling Thuis te zien, tot en met 15 mei.
published_at: '2022-05-09T08:38:48Z'
duration: PT12S
definition: hd
@ -814,9 +803,8 @@ youtube_enrichment:
- video_id: IpuZWnOtYq8
video_url: https://www.youtube.com/watch?v=IpuZWnOtYq8
title: Almost a hundred works by Lodewijk Bruckman
description: "Alsmost a hundred works by master painter Lodewijk Bruckman: www.lodewijkbruckman.com\
\ \n(From a 1968 portfolio and the collections of Gemeente Westerwolde en Gemeente\
\ Goes)"
description: "Alsmost a hundred works by master painter Lodewijk Bruckman: www.lodewijkbruckman.com \n(From a 1968 portfolio\
\ and the collections of Gemeente Westerwolde en Gemeente Goes)"
published_at: '2022-04-10T10:44:37Z'
duration: PT6M9S
definition: hd
@ -856,11 +844,10 @@ youtube_enrichment:
- video_id: yucDFU59WHk
video_url: https://www.youtube.com/watch?v=yucDFU59WHk
title: Schilderperfomances van kunstenaarscollectief RinseKoetjeBil
description: In juni en juli schilderde kunstenaarscollectief RinseKoetjeBil in
drie sessies dit schilderij 'Onderweg naar Arcadië' voor de tentoonstelling
Vitamine K | Kunst waar je van opknapt in het MOW | Museum Westerwolde te Bellingwolde.
Alle schilderperformances waren volledig corona-proof. De tentoonstelling duurt tot
en met 18 oktober 2020. Vind meer info op www.hetmow.nl en https://www.rinsekoetjebil.nl/.
description: In juni en juli schilderde kunstenaarscollectief RinseKoetjeBil in drie sessies dit schilderij 'Onderweg
naar Arcadië' voor de tentoonstelling Vitamine K | Kunst waar je van opknapt in het MOW | Museum Westerwolde te Bellingwolde.
Alle schilderperformances waren volledig corona-proof. De tentoonstelling duurt tot en met 18 oktober 2020. Vind meer
info op www.hetmow.nl en https://www.rinsekoetjebil.nl/.
published_at: '2020-07-14T10:46:42Z'
duration: PT1M10S
definition: hd
@ -879,9 +866,8 @@ youtube_enrichment:
- video_id: Mx4nb9ssfPw
video_url: https://www.youtube.com/watch?v=Mx4nb9ssfPw
title: Slideshow Veldwerk en Denkend aan Groningen
description: Van oktober 2019 tot en met maart 2020 (tussentijds verlengd) kon
je in het MOW terecht voor de tentoonstellingen Veldwerk (fotografie) en Denkend
aan Groningen (kunst diverse technieken). Op www.hetmow.nl vind je meer informatie
description: Van oktober 2019 tot en met maart 2020 (tussentijds verlengd) kon je in het MOW terecht voor de tentoonstellingen
Veldwerk (fotografie) en Denkend aan Groningen (kunst diverse technieken). Op www.hetmow.nl vind je meer informatie
over de expo's, de kunstenaars en online expowijzers.
published_at: '2020-04-03T18:03:50Z'
duration: PT2M1S
@ -901,10 +887,9 @@ youtube_enrichment:
- video_id: DmHWy-PgDJg
video_url: https://www.youtube.com/watch?v=DmHWy-PgDJg
title: Indruk 1' expo Contrast het MOW 2018
description: '1 minuut foto-indruk van een deel van de tentoonstelling Contrast,
met werk van Hans Dingjan, Joshua Janssen, Ria van Krieken en Marian Smit, tot
en met 30 september 2018 in het MOW. Muziek: www.theunderscoreorkestra.com.
Meer info: www.museumdeoudewolden.nl of www.contrast2018.nl'
description: '1 minuut foto-indruk van een deel van de tentoonstelling Contrast, met werk van Hans Dingjan, Joshua Janssen,
Ria van Krieken en Marian Smit, tot en met 30 september 2018 in het MOW. Muziek: www.theunderscoreorkestra.com. Meer
info: www.museumdeoudewolden.nl of www.contrast2018.nl'
published_at: '2018-08-15T10:07:39Z'
duration: PT1M4S
definition: hd
@ -924,9 +909,8 @@ youtube_enrichment:
- video_id: 0IRUnKD1Qh8
video_url: https://www.youtube.com/watch?v=0IRUnKD1Qh8
title: Trillingen
description: Indruk van de tentoonstelling Trillingen in iets meer dan 2 minuten.
In Trillingen geven 24 kunstenaars van de vereniging VanTyNaarLo vorm aan de
alledaagse en bijzondere bewegingen die ons omringen.
description: Indruk van de tentoonstelling Trillingen in iets meer dan 2 minuten. In Trillingen geven 24 kunstenaars van
de vereniging VanTyNaarLo vorm aan de alledaagse en bijzondere bewegingen die ons omringen.
published_at: '2017-07-08T17:10:43Z'
duration: PT2M18S
definition: hd
@ -946,10 +930,8 @@ youtube_enrichment:
- video_id: h7uQZeW3RxE
video_url: https://www.youtube.com/watch?v=h7uQZeW3RxE
title: Onder Vuur, het leger
description: Soldatenleven in de 17e eeuw, in beelden van tijdgenoten uit het
Rijksmuseum Amsterdam, presentatie van MOW voor de tentoonstelling Onder Vuur,
over de Eerste Munsterse Oorlog (1665-1666) september 2015 tot en met maart
2016.
description: Soldatenleven in de 17e eeuw, in beelden van tijdgenoten uit het Rijksmuseum Amsterdam, presentatie van MOW
voor de tentoonstelling Onder Vuur, over de Eerste Munsterse Oorlog (1665-1666) september 2015 tot en met maart 2016.
published_at: '2016-10-19T13:30:28Z'
duration: PT3M7S
definition: hd
@ -969,10 +951,9 @@ youtube_enrichment:
- video_id: Ydi0HYqSn_c
video_url: https://www.youtube.com/watch?v=Ydi0HYqSn_c
title: 17x17
description: Presentatie van olieverfschilderijen uit het Rijksmuseum Amsterdam
rond 17 thema's uit de 17e eeuw. Gemaakt door het MOW voor de tentoonstelling
Onder Vuur, over de Eerste Munsterse Oorlog (1665-1666) september 2015 tot en
met maart 2016
description: Presentatie van olieverfschilderijen uit het Rijksmuseum Amsterdam rond 17 thema's uit de 17e eeuw. Gemaakt
door het MOW voor de tentoonstelling Onder Vuur, over de Eerste Munsterse Oorlog (1665-1666) september 2015 tot en met
maart 2016
published_at: '2016-10-19T13:14:06Z'
duration: PT9M37S
definition: hd
@ -992,26 +973,19 @@ youtube_enrichment:
- video_id: 84Bs4nu-wIs
video_url: https://www.youtube.com/watch?v=84Bs4nu-wIs
title: Streekgenoten 2015
description: "Diashow fototentoonstelling Streekgenoten, met werk van Siese Veenstra,\
\ Ab Postma, Luuk van den Berg, Tijmen van Dijk en Sabrina Schmidt (alle drie\
\ Academie Minerva) en enkele publieksinzendingen rond het thema Mien Stee (mijn\
\ plek). Campagnebeeld begin Marije Radix.\n\nMOW maakte de diacompilatie in\
\ het kader van de tentoonstelling Streekgenoten 2015. Streekgenoten (17 mei\
\ tot en met 23 augustus 2015) verkent zowel de eigen streek als het begrip\
\ streek aan de hand van verschillende fotografen. \n\nIn het onderdeel Platteland.\
\ Groningen toont Siese Veenstra glimpen van het leven op het platteland door\
\ heel de provincie. Luuk van den Berg, Tijmen van Dijk en Sabrina Schmidt,\
\ allen van Academie Minerva, laten in Deleted Darlings zien hoe verschillende\
\ fotografen vanuit hetzelfde Westerwoldse landschap tot heel andere fotografie\
\ komen. Ab Postma legde met Diepe Gronden bijzondere locaties met opmerkelijke\
\ historische verhalen vast. Naar aanleiding van een oproep afgelopen voorjaar\
\ stuurden tientallen mensen fotos in van hun favoriete plek: Mien Stee, met\
\ opmerkelijk fraaie fotos van ons gebied. Hiernaast kan je een selfie maken\
\ tegen een speciale wand, compleet met blauwe lucht, witte wolken en zwevende\
\ bolhoed en toont het museum historische objecten rond het thema fotografie.\n\
\nZie http://museumdeoudewolden.nl/streekgenoten-2015 voor meer informatie\n\
\nAfbeelding 3 Siese Veenstra, vissen op t wad, voor Dagblad van het Noorden\
\ (2011)."
description: "Diashow fototentoonstelling Streekgenoten, met werk van Siese Veenstra, Ab Postma, Luuk van den Berg, Tijmen\
\ van Dijk en Sabrina Schmidt (alle drie Academie Minerva) en enkele publieksinzendingen rond het thema Mien Stee (mijn\
\ plek). Campagnebeeld begin Marije Radix.\n\nMOW maakte de diacompilatie in het kader van de tentoonstelling Streekgenoten\
\ 2015. Streekgenoten (17 mei tot en met 23 augustus 2015) verkent zowel de eigen streek als het begrip streek aan\
\ de hand van verschillende fotografen. \n\nIn het onderdeel Platteland. Groningen toont Siese Veenstra glimpen van\
\ het leven op het platteland door heel de provincie. Luuk van den Berg, Tijmen van Dijk en Sabrina Schmidt, allen van\
\ Academie Minerva, laten in Deleted Darlings zien hoe verschillende fotografen vanuit hetzelfde Westerwoldse landschap\
\ tot heel andere fotografie komen. Ab Postma legde met Diepe Gronden bijzondere locaties met opmerkelijke historische\
\ verhalen vast. Naar aanleiding van een oproep afgelopen voorjaar stuurden tientallen mensen fotos in van hun favoriete\
\ plek: Mien Stee, met opmerkelijk fraaie fotos van ons gebied. Hiernaast kan je een selfie maken tegen een speciale\
\ wand, compleet met blauwe lucht, witte wolken en zwevende bolhoed en toont het museum historische objecten rond het\
\ thema fotografie.\n\nZie http://museumdeoudewolden.nl/streekgenoten-2015 voor meer informatie\n\nAfbeelding 3 Siese\
\ Veenstra, vissen op t wad, voor Dagblad van het Noorden (2011)."
published_at: '2015-06-14T22:08:38Z'
duration: PT3M5S
definition: hd
@ -1031,21 +1005,16 @@ youtube_enrichment:
- video_id: YXU1Z5fwFjY
video_url: https://www.youtube.com/watch?v=YXU1Z5fwFjY
title: Reizen is ook verdwalen
description: "Van 1 februari tot en met 3 mei 2015 loopt in MOW de expositie \"\
Want reizen is ook verdwalen\", met gewaden en andere werken van Yvonne Struys.\
\ Let op niet alle getoonde werken staan ook in de expositie.\n\nFrans schrijver/filmregisseur\
\ Philippe Claudel schreef: Want reizen is ook verdwalen, je ontdoen van het\
\ bekende”. Dit kan als motto voor de manier van - werken van Yvonne Struys\
\ gelden. Voor de kunstenaar is reizen, zowel in de wereld als in de verbeelding,\
\ een belangrijk vertrekpunt. Onbevangen waarneming én overgeleverde verhalen\
\ en mythen van bij voorkeur verre uithoeken van de aarde vormen de grondstof\
\ voor haar werken. Op haar beurt roept Struys kunst weer eigen verhalen, een\
\ eigen mythische lading op. Gewaden, zoals kimonos, kazuifels en strijdhemden\
\ nemen hierbij een bijzondere plaats in. De tentoonstelling biedt de bezoeker\
\ dan ook alle gelegenheid om te (ver)dwalen, van IJsland tot Japan, van strijd\
\ tot devotie, van het aardse tot het hemelse, van enkel kijken tot eigen verhalen.\
\ \n\nHet filmpje bestaat uit enkele foto's van Struys' werk voorzien van muziek\
\ van Sigur Rós/Hrafnagaldur (Odin's Raven Magic)."
description: "Van 1 februari tot en met 3 mei 2015 loopt in MOW de expositie \"Want reizen is ook verdwalen\", met gewaden\
\ en andere werken van Yvonne Struys. Let op niet alle getoonde werken staan ook in de expositie.\n\nFrans schrijver/filmregisseur\
\ Philippe Claudel schreef: Want reizen is ook verdwalen, je ontdoen van het bekende”. Dit kan als motto voor de \
\ manier van - werken van Yvonne Struys gelden. Voor de kunstenaar is reizen, zowel in de wereld als in de verbeelding,\
\ een belangrijk vertrekpunt. Onbevangen waarneming én overgeleverde verhalen en mythen van bij voorkeur verre uithoeken\
\ van de aarde vormen de grondstof voor haar werken. Op haar beurt roept Struys kunst weer eigen verhalen, een eigen\
\ mythische lading op. Gewaden, zoals kimonos, kazuifels en strijdhemden nemen hierbij een bijzondere plaats in. De\
\ tentoonstelling biedt de bezoeker dan ook alle gelegenheid om te (ver)dwalen, van IJsland tot Japan, van strijd tot\
\ devotie, van het aardse tot het hemelse, van enkel kijken tot eigen verhalen. \n\nHet filmpje bestaat uit enkele foto's\
\ van Struys' werk voorzien van muziek van Sigur Rós/Hrafnagaldur (Odin's Raven Magic)."
published_at: '2015-01-20T23:08:14Z'
duration: PT2M46S
definition: hd
@ -1065,9 +1034,8 @@ youtube_enrichment:
- video_id: wQzqSI2NcjU
video_url: https://www.youtube.com/watch?v=wQzqSI2NcjU
title: Albertje Loeks
description: Voor de Dag van de WesterwOLDambster geschiedenis 2014 maakten wij
deze korte presentatie over Albertje "Loeks" Huizinga, die maar liefst 123 keer
veroordeeld werd voor smokkel eind 19e, begin 20e eeuw in de omgeving van Bellingwolde/De
description: Voor de Dag van de WesterwOLDambster geschiedenis 2014 maakten wij deze korte presentatie over Albertje "Loeks"
Huizinga, die maar liefst 123 keer veroordeeld werd voor smokkel eind 19e, begin 20e eeuw in de omgeving van Bellingwolde/De
Lethe.
published_at: '2014-11-17T23:02:01Z'
duration: PT6M4S
@ -1109,12 +1077,10 @@ youtube_enrichment:
- video_id: ihBwTTKhRDc
video_url: https://www.youtube.com/watch?v=ihBwTTKhRDc
title: Beeldflyer expo Typisch Hollands! nog tot en met 2 december 2012
description: 'Expositie in Museum de Oude Wolden, waarbij 19 kunstenaars een eigenzinnige
visie geven op Nederlandse cliches en iconen. Met: Marianne Aulman, Patrick
Bergsma, Peter Boersma, Sietske Bosma, Mario ter Braak, Hanneke Giezen, Marianne
van Heeswijk, Diederick Kraaijeveld, Ien van Laanen, Theo Leijdekkers, Wendy
Limburg, Els Maasson, Edith Madou, Mels van der Mede, Kees Moerbeek, Nanon Morsink,
Vincent van Ojen, Erica Scheper en Petra van der Steen. Samenstelling: Kunstbureau
description: 'Expositie in Museum de Oude Wolden, waarbij 19 kunstenaars een eigenzinnige visie geven op Nederlandse cliches
en iconen. Met: Marianne Aulman, Patrick Bergsma, Peter Boersma, Sietske Bosma, Mario ter Braak, Hanneke Giezen, Marianne
van Heeswijk, Diederick Kraaijeveld, Ien van Laanen, Theo Leijdekkers, Wendy Limburg, Els Maasson, Edith Madou, Mels
van der Mede, Kees Moerbeek, Nanon Morsink, Vincent van Ojen, Erica Scheper en Petra van der Steen. Samenstelling: Kunstbureau
Albion Putti.'
published_at: '2012-10-17T21:28:32Z'
duration: PT2M36S
@ -1150,8 +1116,7 @@ youtube_enrichment:
- video_id: lg9jLdh6210
video_url: https://www.youtube.com/watch?v=lg9jLdh6210
title: mow dankt
description: Dankfilmpje verbouw MOW 2012, met terugblik op oude museum en verbouw
met foto's
description: Dankfilmpje verbouw MOW 2012, met terugblik op oude museum en verbouw met foto's
published_at: '2012-09-28T01:26:34Z'
duration: PT4M10S
definition: sd
@ -1173,9 +1138,8 @@ youtube_enrichment:
- video_id: VmHkpG4kCoA
video_url: https://www.youtube.com/watch?v=VmHkpG4kCoA
title: Nieuw Museum in beeld
description: 'Schets (ruwe versie) van het nieuwe MOW, van AAS architecten Groningen.
Wat zie je: de nieuwe entree, ontvangst, hal en doorloop door oudbouw weer naar
ontvangst. Wat zie je niet: de zalen rechts van de hal (drie zalen), en de doorlopende
description: 'Schets (ruwe versie) van het nieuwe MOW, van AAS architecten Groningen. Wat zie je: de nieuwe entree, ontvangst,
hal en doorloop door oudbouw weer naar ontvangst. Wat zie je niet: de zalen rechts van de hal (drie zalen), en de doorlopende
zaal in de oudbouw, de garderobe, de toiletten en het kantoor.'
published_at: '2011-11-19T15:20:19Z'
duration: PT2M42S
@ -1202,9 +1166,8 @@ youtube_enrichment:
- video_id: kg8qj0O9fGA
video_url: https://www.youtube.com/watch?v=kg8qj0O9fGA
title: Fotowedstrijd "Wat bezielt jou?"
description: Digitale presentatie van de inzendingen van de fotowedstrijd "Wat
bezielt jou?" onderdeel van de expositie Hart en Ziel in MOW, december 2011
- februari 2011.
description: Digitale presentatie van de inzendingen van de fotowedstrijd "Wat bezielt jou?" onderdeel van de expositie
Hart en Ziel in MOW, december 2011 - februari 2011.
published_at: '2011-03-15T23:34:12Z'
duration: PT5M39S
definition: sd
@ -1230,13 +1193,11 @@ youtube_enrichment:
- video_id: VZoEFAXED7A
video_url: https://www.youtube.com/watch?v=VZoEFAXED7A
title: Hart en Ziel MOW 2010
description: 'Promofilm van Egmar Irausquin voor de expositie Hart en Ziel van
MOW, 12 december 2010 - 21 februari 2011, Museum de Oude Wolden, Bellingwolde.
De expo gaat over de bijzondere kanten van de eigen regio. Met: Heilige Huisjes
- werken van Geert Schreuder; Diepe Gronden over plekken met een bijzondere
geschiedenis, met landschapsfoto''s van Ab Postma; de publieks fotowedstrijd
"Wat bezielt jou" en Hartszaken over bezielde mensen uit de regio met foto''s
van Gerlof Homan. Zie www.museumdeoudewolden.nl voor meer informatie'
description: 'Promofilm van Egmar Irausquin voor de expositie Hart en Ziel van MOW, 12 december 2010 - 21 februari 2011,
Museum de Oude Wolden, Bellingwolde. De expo gaat over de bijzondere kanten van de eigen regio. Met: Heilige Huisjes
- werken van Geert Schreuder; Diepe Gronden over plekken met een bijzondere geschiedenis, met landschapsfoto''s van
Ab Postma; de publieks fotowedstrijd "Wat bezielt jou" en Hartszaken over bezielde mensen uit de regio met foto''s van
Gerlof Homan. Zie www.museumdeoudewolden.nl voor meer informatie'
published_at: '2010-12-15T18:34:33Z'
duration: PT2M19S
definition: sd
@ -1317,11 +1278,9 @@ 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
@ -1329,9 +1288,8 @@ 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
@ -1340,11 +1298,9 @@ 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
@ -1352,9 +1308,8 @@ 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
@ -1363,9 +1318,8 @@ unesco_ich_enrichment:
inscription_year: 2017
multinational: false
url: https://ich.unesco.org/en/RL/craft-of-the-miller-operating-windmills-and-watermills-01265
description: The craft of the miller operating windmills and watermills involves
the knowledge and skills necessary to operate a mill and maintain it in a good
state of repair. With a declining number of people earning their livelihood
description: The craft of the miller operating windmills and watermills involves the knowledge and skills necessary to
operate a mill and maintain it in a good state of repair. With a declining number of people earning their livelihood
from the craft, millers today also play a key role in transmitting the cultur...
timespan:
begin_of_the_begin: '1973-01-01T00:00:00Z'
@ -1610,8 +1564,8 @@ digital_platform_v2:
platform_name: Het MOW Website
platform_url: https://www.hetmow.nl/
platform_type: DISCOVERY_PORTAL
description: Daar waar het weidse Oldambt het romantische Westerwolde ontmoet,
vind je het MOW, een modern en eigenzinnig museum, met steeds weer nieuwe tentoonstellingen.
description: Daar waar het weidse Oldambt het romantische Westerwolde ontmoet, vind je het MOW, een modern en eigenzinnig
museum, met steeds weer nieuwe tentoonstellingen.
language: nl
og_image: https://www.hetmow.nl/files/2023-03/het-mow.png
favicon: null
@ -1675,3 +1629,21 @@ logo_enrichment:
has_favicon: false
has_og_image: true
favicon_count: 0
mission_statement:
- statement_id: https://nde.nl/ontology/hc/mission/nl-gr-bel-m-mow/mission-2026
statement_type: mission
statement_text: Het MOW | Museum Westerwolde verbindt mensen met de artistieke en cultuurhistorische betekenis, identiteit
én toekomst van Westerwolde en het (Groninger) platteland in het algemeen.
statement_language: nl
extracted_verbatim: true
source_url: https://www.hetmow.nl/organisatie
content_hash: sha256-ShpbtQ+2S700XnGPAOY72OM0WLnGuTh3MVWxvXIeMBc=
provenance:
statement_created_at: '2026-01-04T17:12:11.539935+00:00'
source_archived_at: '2026-01-04T17:11:57.626877+00:00'
retrieval_agent: linkup-api
extraction_agent: zai-glm/glm-4.7
extraction_confidence: 1.0
prov:wasDerivedFrom: https://www.hetmow.nl/organisatie
prov:generatedAtTime: '2026-01-04T17:12:11.539935+00:00'
source_section: Missie

View file

@ -28,8 +28,7 @@ provenance:
linkup_timespan:
- source_type: linkup_web_search
fetch_timestamp: '2025-12-15T18:02:04.908720+00:00'
search_query: '"Koninklijke Vereeniging voor Volksvermaken" Haren opgericht
OR gesticht OR sinds'
search_query: '"Koninklijke Vereeniging voor Volksvermaken" Haren opgericht OR gesticht OR sinds'
source_urls:
- https://volksvermakengroningen.nl/
- https://nl.linkedin.com/company/koninklijke-vereeniging-voor-volksvermaken-te-groningen
@ -188,8 +187,7 @@ wikidata_enrichment:
instance_of: &id001
- id: Q15911314
label: association
description: group of individuals (natural persons) or entities (legal persons)
of all kinds
description: group of individuals (natural persons) or entities (legal persons) of all kinds
wikidata_instance_of: *id001
wikidata_location:
country: &id002
@ -218,11 +216,9 @@ 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
@ -230,9 +226,8 @@ 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
@ -241,11 +236,9 @@ 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
@ -253,9 +246,8 @@ 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
@ -264,9 +256,8 @@ 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: 53.17887090000001
@ -332,10 +323,8 @@ timeline_enrichment:
- https://nl.linkedin.com/company/koninklijke-vereeniging-voor-volksvermaken-te-groningen
- https://www.archivesportaleurope.net/ead-display/-/ead/pl/aicode/NL-GnGRA/type/fa/id/1348
- https://www.rtvnoord.nl/nieuws/96443/vereeniging-volksvermaken-blijft-koninklijk
linkup_query: '"Koninklijke Vereeniging voor Volksvermaken" Haren opgericht OR
gesticht OR sinds'
linkup_answer: De Koninklijke Vereeniging voor Volksvermaken is opgericht op 26
juni 1874.
linkup_query: '"Koninklijke Vereeniging voor Volksvermaken" Haren opgericht OR gesticht OR sinds'
linkup_answer: De Koninklijke Vereeniging voor Volksvermaken is opgericht op 26 juni 1874.
fetch_timestamp: '2025-12-15T18:02:04.904862+00:00'
archive_path: web/1742/linkup/linkup_founding_20251215T180204Z.json
extraction_method: linkup_answer_regex
@ -360,3 +349,20 @@ logo_enrichment:
has_favicon: true
has_og_image: false
favicon_count: 1
mission_statement:
- statement_id: https://nde.nl/ontology/hc/mission/nl-gr-har-i-kvv/goal-2026
statement_type: goal
statement_text: Het doel van deze evenementen is om de geschiedenis van Groningen te vieren, te herdenken en te beleven.
statement_language: nl
extracted_verbatim: true
source_url: http://www.volksvermakengroningen.nl
content_hash: sha256-jh3ukV+tMXSRx2haRl8bcQc6hTOHF08Jv+Ykx+YPwdI=
provenance:
statement_created_at: '2026-01-04T15:54:09.739126+00:00'
source_archived_at: '2026-01-04T15:53:48.367674+00:00'
retrieval_agent: linkup-api
extraction_agent: zai-glm/glm-4.7
extraction_confidence: 0.75
prov:wasDerivedFrom: http://www.volksvermakengroningen.nl
prov:generatedAtTime: '2026-01-04T15:54:09.739126+00:00'
source_section: Een Laatste Bom voor Bommen Berend

View file

@ -47,8 +47,8 @@ wikidata_enrichment:
instance_of: &id001
- id: Q33506
label: museum
description: institution that holds artifacts and other objects of scientific,
artistic, cultural, historical, or other importance
description: institution that holds artifacts and other objects of scientific, artistic, cultural, historical, or other
importance
wikidata_instance_of: *id001
wikidata_location:
country: &id002
@ -75,8 +75,7 @@ wikidata_enrichment:
member_of:
- id: Q110983803
label: Erfgoedpartners Groningen
description: organisatie voor instandhouding en beheer van monumenten en erfgoed
in de provincie Groningen
description: organisatie voor instandhouding en beheer van monumenten en erfgoed in de provincie Groningen
wikidata_web:
described_at_url: https://www.museumkaart.nl/museum/De+Fraeylemaborg.aspx
official_website: http://www.fraeylemaborg.nl
@ -185,8 +184,7 @@ provenance:
linkup_timespan:
- source_type: linkup_web_search
fetch_timestamp: '2025-12-15T18:09:31.742436+00:00'
search_query: '"Museum Landgoed Fraeylemaborg" Slochteren opgericht OR gesticht
OR sinds'
search_query: '"Museum Landgoed Fraeylemaborg" Slochteren opgericht OR gesticht OR sinds'
source_urls:
- https://fraeylemaborg.nl/het-landgoed/
- https://museumtv.nl/tentoonstelling/museum-landgoed-fraeylemaborg/
@ -342,9 +340,8 @@ google_maps_enrichment:
author_uri: https://www.google.com/maps/contrib/101100346406828005144/reviews
rating: 5
relative_time_description: 2 maanden geleden
text: 'Het was een zeer mooie wandeling in het eeuwenoude park van het landgoed.
Het bezoek aan het met liefde in stand gehouden Borg tijdens het open monument
weekend was voor ons de kers op de taart tijdens ons bezoek aan Groningen.
text: 'Het was een zeer mooie wandeling in het eeuwenoude park van het landgoed. Het bezoek aan het met liefde in stand
gehouden Borg tijdens het open monument weekend was voor ons de kers op de taart tijdens ons bezoek aan Groningen.
Zeker een aanrader.'
publish_time: '2025-09-23T16:47:00.008618455Z'
@ -352,27 +349,25 @@ google_maps_enrichment:
author_uri: https://www.google.com/maps/contrib/107378324201435391474/reviews
rating: 5
relative_time_description: een maand geleden
text: Leuke middag gehad, er was een speurtocht voor de kinderen. Daarnaast kon
er geknutseld worden en werden er pannenkoeken gebakken.
text: Leuke middag gehad, er was een speurtocht voor de kinderen. Daarnaast kon er geknutseld worden en werden er pannenkoeken
gebakken.
publish_time: '2025-10-06T14:51:39.429946551Z'
- author_name: Lianne v.D.
author_uri: https://www.google.com/maps/contrib/109446747342650235802/reviews
rating: 5
relative_time_description: 4 maanden geleden
text: Het is een supermooi bos met in juli en augustus een leuk blote voeten pad.
Het kasteel dat er staat is mooi. Ik heb het nog niet van binnen gezien.
text: Het is een supermooi bos met in juli en augustus een leuk blote voeten pad. Het kasteel dat er staat is mooi. Ik
heb het nog niet van binnen gezien.
publish_time: '2025-07-30T22:44:28.491873777Z'
- author_name: Wouter vanR
author_uri: https://www.google.com/maps/contrib/116855210099597351562/reviews
rating: 5
relative_time_description: een maand geleden
text: Erg mooi museum huis. Gaaf hoe er nog zoveel van de originele meubels in
zittten en verhalen zijn van de laatste bewoners. Het huis is niet perfect en
heeft wat rarigheden en sporen van uitbreiding. Wat het alleen maar unieker
maakt en interessant. Een prima audio tour ook en boekje met uitleg. Aan 1 van
beide heb je wel genoeg, want ze zijn haast hetzelfde. En als je klaar bent
is er nog een groot park om door geen te lopen. Hier had ik zelf helaas geen
tijd voor, maar ook het huis zelf is 5 sterren waard.
text: Erg mooi museum huis. Gaaf hoe er nog zoveel van de originele meubels in zittten en verhalen zijn van de laatste
bewoners. Het huis is niet perfect en heeft wat rarigheden en sporen van uitbreiding. Wat het alleen maar unieker maakt
en interessant. Een prima audio tour ook en boekje met uitleg. Aan 1 van beide heb je wel genoeg, want ze zijn haast
hetzelfde. En als je klaar bent is er nog een groot park om door geen te lopen. Hier had ik zelf helaas geen tijd voor,
maar ook het huis zelf is 5 sterren waard.
publish_time: '2025-10-01T18:45:20.363612395Z'
- author_name: E. de Jong
author_uri: https://www.google.com/maps/contrib/113119323375647558902/reviews
@ -430,8 +425,7 @@ google_maps_enrichment:
icon_background_color: '#4DB546'
utc_offset_minutes: 60
google_maps_status: SUCCESS
google_maps_search_query: Stichting Landgoed Fraeylemaborg, Hoofdweg 30, Slochteren,
Netherlands
google_maps_search_query: Stichting Landgoed Fraeylemaborg, Hoofdweg 30, Slochteren, Netherlands
web_enrichment:
web_archives:
- url: https://fraeylemaborg.nl/
@ -605,9 +599,8 @@ youtube_enrichment:
- comment_id: UgzYqDx_Duf2eVoIzKl4AaABAg
author_display_name: '@AnkushB1811'
author_channel_url: http://www.youtube.com/@AnkushB1811
text: Never even heard of this place and I live a continent away but this was
absolutely lovely to watch! I'm very glad the estate was made a museum and
not a... notary office.
text: Never even heard of this place and I live a continent away but this was absolutely lovely to watch! I'm very glad
the estate was made a museum and not a... notary office.
like_count: 1
published_at: '2025-03-13T19:04:08Z'
updated_at: '2025-03-13T19:04:08Z'
@ -666,8 +659,8 @@ youtube_enrichment:
- video_id: 1Wk4mm-pfkY
video_url: https://www.youtube.com/watch?v=1Wk4mm-pfkY
title: Max Monumentaal op de Fraeylemaborg
description: TV uitzending van het programma Max Monumentaal van 23 juli 2014,
over de restauratie van de Daagsche Kamer in de Fraeylemaborg te Slochteren.
description: TV uitzending van het programma Max Monumentaal van 23 juli 2014, over de restauratie van de Daagsche Kamer
in de Fraeylemaborg te Slochteren.
published_at: '2022-02-11T16:00:32Z'
duration: PT33M13S
definition: sd
@ -704,8 +697,7 @@ youtube_enrichment:
- comment_id: UgzMzKIzt6f6ZuyOqPV4AaABAg
author_display_name: '@tjittekamminga5170'
author_channel_url: http://www.youtube.com/@tjittekamminga5170
text: mw. Henny van Harten, wat een geweldig resultaat van uw jarenlange deskundige
inzet als conservator van de Fraeylemaborg!
text: mw. Henny van Harten, wat een geweldig resultaat van uw jarenlange deskundige inzet als conservator van de Fraeylemaborg!
like_count: 1
published_at: '2022-12-18T21:08:26Z'
updated_at: '2022-12-18T21:08:26Z'
@ -722,23 +714,18 @@ youtube_enrichment:
- video_id: NewL-G1rse8
video_url: https://www.youtube.com/watch?v=NewL-G1rse8
title: Wat! Water!
description: 'Het achterste gedeelte van het Engelse landschapspark van de Fraeylemaborg
in Slochteren kampte met verdroging. Deze verdroging werd veroorzaakt door de
ontwatering van de landbouwgronden rondom het park en door de droge zomers.
Ook helpt het niet dat op grotere diepte een keileemlaag zit die heel diepe
beworteling van de bomen moeilijker maakt.
description: 'Het achterste gedeelte van het Engelse landschapspark van de Fraeylemaborg in Slochteren kampte met verdroging.
Deze verdroging werd veroorzaakt door de ontwatering van de landbouwgronden rondom het park en door de droge zomers.
Ook helpt het niet dat op grotere diepte een keileemlaag zit die heel diepe beworteling van de bomen moeilijker maakt.
Daar om hebben we in 2021 besloten een pomp te plaatsen die aangedreven wordt
met zonne-energie stroom. We hebben de sloten uitgebaggerd tot op de diepte
van het oorspronkelijk ontwerp van de tuin. Dit baggeren resulteert erin dat
het waterbufferend vermogen van het park is toegenomen en dat na een flinke
bui het water tijd heeft om in te zijgen.
Daar om hebben we in 2021 besloten een pomp te plaatsen die aangedreven wordt met zonne-energie stroom. We hebben de
sloten uitgebaggerd tot op de diepte van het oorspronkelijk ontwerp van de tuin. Dit baggeren resulteert erin dat het
waterbufferend vermogen van het park is toegenomen en dat na een flinke bui het water tijd heeft om in te zijgen.
Het project is betaald door het Prins Bernhard Cultuurfonds en de Bredius Stichting.
Het ontwerp is tot stand gekomen in samenwerking met het Waterschap Hunze en
Aas en aannemer Spithorst.'
Het project is betaald door het Prins Bernhard Cultuurfonds en de Bredius Stichting. Het ontwerp is tot stand gekomen
in samenwerking met het Waterschap Hunze en Aas en aannemer Spithorst.'
published_at: '2021-05-06T10:02:47Z'
duration: PT1M10S
definition: hd
@ -757,8 +744,7 @@ youtube_enrichment:
- video_id: IqBGFtFR5wc
video_url: https://www.youtube.com/watch?v=IqBGFtFR5wc
title: Fraeylemaborg Slochteren restauratie 2019-2020
description: De Fraeylemaborg in Slochteren is gerestaureerd. Deze film geeft
een indruk van dit omvangrijke werk.
description: De Fraeylemaborg in Slochteren is gerestaureerd. Deze film geeft een indruk van dit omvangrijke werk.
published_at: '2021-02-08T19:29:20Z'
duration: PT9M38S
definition: hd
@ -792,8 +778,8 @@ youtube_enrichment:
- comment_id: UgwZD19f9lse_9Q4JDh4AaABAg
author_display_name: '@wimmensinga6575'
author_channel_url: http://www.youtube.com/@wimmensinga6575
text: Goed bezig ! Ik heb in 2000 meegeholpen om de oostelijke zichtas in
het bos te maken . Het blijf daar een mooi plekje
text: Goed bezig ! Ik heb in 2000 meegeholpen om de oostelijke zichtas in het bos te maken . Het blijf daar een mooi
plekje
like_count: 0
published_at: '2024-12-15T15:30:32Z'
updated_at: '2024-12-15T15:30:32Z'
@ -801,14 +787,11 @@ youtube_enrichment:
- comment_id: UgyVbHTXEOLTzk7FHR14AaABAg
author_display_name: '@essingjan'
author_channel_url: http://www.youtube.com/@essingjan
text: 'Als jurylid van de Nederlandse Organisatie van Audiovisuele Amateurs
(NOVA), was ik zeer benieuwd naar het verslag van de restauratie als film.
Dat viel tegen: "talking heads", vele malen (deels) hetzelfde verhaal en stills
(zelfs in portrait-formaat!) van de werkzaamheden, zonder echte opnamen van
de werkzaamheden. Vermoedelijk is de idee voor een film pas achteraf ontstaan,
toen de restauratie al een feit was en er dus -noodgedwongen- voor deze werkwijze
gekozen moest worden. Als aantrekkelijk schouwspel is dit geen aanrader, wat
mij betreft. Jan Essing, Winschoten'
text: 'Als jurylid van de Nederlandse Organisatie van Audiovisuele Amateurs (NOVA), was ik zeer benieuwd naar het verslag
van de restauratie als film. Dat viel tegen: "talking heads", vele malen (deels) hetzelfde verhaal en stills (zelfs
in portrait-formaat!) van de werkzaamheden, zonder echte opnamen van de werkzaamheden. Vermoedelijk is de idee voor
een film pas achteraf ontstaan, toen de restauratie al een feit was en er dus -noodgedwongen- voor deze werkwijze
gekozen moest worden. Als aantrekkelijk schouwspel is dit geen aanrader, wat mij betreft. Jan Essing, Winschoten'
like_count: 0
published_at: '2021-03-03T12:04:07Z'
updated_at: '2021-03-03T12:04:07Z'
@ -817,8 +800,7 @@ youtube_enrichment:
- video_id: 4RxEIzCXDOs
video_url: https://www.youtube.com/watch?v=4RxEIzCXDOs
title: Landgoed Fraeylemaborg - band tussen de Fraeylemaborg en de kerk van Slochteren
description: Landgoed Fraeylemaborg - band tussen de Fraeylemaborg en de kerk
van Slochteren
description: Landgoed Fraeylemaborg - band tussen de Fraeylemaborg en de kerk van Slochteren
published_at: '2020-12-03T12:48:40Z'
duration: PT10M26S
definition: hd
@ -836,8 +818,7 @@ youtube_enrichment:
- comment_id: UgzzYm-cBXNLOs_j-6N4AaABAg
author_display_name: '@tjittekamminga5170'
author_channel_url: http://www.youtube.com/@tjittekamminga5170
text: mooie Groninger geschiedenis, zou eigenlijk meer structureel gemaakt moeten
worden
text: mooie Groninger geschiedenis, zou eigenlijk meer structureel gemaakt moeten worden
like_count: 1
published_at: '2022-12-22T16:37:26Z'
updated_at: '2022-12-22T16:37:26Z'
@ -845,11 +826,10 @@ youtube_enrichment:
comments_fetched: 1
- video_id: 9yVoRuWt4ng
video_url: https://www.youtube.com/watch?v=9yVoRuWt4ng
title: Landgoederen en buitenplaatsen uit Nederland en Duitsland werken samen
in de Noordelijke Lustwarande
description: Door samen te werken met de landgoederen in de gordel die loopt van
het IJsselmeer naar de rivier de Wezer in Duitsland, de Noordelijke Lustwarande,
willen wij ons prachtige en belangrijke erfgoed nog meer onder de aandacht brengen.
title: Landgoederen en buitenplaatsen uit Nederland en Duitsland werken samen in de Noordelijke Lustwarande
description: Door samen te werken met de landgoederen in de gordel die loopt van het IJsselmeer naar de rivier de Wezer
in Duitsland, de Noordelijke Lustwarande, willen wij ons prachtige en belangrijke erfgoed nog meer onder de aandacht
brengen.
published_at: '2018-08-24T13:27:17Z'
duration: PT5M43S
definition: hd
@ -876,11 +856,9 @@ youtube_enrichment:
- video_id: txTGM3oc1q4
video_url: https://www.youtube.com/watch?v=txTGM3oc1q4
title: Landgoed Fraeylemaborg imponeert
description: 'Het Prins Bernhard Cultuurfonds selecteert elk jaar een buitenplaats
die een grote en noodzakelijke herstelbijdrage voor natuur en erfgoed verdient.
De Fraeylemaborg is het schoolvoorbeeld van hoe je een breed publiek de schoonheid
van natuur en cultuurhistorie op een bijzondere en eigentijdse manier kunt laten
beleven.
description: 'Het Prins Bernhard Cultuurfonds selecteert elk jaar een buitenplaats die een grote en noodzakelijke herstelbijdrage
voor natuur en erfgoed verdient. De Fraeylemaborg is het schoolvoorbeeld van hoe je een breed publiek de schoonheid
van natuur en cultuurhistorie op een bijzondere en eigentijdse manier kunt laten beleven.
https://www.cultuurfonds.nl/project/herstel-fraeylemaborg'
published_at: '2018-02-12T13:49:27Z'
@ -901,14 +879,11 @@ youtube_enrichment:
- video_id: 9T1tYRbV1-w
video_url: https://www.youtube.com/watch?v=9T1tYRbV1-w
title: Culturele Mobiliteit Basisschool St Michaël in Groningen bezoekt de Fraeylemaborg
description: Basisschool St Michaël in Groningen bracht in december 2017 een bezoek
aan de Fraeylemaborg in Slochteren met het project Culturele Mobiliteit. De
leerkrachten en leerlingen werden opgehaald met een erfgoedbus en kregen in
de borg een beeld hoe het was in het jaar 1880. Met Culturele Mobiliteit reizen
leerkrachten en leerlingen naar een museum of erfgoedinstelling in de stad en
provincie Groningen. Het project helpt scholen bij het organiseren van een museumbezoek
door één loket te creëren waar vervoer en museumbezoek geregeld worden tegen
een betaalbaar vervoerstarief.
description: Basisschool St Michaël in Groningen bracht in december 2017 een bezoek aan de Fraeylemaborg in Slochteren
met het project Culturele Mobiliteit. De leerkrachten en leerlingen werden opgehaald met een erfgoedbus en kregen in
de borg een beeld hoe het was in het jaar 1880. Met Culturele Mobiliteit reizen leerkrachten en leerlingen naar een
museum of erfgoedinstelling in de stad en provincie Groningen. Het project helpt scholen bij het organiseren van een
museumbezoek door één loket te creëren waar vervoer en museumbezoek geregeld worden tegen een betaalbaar vervoerstarief.
published_at: '2018-01-17T19:25:59Z'
duration: PT2M5S
definition: hd
@ -926,11 +901,9 @@ youtube_enrichment:
comments_fetched: 0
- video_id: DVSH8yePNXs
video_url: https://www.youtube.com/watch?v=DVSH8yePNXs
title: Interview met mevrouw Louise Groenveld- Thomassen à Thuessink van der Hoop
van Slochteren.
description: Interview met mevrouw Louise Groenveld- Thomassen à Thuessink van
der Hoop van Slochteren, de laatste borgvrouwe van het landgoed Fraeylemaborg
in Slochteren door RTV-Noord in 2008.
title: Interview met mevrouw Louise Groenveld- Thomassen à Thuessink van der Hoop van Slochteren.
description: Interview met mevrouw Louise Groenveld- Thomassen à Thuessink van der Hoop van Slochteren, de laatste borgvrouwe
van het landgoed Fraeylemaborg in Slochteren door RTV-Noord in 2008.
published_at: '2017-12-07T13:58:02Z'
duration: PT19M5S
definition: sd
@ -965,8 +938,7 @@ youtube_enrichment:
- video_id: 7IodP5W4WkE
video_url: https://www.youtube.com/watch?v=7IodP5W4WkE
title: Oorlog rond Borg en Schans van Slochteren
description: Han Gerretsen, HG Media in opdracht van Stichting Landgoed Fraeylemaborg,
25 april 2006
description: Han Gerretsen, HG Media in opdracht van Stichting Landgoed Fraeylemaborg, 25 april 2006
published_at: '2016-02-24T10:19:04Z'
duration: PT15M2S
definition: sd
@ -1076,11 +1048,9 @@ 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
@ -1088,9 +1058,8 @@ 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
@ -1099,11 +1068,9 @@ 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
@ -1111,9 +1078,8 @@ 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
@ -1122,9 +1088,8 @@ 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: 53.215435
@ -1209,10 +1174,9 @@ logo_enrichment:
- claim_type: logo_url
claim_value: https://fraeylemaborg.nl/wp-content/themes/Fraeylemaborg/images/fea5aa2b03c80f49e36aae759b0b2747_Fraeylemaborgjublieumlogo.webp
source_url: https://fraeylemaborg.nl
css_selector: '#section3 > div.bd-container-inner.bd-margins > div.bd-layoutbox-3.bd-no-margins
> div.bd-container-inner > nav.bd-hmenu-1.bd-no-margins > div.navbar-collapse.collapse:nth-of-type(3)
> div.bd-horizontalmenu-58.clearfix > div.bd-container-inner > div.bd-container-60.bd-tagstyles
> a.bd-imagelink-2.bd-own-margins > img.bd-imagestyles'
css_selector: '#section3 > div.bd-container-inner.bd-margins > div.bd-layoutbox-3.bd-no-margins > div.bd-container-inner
> nav.bd-hmenu-1.bd-no-margins > div.navbar-collapse.collapse:nth-of-type(3) > div.bd-horizontalmenu-58.clearfix > div.bd-container-inner
> div.bd-container-60.bd-tagstyles > a.bd-imagelink-2.bd-own-margins > img.bd-imagestyles'
retrieved_on: '2025-12-21T21:13:01.200168+00:00'
extraction_method: crawl4ai_header_logo
detection_confidence: high
@ -1231,3 +1195,40 @@ logo_enrichment:
has_favicon: true
has_og_image: false
favicon_count: 3
mission_statement:
- statement_id: https://nde.nl/ontology/hc/mission/nl-gr-slo-m-mlf/mission-2026
statement_type: mission
statement_text: Stichting Landgoed Fraeylemaborg wil de cultuurhistorische waarden van Landgoed Fraeylemaborg behouden en
ontwikkelen, in combinatie met een daarop afgestemd scala aan functies en activiteiten, voor een zo breed mogelijk publiek.
Belangrijk daarbij is ook de bescherming van de natuur en het bevorderen van de biodiversiteit op het landgoed.
statement_language: nl
extracted_verbatim: true
source_url: https://fraeylemaborg.nl/over
content_hash: sha256-1CvdxjyQbJvtD1wj7zW6M3oBW9lwwJ3iUL94hASAgyE=
provenance:
statement_created_at: '2026-01-04T15:51:23.013836+00:00'
source_archived_at: '2026-01-04T15:51:01.005281+00:00'
retrieval_agent: linkup-api
extraction_agent: zai-glm/glm-4.7
extraction_confidence: 0.95
prov:wasDerivedFrom: https://fraeylemaborg.nl/over
prov:generatedAtTime: '2026-01-04T15:51:23.013836+00:00'
source_section: Organisatie
- statement_id: https://nde.nl/ontology/hc/mission/nl-gr-slo-m-mlf/goal-2026
statement_type: goal
statement_text: Het in stand houden, beheren en verder ontwikkelen van museum Landgoed Fraeylemaborg; Het openstellen en
toegankelijk maken van het Landgoed Fraeylemaborg voor een zo breed mogelijk publiek; Het bevorderen van onderzoek naar
en het delen van kennis over het landgoed (en haar rol in de regio)
statement_language: nl
extracted_verbatim: true
source_url: https://fraeylemaborg.nl/over
content_hash: sha256-Yr/q54gmAUslXOwr6DNW8YBzPe43hr9ERhvgvV0b5vM=
provenance:
statement_created_at: '2026-01-04T15:51:23.013851+00:00'
source_archived_at: '2026-01-04T15:51:01.005281+00:00'
retrieval_agent: linkup-api
extraction_agent: zai-glm/glm-4.7
extraction_confidence: 0.95
prov:wasDerivedFrom: https://fraeylemaborg.nl/over
prov:generatedAtTime: '2026-01-04T15:51:23.013851+00:00'
source_section: Organisatie

View file

@ -175,9 +175,9 @@ google_maps_enrichment:
author_uri: https://www.google.com/maps/contrib/105465043199477816017/reviews
rating: 5
relative_time_description: een maand geleden
text: |-
Leuk klein Museum 👍goede voorlichting door betrokken vrijwilligers!
Verteld een duidelijk verhaal over de streek.
text: 'Leuk klein Museum 👍goede voorlichting door betrokken vrijwilligers!
Verteld een duidelijk verhaal over de streek.'
publish_time: '2025-10-24T17:49:47.575732993Z'
- author_name: Adrie Jonkers
author_uri: https://www.google.com/maps/contrib/116744550762282751468/reviews
@ -197,9 +197,9 @@ google_maps_enrichment:
author_uri: https://www.google.com/maps/contrib/115668217527562187845/reviews
rating: 5
relative_time_description: 4 maanden geleden
text: |-
Mooi museum! Vriendelijke vrijwilligers en een goede rondleiding gehad met een gids. Was erg interessant en leerzaam!
Daarna lekkere koffie op het terras
text: 'Mooi museum! Vriendelijke vrijwilligers en een goede rondleiding gehad met een gids. Was erg interessant en leerzaam!
Daarna lekkere koffie op het terras'
publish_time: '2025-07-14T17:18:43.730197434Z'
- author_name: Eric Botden
author_uri: https://www.google.com/maps/contrib/109148927409908367207/reviews
@ -626,3 +626,21 @@ web-enrichments:
layout_score: 0.0
pattern_score: 0.0
final_confidence: 0.7
mission_statement:
- statement_id: https://nde.nl/ontology/hc/mission/nl-li-ame-m-pm/goal-2026
statement_type: goal
statement_text: Het Peelmuseum heeft als doel het bewaren, verzamelen en kennis overbrengen van de leefwijze, gebruiken,
beroepen en ambachten van de vroegere bewoners van De Peel.
statement_language: nl
extracted_verbatim: true
source_url: https://www.peelmuseum.nl/over-ons
content_hash: sha256-Ot+OVMgMSZlaMFSnkmfMRMtwsEYt+pTP2UnNvjGIbUY=
provenance:
statement_created_at: '2026-01-04T17:12:24.200073+00:00'
source_archived_at: '2026-01-04T17:12:12.370375+00:00'
retrieval_agent: linkup-api
extraction_agent: zai-glm/glm-4.7
extraction_confidence: 0.95
prov:wasDerivedFrom: https://www.peelmuseum.nl/over-ons
prov:generatedAtTime: '2026-01-04T17:12:24.200073+00:00'
source_section: Ons doel

View file

@ -17,8 +17,7 @@ provenance:
- 'Entry created from Museum Register Nederland - not in original NDE dataset
Removed incorrect wikidata_enrichment on 2025-12-08T08:18:54.445578+00:00. Re-enrichment
required with proper matching.'
Removed incorrect wikidata_enrichment on 2025-12-08T08:18:54.445578+00:00. Re-enrichment required with proper matching.'
- Canonical location normalized on 2025-12-09T08:50:49Z
sources:
genealogiewerkbalk:
@ -131,8 +130,7 @@ google_maps_enrichment:
business_status: CLOSED_TEMPORARILY
rating: 4.5
total_ratings: 865
editorial_summary: Koel museum met tentoonstellingen rondom de opgegraven overblijfselen
van een oud Romeins badcomplex.
editorial_summary: Koel museum met tentoonstellingen rondom de opgegraven overblijfselen van een oud Romeins badcomplex.
google_maps_url: https://maps.google.com/?cid=8161693079869347650&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA
google_maps_status: SUCCESS
google_maps_search_query: Het Romeins Museum, Netherlands
@ -229,8 +227,7 @@ digital_platforms:
platform_type: WEBSITE
platform_category:
- Organizational website
digital_collections: Koel museum met tentoonstellingen rondom de opgegraven overblijfselen
van een oud Romeins badcomplex.
digital_collections: Koel museum met tentoonstellingen rondom de opgegraven overblijfselen van een oud Romeins badcomplex.
technology_stack: Standard web technology
data_standards:
- HTML5
@ -250,11 +247,9 @@ 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
@ -262,9 +257,8 @@ 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
@ -273,11 +267,9 @@ 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
@ -285,9 +277,8 @@ 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
@ -296,9 +287,8 @@ 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: 50.885349
@ -346,9 +336,8 @@ digital_platform_v2:
platform_name: Romeinse villas in Limburg Website
platform_url: https://www.hetromeinsmuseum.nl/zien-en-doen/romeinse-villas-in-limburg
platform_type: DISCOVERY_PORTAL
description: Na Leiden en Venlo is deze expositie geland midden in het Romeinse
villalandschap waar de veel van de vondsten zijn gedaan. Tot 5 januari te bezoeken
in het centrum van Heerlen.
description: Na Leiden en Venlo is deze expositie geland midden in het Romeinse villalandschap waar de veel van de vondsten
zijn gedaan. Tot 5 januari te bezoeken in het centrum van Heerlen.
language: en
og_image: null
favicon: https://cdn.prod.website-files.com/6759485406228e2a9f2a9487/67594a731409f461d9a655de_hrm-logo-32.png
@ -510,3 +499,56 @@ wikidata_enrichment:
enrichment_timestamp: '2025-01-13T00:00:00Z'
enrichment_method: manual_wikidata_lookup
notes: No Wikidata entry found for this institution
mission_statement:
- statement_id: https://nde.nl/ontology/hc/mission/nl-li-hee-m-rm/mission-2026
statement_type: mission
statement_text: 'Het Romeins Museum - met het Romeinse badhuis als nationaal sleutelstuk - draagt de geschiedenis van de
Romeinse tijd over aan de huidige en toekomstige generaties. We bieden reflectie door tijdsdiepte: een beter begrip van
onze tijd, ons leven, door een groter perspectief op tijd.'
statement_language: nl
extracted_verbatim: true
source_url: https://www.hetromeinsmuseum.nl/over-ons
content_hash: sha256-laJqk42RHY8W5T/2ceE4I69str823hdLiEm2tfwOPfA=
provenance:
statement_created_at: '2026-01-04T14:19:43.445233+00:00'
source_archived_at: '2026-01-04T14:19:08.208169+00:00'
retrieval_agent: linkup-api
extraction_agent: zai-glm/glm-4.7
extraction_confidence: 1.0
prov:wasDerivedFrom: https://www.hetromeinsmuseum.nl/over-ons
prov:generatedAtTime: '2026-01-04T14:19:43.445233+00:00'
source_section: Over ons
- statement_id: https://nde.nl/ontology/hc/mission/nl-li-hee-m-rm/vision-2026
statement_type: vision
statement_text: Als hét Romeins museum in Nederland richten we ons over de huidige grenzen heen en verbinden ons met partners
om samen het Romeinse verleden dichtbij te brengen en te inspireren.
statement_language: nl
extracted_verbatim: true
source_url: https://www.hetromeinsmuseum.nl/over-ons
content_hash: sha256-XtDarHlTyOYgWwHcYHNI57p9KB5kbHhsAsLFMBHs68g=
provenance:
statement_created_at: '2026-01-04T14:19:43.445400+00:00'
source_archived_at: '2026-01-04T14:19:08.208169+00:00'
retrieval_agent: linkup-api
extraction_agent: zai-glm/glm-4.7
extraction_confidence: 1.0
prov:wasDerivedFrom: https://www.hetromeinsmuseum.nl/over-ons
prov:generatedAtTime: '2026-01-04T14:19:43.445400+00:00'
source_section: Over ons
- statement_id: https://nde.nl/ontology/hc/mission/nl-li-hee-m-rm/goal-2026
statement_type: goal
statement_text: Het Romeins Museum is opgericht om het Romeins erfgoed van Heerlen op een eigentijdse en toegankelijke manier
te presenteren, waarbij de nadruk ligt op het vergroten van kennis en beleving van de Romeinse tijd in Nederland.
statement_language: nl
extracted_verbatim: true
source_url: https://www.hetromeinsmuseum.nl/over-ons
content_hash: sha256-HcJ0Wx4uae50J93p484tj85o0FQSee145/MELSFeCJ0=
provenance:
statement_created_at: '2026-01-04T14:19:43.445413+00:00'
source_archived_at: '2026-01-04T14:19:08.208169+00:00'
retrieval_agent: linkup-api
extraction_agent: zai-glm/glm-4.7
extraction_confidence: 1.0
prov:wasDerivedFrom: https://www.hetromeinsmuseum.nl/over-ons
prov:generatedAtTime: '2026-01-04T14:19:43.445413+00:00'
source_section: Over ons

View file

@ -108,8 +108,7 @@ provenance:
linkup_timespan:
- source_type: linkup_web_search
fetch_timestamp: '2025-12-15T18:18:16.675218+00:00'
search_query: '"Het Romeins Museum (voorheen Thermenmuseum)" Heerlen opgericht
OR gesticht OR sinds'
search_query: '"Het Romeins Museum (voorheen Thermenmuseum)" Heerlen opgericht OR gesticht OR sinds'
source_urls:
- https://www.hetromeinsmuseum.nl/
- https://centrum.heerlen.nl/het-romeins-museum
@ -143,8 +142,7 @@ provenance:
notes:
- Provenance tracking added retroactively
- claim_level_provenance available in sources section
- Removed incorrect wikidata_enrichment on 2025-12-08T08:18:54.390177+00:00. Re-enrichment
required with proper matching.
- Removed incorrect wikidata_enrichment on 2025-12-08T08:18:54.390177+00:00. Re-enrichment required with proper matching.
- Canonical location added via normalize_custodian_files.py on 2025-12-08T23:16:48Z
- Canonical location added via normalize_custodian_files.py on 2025-12-09T07:02:41Z
qp_resolution_timestamp: '2025-11-27T15:24:05.294681+00:00'
@ -211,28 +209,24 @@ google_maps_enrichment:
author_uri: https://www.google.com/maps/contrib/100388369084330210538/reviews
rating: 5
relative_time_description: een jaar geleden
text: 'Wat een mooi museum en dat in Nederland. Echte oudheid wat hier tentoongesteld
wordt. Geweldige audio tour zelfs speciale tour voor kinderen met zeer goede
en speelse uitleg. Zeker een aanrader! Gratis koffie, thee, limonade inbegrepen.
text: 'Wat een mooi museum en dat in Nederland. Echte oudheid wat hier tentoongesteld wordt. Geweldige audio tour zelfs
speciale tour voor kinderen met zeer goede en speelse uitleg. Zeker een aanrader! Gratis koffie, thee, limonade inbegrepen.
Bit to much to tell in English. But really great Museum with a great audio tour.
Also a special audio tour for kids that let your kids know how it all was going
in the early days. Free coffee, thee, and lemonade. Also toilet.'
Bit to much to tell in English. But really great Museum with a great audio tour. Also a special audio tour for kids
that let your kids know how it all was going in the early days. Free coffee, thee, and lemonade. Also toilet.'
publish_time: '2024-08-07T12:19:07.305844Z'
- author_name: Lisa Daniëlse
author_uri: https://www.google.com/maps/contrib/100052419808705606859/reviews
rating: 5
relative_time_description: een jaar geleden
text: 'Op aanraden van het Thermenmuseum geparkeerd in Q-Park Raadhuis, waarna
het één minuut lopen was naar de ingang van het museum. Mega vriendelijke ontvangst
door gastheer en -vrouw (van de receptie).
text: 'Op aanraden van het Thermenmuseum geparkeerd in Q-Park Raadhuis, waarna het één minuut lopen was naar de ingang
van het museum. Mega vriendelijke ontvangst door gastheer en -vrouw (van de receptie).
Mooi museum waarbij je door film en een audiotour meegenomen wordt door de geschiedenis
van het oudste stenen gebouw van Nederland. Wanneer je alle geluidsfragmenten
wilt beluisteren en filmpjes wilt bekijken, kun je hier makkelijk 2 - 2,5 uur
spenderen.'
Mooi museum waarbij je door film en een audiotour meegenomen wordt door de geschiedenis van het oudste stenen gebouw
van Nederland. Wanneer je alle geluidsfragmenten wilt beluisteren en filmpjes wilt bekijken, kun je hier makkelijk 2
- 2,5 uur spenderen.'
publish_time: '2024-07-03T20:20:46.438281Z'
- author_name: Guy
author_uri: https://www.google.com/maps/contrib/110172934423128611377/reviews
@ -242,11 +236,10 @@ google_maps_enrichment:
Zo mooi aangelegd en uitgelegd.
Ook de audiotour is geweldig. Met een kastje scan je iets dan wordt er alles
over verteld en worft er veel met projectie duidelijker gemaakt. Super ervaring.
Ook de audiotour is geweldig. Met een kastje scan je iets dan wordt er alles over verteld en worft er veel met projectie
duidelijker gemaakt. Super ervaring.
Ook voor kleinere kinderen te begrijpen en leuk met spelletjes begrijpelijker
gemaakt.
Ook voor kleinere kinderen te begrijpen en leuk met spelletjes begrijpelijker gemaakt.
We gaan zeker nog eens terug.
@ -256,46 +249,39 @@ google_maps_enrichment:
author_uri: https://www.google.com/maps/contrib/109319435063896249643/reviews
rating: 5
relative_time_description: 2 jaar geleden
text: 'Een verbazingwekkend mooi en intrigerend museum. We werden goed ontvangen
door het uiterst vriendelijke en enthousiaste personeel en kregen uitleg over
de route die gevolgd moet worden. Eerst kijk je een korte, ludieke film als
introductie en nadien bekijk je een 3D voorstelling om de indeling van het badhuis
beter te begrijpen. Hierdoor heb je meer context als je de opgraving van het
badhuis bezoekt. Een audiotour zit bij de prijs inbegrepen (net als koffie/thee/water)
en je kunt kiezen tussen een basis of uitgebreide uitleg. Je kunt met looppaden
dwars door de opgraving lopen waardoor het prachtig is om alles te zien. Nadien
loop je over een loopbrug over de opgraving en wordt met behulp van projectoren
het proces weergegeven dat de gemiddelde Romein doorliep in het badhuis, dit
was erg verhelderend. Nadien kun je nog kort de expositie bekijken met vondsten
uit het badhuis. Voor kinderen is nog een speelruimte aanwezig met een scala
text: 'Een verbazingwekkend mooi en intrigerend museum. We werden goed ontvangen door het uiterst vriendelijke en enthousiaste
personeel en kregen uitleg over de route die gevolgd moet worden. Eerst kijk je een korte, ludieke film als introductie
en nadien bekijk je een 3D voorstelling om de indeling van het badhuis beter te begrijpen. Hierdoor heb je meer context
als je de opgraving van het badhuis bezoekt. Een audiotour zit bij de prijs inbegrepen (net als koffie/thee/water) en
je kunt kiezen tussen een basis of uitgebreide uitleg. Je kunt met looppaden dwars door de opgraving lopen waardoor
het prachtig is om alles te zien. Nadien loop je over een loopbrug over de opgraving en wordt met behulp van projectoren
het proces weergegeven dat de gemiddelde Romein doorliep in het badhuis, dit was erg verhelderend. Nadien kun je nog
kort de expositie bekijken met vondsten uit het badhuis. Voor kinderen is nog een speelruimte aanwezig met een scala
aan Romeinse spellen.
Het was een erg leuk bezoek, wij waren positief verrast door het museum en zouden
het ook ten zeerste aanraden om eens te bezoeken!'
Het was een erg leuk bezoek, wij waren positief verrast door het museum en zouden het ook ten zeerste aanraden om eens
te bezoeken!'
publish_time: '2023-02-04T08:58:06.867822Z'
- author_name: Verdanix
author_uri: https://www.google.com/maps/contrib/103248108759315125565/reviews
rating: 5
relative_time_description: 2 jaar geleden
text: 'Dit museum moet iedereen bezocht hebben. Ik was hier samen met een vriend
(beide leerkrachten) omdat ik hem dit museum wou tonen.
text: 'Dit museum moet iedereen bezocht hebben. Ik was hier samen met een vriend (beide leerkrachten) omdat ik hem dit
museum wou tonen.
Ik was hier namelijk zelf met mijn klas geweest enkele jaren geleden. Ondertussen
heeft het museum een opfrissing gehad (nieuwe intro, 3D model met animatie,
over de thermen wandelen,…)
Ik was hier namelijk zelf met mijn klas geweest enkele jaren geleden. Ondertussen heeft het museum een opfrissing gehad
(nieuwe intro, 3D model met animatie, over de thermen wandelen,…)
Wow, ik was sprakeloos. Alles klopt gewoon. Ook het personeel is uitermate vriendelijk.
Je kan ze voor alles aanspreken en niets is hun teveel! Jammer dat ik de namen
van de twee mensen niet onthouden heb (oudere man en zijn vrouwelijke collega)
want jullie verdienen echt een dikke pluim!
Wow, ik was sprakeloos. Alles klopt gewoon. Ook het personeel is uitermate vriendelijk. Je kan ze voor alles aanspreken
en niets is hun teveel! Jammer dat ik de namen van de twee mensen niet onthouden heb (oudere man en zijn vrouwelijke
collega) want jullie verdienen echt een dikke pluim!
Hopelijk tot snel!'
publish_time: '2023-07-20T13:19:39.218408Z'
editorial_summary: Koel museum met tentoonstellingen rondom de opgegraven overblijfselen
van een oud Romeins badcomplex.
editorial_summary: Koel museum met tentoonstellingen rondom de opgegraven overblijfselen van een oud Romeins badcomplex.
photo_urls:
- https://places.googleapis.com/v1/places/ChIJCbU2gry9wEcRQldgF50oRHE/photos/AWn5SU7Dm3Ctj7veSEqTEEfQu5Kz1yZoXJOoURbYAkTXFPociKGNpfyi_V5-tFnpJhlar9rwcXkfW4uGim5HrRy3i8cvR3PQ0RoL_jnaap6XBN8qZIbwyYy6f8u-E7q_8EoNGsQtaCE20tTUjKfhu6M3YT4MICCh_dabnY0E-ZJibFpdBs9wvO77KhJfiSBCJ6xk0k_l4p03xX9b1R5eabQShH_F6tngrNPKtZmSZWlnJsxCZMPki0ctRnXgK0Z7LuYvcn97HzkMZ902cPM6MTOLWF0Sh6IwYkuFn4WG5m-GBb_KSw/media?maxWidthPx=800&key=AIzaSyAHuazNth9ZvfRFYk5-v49CwXwhABH8Ri0
- https://places.googleapis.com/v1/places/ChIJCbU2gry9wEcRQldgF50oRHE/photos/AWn5SU4K72eEwiRq9sbEDgLxhHFFLlaidTEVL6EOtY1m8KuhyN7NmyfDK_ACGXbUPwUVx7c5ETEMkTFDkPMR1ATUnHQp0oSA0Alreywf8GJxtLwgOQXPo_fsWQ31sauxivKmdBaLRCW2xMwi4G-X_bfTpkbB65_Gpr6wKjt-o12i2bWcsj9S0J_wJZ5FuxdhpC5y1J_tHRAgyhP6bB7M1XX3j5jxr1B2joWTiiAmGrus4NHBN6ZN8RaEzZkyEydHdf81mo04hxnYwTNpP7v1_mG4yWQLlfoc5EYb9A2Q_lrDbjpkYL4vzEDAp-mht1G7yXZwBy-XjPkmB8K8iF5myC6KX-roNdjDmIep1LBFMvdLodpuhwwBk8jowgt8y2aV26DO0pE_8_-riPpklJx-Z8czs-vSNnqpoyNrkXKTST8vExaYdw/media?maxWidthPx=800&key=AIzaSyAHuazNth9ZvfRFYk5-v49CwXwhABH8Ri0
@ -424,11 +410,9 @@ youtube_enrichment:
channel_id: UCSUSQkg_EzxoBOGbzctChFA
channel_url: https://www.youtube.com/channel/UCSUSQkg_EzxoBOGbzctChFA
title: Thermenmuseum
description: 'In het Thermenmuseum in Heerlen vindt u de indrukwekkende restanten
van een Romeins badhuis, de thermen. Het is het best bewaarde Romeinse (publieke)
badgebouw van Nederland. Het museum heeft daarnaast een gevarieerde collectie
gebruiksvoorwerpen uit de Romeinse tijd, afkomstig uit Coriovallum - de Romeinse
stad die onder Heerlen ligt.
description: 'In het Thermenmuseum in Heerlen vindt u de indrukwekkende restanten van een Romeins badhuis, de thermen.
Het is het best bewaarde Romeinse (publieke) badgebouw van Nederland. Het museum heeft daarnaast een gevarieerde collectie
gebruiksvoorwerpen uit de Romeinse tijd, afkomstig uit Coriovallum - de Romeinse stad die onder Heerlen ligt.
Meer op: www.thermenmuseum.nl'
@ -506,10 +490,9 @@ youtube_enrichment:
title: Geschiedenis badhuis bijna tastbaar.
description: 'Geschiedenis bijna tastbaar
We waren dan wel een paar maanden gesloten tijdens de Corona crisis, maar zaten
zeker niet stil. Er is onder meer gewerkt aan het looppad over de opgravingen.
Dankzij dit looppad kun je de opgravingen nu van heel dichtbij bewonderen. De
geschiedenis van het badhuis is zo bijna tastbaar. Kom het ervaren.'
We waren dan wel een paar maanden gesloten tijdens de Corona crisis, maar zaten zeker niet stil. Er is onder meer gewerkt
aan het looppad over de opgravingen. Dankzij dit looppad kun je de opgravingen nu van heel dichtbij bewonderen. De geschiedenis
van het badhuis is zo bijna tastbaar. Kom het ervaren.'
published_at: '2020-06-05T14:38:20Z'
duration: PT43S
definition: hd
@ -584,8 +567,7 @@ youtube_enrichment:
- comment_id: UgzfYEduADuNzc0Zwxp4AaABAg
author_display_name: '@sigivijgen2472'
author_channel_url: http://www.youtube.com/@sigivijgen2472
text: Woah, ik zou echt super graag een rondleiding willen geven aan die grote
groep. 😊😃
text: Woah, ik zou echt super graag een rondleiding willen geven aan die grote groep. 😊😃
like_count: 0
published_at: '2019-11-19T19:57:29Z'
updated_at: '2019-11-19T19:57:29Z'
@ -594,8 +576,7 @@ youtube_enrichment:
- video_id: 4QVGPUV3q9g
video_url: https://www.youtube.com/watch?v=4QVGPUV3q9g
title: ROMEINENWEEK | 4 tm/ 12 mei in het Thermenmusem
description: Tijdens de Romeinenweek van 4 t/m 12 mei ontdek je alles over de
Romeinse vrouw in het Thermenmuseum.
description: Tijdens de Romeinenweek van 4 t/m 12 mei ontdek je alles over de Romeinse vrouw in het Thermenmuseum.
published_at: '2019-05-03T13:55:28Z'
duration: PT21S
definition: hd
@ -614,16 +595,14 @@ youtube_enrichment:
- video_id: eog938eRovg
video_url: https://www.youtube.com/watch?v=eog938eRovg
title: '#ROMEINSEBEAUTY'
description: '#ROMEINSEBEAUTY | Vloggen als... de Romeinen. Ben jij de nieuwe
beautyvlogger van het Coriovallum? Maak je eigen beautyvlog en tag ons in het
bericht. Gebruik je eigen decor of kom naar het Thermenmuseum om plaats te nemen
description: '#ROMEINSEBEAUTY | Vloggen als... de Romeinen. Ben jij de nieuwe beautyvlogger van het Coriovallum? Maak
je eigen beautyvlog en tag ons in het bericht. Gebruik je eigen decor of kom naar het Thermenmuseum om plaats te nemen
in het decor van Amaka''s beautyvlogs. Hoe leuk!
De winnaar krijgt een vlog workshop met 5 vrienden of vriendinnen. Vloggen maar!
Tijdens de Romeinenweek van 4 t/m 12 mei ontdek je alles over de Romeinse vrouw
in het Thermenmuseum.
Tijdens de Romeinenweek van 4 t/m 12 mei ontdek je alles over de Romeinse vrouw in het Thermenmuseum.
https://www.thermenmuseum.nl/wat-is-er-te-doen/romeinenweek-vrouwen-in-het-licht/'
@ -645,8 +624,7 @@ youtube_enrichment:
- video_id: oyI_vFj0ENo
video_url: https://www.youtube.com/watch?v=oyI_vFj0ENo
title: ROMEINENWEEK | ontmoet Amaka!
description: 'Tijdens de Romeinenweek van 4 t/m 12 mei ontdek je alles over de
Romeinse vrouw in het Thermenmuseum.
description: 'Tijdens de Romeinenweek van 4 t/m 12 mei ontdek je alles over de Romeinse vrouw in het Thermenmuseum.
https://www.thermenmuseum.nl/wat-is-er-te-doen/romeinenweek-vrouwen-in-het-licht/'
@ -763,9 +741,8 @@ youtube_enrichment:
- video_id: cYUqdDNoEn8
video_url: https://www.youtube.com/watch?v=cYUqdDNoEn8
title: Restauratie Badhuis Thermenmuseum Heerlen
description: De restauratie van het Romeinse badhuis is klaar! Dankzij de vakmensen
van Restaura en Laudy is het badhuis volledig gereinigd en geconsolideerd, zijn
alle schadeplekken gerestaureerd en zijn we zelfs een aantal reconstructies
description: De restauratie van het Romeinse badhuis is klaar! Dankzij de vakmensen van Restaura en Laudy is het badhuis
volledig gereinigd en geconsolideerd, zijn alle schadeplekken gerestaureerd en zijn we zelfs een aantal reconstructies
rijker. Krijg in vogelvlucht een beeld van dit bijzondere proces.
published_at: '2018-03-02T13:47:44Z'
duration: PT5M56S
@ -834,8 +811,7 @@ youtube_enrichment:
- comment_id: UgyUzClCK2tlxM2Enah4AaABAg
author_display_name: '@theflyingfox8204'
author_channel_url: http://www.youtube.com/@theflyingfox8204
text: De pijlertjes op de foto zijn rond, maar de nieuwe pijlertjes zijn vierkant.
:-/ Waarom is dat?
text: De pijlertjes op de foto zijn rond, maar de nieuwe pijlertjes zijn vierkant. :-/ Waarom is dat?
like_count: 0
published_at: '2018-01-23T21:08:44Z'
updated_at: '2018-01-23T21:08:44Z'
@ -844,9 +820,8 @@ youtube_enrichment:
- video_id: OxptoWyC0pc
video_url: https://www.youtube.com/watch?v=OxptoWyC0pc
title: Update 9 | Restauratie Thermenmuseum Heerlen
description: In dit restauratiejournaal komen de werkzaamheden op twee nieuwe
locaties aan bod. De medewerkers van Laudy tonen hoe zij met keramisch bouwmateriaal
bogen en een zwevende vloer reconstrueren.
description: In dit restauratiejournaal komen de werkzaamheden op twee nieuwe locaties aan bod. De medewerkers van Laudy
tonen hoe zij met keramisch bouwmateriaal bogen en een zwevende vloer reconstrueren.
published_at: '2018-01-11T14:48:14Z'
duration: PT10M35S
definition: hd
@ -935,9 +910,8 @@ youtube_enrichment:
- comment_id: UgyKkkrxZXC4Gqk_HPt4AaABAg
author_display_name: '@Maitreya56'
author_channel_url: http://www.youtube.com/@Maitreya56
text: Prachtig en unieke manier op het archeologische werk van dichtbij te volgen;
al dit prachtige werkzaamheden en het resultaat verdienen echt een nieuw en
groots museum! Geweldig dat oude Romeinse Heerlen! Rob H
text: Prachtig en unieke manier op het archeologische werk van dichtbij te volgen; al dit prachtige werkzaamheden en
het resultaat verdienen echt een nieuw en groots museum! Geweldig dat oude Romeinse Heerlen! Rob H
like_count: 0
published_at: '2018-01-25T20:13:43Z'
updated_at: '2018-01-25T20:13:43Z'
@ -945,8 +919,8 @@ youtube_enrichment:
- comment_id: Ugx-CJG6UE1BN4n1iYJ4AaABAg
author_display_name: '@theflyingfox8204'
author_channel_url: http://www.youtube.com/@theflyingfox8204
text: Leuke trui heeft Karen aan. En wat zit haar haar mooi. Het hoogtepunt
was natuurlijk weer het gesprekje met Jacco. ❤ ❤
text: Leuke trui heeft Karen aan. En wat zit haar haar mooi. Het hoogtepunt was natuurlijk weer het gesprekje met Jacco.
❤ ❤
like_count: 0
published_at: '2018-01-11T23:28:21Z'
updated_at: '2018-01-11T23:28:21Z'
@ -955,11 +929,10 @@ youtube_enrichment:
- video_id: 1ZNKUC4Tl1A
video_url: https://www.youtube.com/watch?v=1ZNKUC4Tl1A
title: Update 7 | Restauratie Thermenmuseum Heerlen
description: de werkzaamheden aan de muur rondom de omkleedruimte van het Romeinse
badhuis van Heerlen zijn bijna klaar en in dit journaal zie je hoe restaurator
Jacco de laatste hand legt aan de muur. Verder komt de reconstructie van de
terrazzovloer weer aan bod en zien we hoe het bovenste deel van het bankje in
het koude vertrek wordt gereconstrueerd met behulp van modern bouwmateriaal.
description: de werkzaamheden aan de muur rondom de omkleedruimte van het Romeinse badhuis van Heerlen zijn bijna klaar
en in dit journaal zie je hoe restaurator Jacco de laatste hand legt aan de muur. Verder komt de reconstructie van de
terrazzovloer weer aan bod en zien we hoe het bovenste deel van het bankje in het koude vertrek wordt gereconstrueerd
met behulp van modern bouwmateriaal.
published_at: '2018-01-11T12:33:24Z'
duration: PT6M35S
definition: hd
@ -992,10 +965,9 @@ youtube_enrichment:
- comment_id: Ugx0JmnHGGgfYJHeWS94AaABAg
author_display_name: '@theflyingfox8204'
author_channel_url: http://www.youtube.com/@theflyingfox8204
text: Wie bezochten eigenlijk het badhuis? Alleen Romeinse kolonisten en autoriteiten?
Of ook de inheemse Germaanse/Keltische elite? En misschien ook nog gewone
inheemse Germanen/Kelten? Mocht bijvoorbeeld een eenvoudig inheems boertje
uit de omgeving ook het badhuis bezoeken?
text: Wie bezochten eigenlijk het badhuis? Alleen Romeinse kolonisten en autoriteiten? Of ook de inheemse Germaanse/Keltische
elite? En misschien ook nog gewone inheemse Germanen/Kelten? Mocht bijvoorbeeld een eenvoudig inheems boertje uit
de omgeving ook het badhuis bezoeken?
like_count: 0
published_at: '2018-01-11T23:49:37Z'
updated_at: '2018-01-11T23:49:37Z'
@ -1004,9 +976,8 @@ youtube_enrichment:
- video_id: c5imImkKE2E
video_url: https://www.youtube.com/watch?v=c5imImkKE2E
title: Update 6| Restauratie Thermenmuseum Heerlen
description: 'In dit journaal laten we je de vorderingen aan de restauratie en
reconstructie van de omkleedruimte en het koude vertrek van het Romeinse badhuis
van Heerlen zien.
description: 'In dit journaal laten we je de vorderingen aan de restauratie en reconstructie van de omkleedruimte en het
koude vertrek van het Romeinse badhuis van Heerlen zien.
Restaurator Jean-Paul komt aan het woord over het herstellen
@ -1050,11 +1021,10 @@ youtube_enrichment:
- video_id: cBb-r1mPp-s
video_url: https://www.youtube.com/watch?v=cBb-r1mPp-s
title: Update 5 | Restauratie Thermenmuseum Heerlen
description: 'Door de restauratiewerkzaamheden aan de muren van de omkleedruimte
worden de nissen voor de beelden weer duidelijk zichtbaar.
description: 'Door de restauratiewerkzaamheden aan de muren van de omkleedruimte worden de nissen voor de beelden weer
duidelijk zichtbaar.
In deze update laten conservator Karen Jeneson en restaurator Jacco Corver de
nieuwe reconstructies zien.'
In deze update laten conservator Karen Jeneson en restaurator Jacco Corver de nieuwe reconstructies zien.'
published_at: '2017-12-15T10:24:26Z'
duration: PT4M11S
definition: hd
@ -1090,8 +1060,8 @@ youtube_enrichment:
- video_id: ebSwqp80mQE
video_url: https://www.youtube.com/watch?v=ebSwqp80mQE
title: Update 4 | Restauratie Thermenmuseum Heerlen
description: In update 2 was te zien wat er aan de westkant van het badhuis gebeurde
rond de afvoergoot, in deze update is het resultaat te zien.
description: In update 2 was te zien wat er aan de westkant van het badhuis gebeurde rond de afvoergoot, in deze update
is het resultaat te zien.
published_at: '2017-12-13T14:32:29Z'
duration: PT3M5S
definition: hd
@ -1119,9 +1089,8 @@ youtube_enrichment:
- video_id: WASHyDmo_U4
video_url: https://www.youtube.com/watch?v=WASHyDmo_U4
title: Update 3 | Restauratie Thermenmuseum Heerlen
description: In het koude vertrek restaureren we het bankje tegen een van de 2
koudwaterbaden aan. Astrid Smeets van Restaura laat zien wat er al is gedaan
en wat de volgende werkzaamheden op deze plek zullen zijn.
description: In het koude vertrek restaureren we het bankje tegen een van de 2 koudwaterbaden aan. Astrid Smeets van Restaura
laat zien wat er al is gedaan en wat de volgende werkzaamheden op deze plek zullen zijn.
published_at: '2017-12-05T23:42:49Z'
duration: PT2M40S
definition: hd
@ -1151,9 +1120,8 @@ youtube_enrichment:
- video_id: 4x93eqChQdk
video_url: https://www.youtube.com/watch?v=4x93eqChQdk
title: Update 2 | Restauratie Thermenmuseum Heerlen
description: Aan de westkant van het badhuis is flink gewerkt om de situatie te
reconstrueren zoals deze in de Romeinse tijd moet zijn geweest. Jacco Corver
van Laudy legt uit wat er tot nu toe is gedaan.
description: Aan de westkant van het badhuis is flink gewerkt om de situatie te reconstrueren zoals deze in de Romeinse
tijd moet zijn geweest. Jacco Corver van Laudy legt uit wat er tot nu toe is gedaan.
published_at: '2017-11-30T17:36:58Z'
duration: PT1M46S
definition: hd
@ -1189,8 +1157,8 @@ youtube_enrichment:
- video_id: uijApuY_nwg
video_url: https://www.youtube.com/watch?v=uijApuY_nwg
title: Update 1 | Restauratie Thermenmuseum Heerlen
description: In deze filmpjes wordt wekelijks een update gegeven van de restauratiewerkzaamheden
in het Romeinse badhuis in Heerlen.
description: In deze filmpjes wordt wekelijks een update gegeven van de restauratiewerkzaamheden in het Romeinse badhuis
in Heerlen.
published_at: '2017-11-15T08:40:45Z'
duration: PT3M14S
definition: hd
@ -1228,8 +1196,8 @@ youtube_enrichment:
- video_id: -t7LVF8G6Ew
video_url: https://www.youtube.com/watch?v=-t7LVF8G6Ew
title: Vlog 10/10 | introductie RESTAURATIE Thermenmuseum Heerlen
description: In deze reeks van filmpjes introduceert de conservator van het Thermenmuseum
de 11 plekken in het Romeinse badhuis die gerestaureerd gaan worden.
description: In deze reeks van filmpjes introduceert de conservator van het Thermenmuseum de 11 plekken in het Romeinse
badhuis die gerestaureerd gaan worden.
published_at: '2017-11-15T08:40:17Z'
duration: PT1M48S
definition: hd
@ -1257,8 +1225,8 @@ youtube_enrichment:
- video_id: BlJhPcK0ZDQ
video_url: https://www.youtube.com/watch?v=BlJhPcK0ZDQ
title: Vlog 9/10 | introductie RESTAURATIE Thermenmuseum Heerlen
description: In deze reeks van filmpjes introduceert de conservator van het Thermenmuseum
de 11 plekken in het Romeinse badhuis die gerestaureerd gaan worden.
description: In deze reeks van filmpjes introduceert de conservator van het Thermenmuseum de 11 plekken in het Romeinse
badhuis die gerestaureerd gaan worden.
published_at: '2017-11-15T08:40:03Z'
duration: PT1M32S
definition: hd
@ -1286,8 +1254,8 @@ youtube_enrichment:
- video_id: Sx0lEZedmac
video_url: https://www.youtube.com/watch?v=Sx0lEZedmac
title: Vlog 8/10 | introductie RESTAURATIE Thermenmuseum Heerlen
description: In deze reeks van filmpjes introduceert de conservator van het Thermenmuseum
de 11 plekken in het Romeinse badhuis die gerestaureerd gaan worden.
description: In deze reeks van filmpjes introduceert de conservator van het Thermenmuseum de 11 plekken in het Romeinse
badhuis die gerestaureerd gaan worden.
published_at: '2017-11-15T08:39:50Z'
duration: PT1M13S
definition: hd
@ -1315,8 +1283,8 @@ youtube_enrichment:
- video_id: QttVBQGbGxg
video_url: https://www.youtube.com/watch?v=QttVBQGbGxg
title: Vlog 7/10 | introductie RESTAURATIE Thermenmuseum Heerlen
description: In deze reeks van filmpjes introduceert de conservator van het Thermenmuseum
de 11 plekken in het Romeinse badhuis die gerestaureerd gaan worden.
description: In deze reeks van filmpjes introduceert de conservator van het Thermenmuseum de 11 plekken in het Romeinse
badhuis die gerestaureerd gaan worden.
published_at: '2017-11-15T08:39:33Z'
duration: PT1M22S
definition: hd
@ -1343,8 +1311,8 @@ youtube_enrichment:
- comment_id: UgzWzOr4V9Y1_sLIO7l4AaABAg
author_display_name: '@barbrofilmhart3425'
author_channel_url: http://www.youtube.com/@barbrofilmhart3425
text: "Wat geweldig om de restauratie van het badhuis zo te kunnen volgen! \n\
En geef Karen Jeneson een eigen programma op L1 ofzo! Jee, wat een 'natural'!"
text: "Wat geweldig om de restauratie van het badhuis zo te kunnen volgen! \nEn geef Karen Jeneson een eigen programma\
\ op L1 ofzo! Jee, wat een 'natural'!"
like_count: 1
published_at: '2017-12-03T10:25:05Z'
updated_at: '2017-12-03T10:25:05Z'
@ -1353,8 +1321,8 @@ youtube_enrichment:
- video_id: wgdwnOWQ0lI
video_url: https://www.youtube.com/watch?v=wgdwnOWQ0lI
title: Vlog 6/10 | introductie RESTAURATIE Thermenmuseum Heerlen
description: In deze reeks van filmpjes introduceert de conservator van het Thermenmuseum
de 11 plekken in het Romeinse badhuis die gerestaureerd gaan worden.
description: In deze reeks van filmpjes introduceert de conservator van het Thermenmuseum de 11 plekken in het Romeinse
badhuis die gerestaureerd gaan worden.
published_at: '2017-11-15T08:38:53Z'
duration: PT53S
definition: hd
@ -1382,8 +1350,8 @@ youtube_enrichment:
- video_id: V4ryjoWYcP8
video_url: https://www.youtube.com/watch?v=V4ryjoWYcP8
title: Vlog 5/10 | introductie RESTAURATIE Thermenmuseum Heerlen
description: In deze reeks van filmpjes introduceert de conservator van het Thermenmuseum
de 11 plekken in het Romeinse badhuis die gerestaureerd gaan worden.
description: In deze reeks van filmpjes introduceert de conservator van het Thermenmuseum de 11 plekken in het Romeinse
badhuis die gerestaureerd gaan worden.
published_at: '2017-11-15T08:38:33Z'
duration: PT58S
definition: hd
@ -1411,8 +1379,8 @@ youtube_enrichment:
- video_id: ENFR3ZCiZr4
video_url: https://www.youtube.com/watch?v=ENFR3ZCiZr4
title: Vlog 4/10 | introductie RESTAURATIE Thermenmuseum Heerlen
description: In deze reeks van filmpjes introduceert de conservator van het Thermenmuseum
de 11 plekken in het Romeinse badhuis die gerestaureerd gaan worden..
description: In deze reeks van filmpjes introduceert de conservator van het Thermenmuseum de 11 plekken in het Romeinse
badhuis die gerestaureerd gaan worden..
published_at: '2017-11-15T08:38:11Z'
duration: PT59S
definition: hd
@ -1440,8 +1408,8 @@ youtube_enrichment:
- video_id: _gCPOs1kv6M
video_url: https://www.youtube.com/watch?v=_gCPOs1kv6M
title: Vlog 3/10 | introductie RESTAURATIE Thermenmuseum Heerlen
description: In deze reeks van filmpjes introduceert de conservator van het Thermenmuseum
de 11 plekken in het Romeinse badhuis die gerestaureerd gaan worden.
description: In deze reeks van filmpjes introduceert de conservator van het Thermenmuseum de 11 plekken in het Romeinse
badhuis die gerestaureerd gaan worden.
published_at: '2017-11-15T08:37:37Z'
duration: PT2M55S
definition: hd
@ -1469,8 +1437,8 @@ youtube_enrichment:
- video_id: RxXvmmTZH8I
video_url: https://www.youtube.com/watch?v=RxXvmmTZH8I
title: Vlog 2/10 | introductie RESTAURATIE Thermenmuseum Heerlen
description: In deze reeks van filmpjes introduceert de conservator van het Thermenmuseum
de 11 plekken in het Romeinse badhuis die gerestaureerd gaan worden.
description: In deze reeks van filmpjes introduceert de conservator van het Thermenmuseum de 11 plekken in het Romeinse
badhuis die gerestaureerd gaan worden.
published_at: '2017-11-13T08:25:51Z'
duration: PT3M49S
definition: hd
@ -1498,8 +1466,8 @@ youtube_enrichment:
- video_id: 6M2a6lqm4BA
video_url: https://www.youtube.com/watch?v=6M2a6lqm4BA
title: Vlog 1/10 | introductie RESTAURATIE Thermenmuseum Heerlen
description: In deze reeks van filmpjes introduceert de conservator van het Thermenmuseum
de 11 plekken in het Romeinse badhuis die gerestaureerd gaan worden.
description: In deze reeks van filmpjes introduceert de conservator van het Thermenmuseum de 11 plekken in het Romeinse
badhuis die gerestaureerd gaan worden.
published_at: '2017-11-08T13:13:09Z'
duration: PT1M21S
definition: hd
@ -1530,9 +1498,8 @@ youtube_enrichment:
- video_id: caZ99bFd41w
video_url: https://www.youtube.com/watch?v=caZ99bFd41w
title: OP BEZOEK BIJ | Miljoenenlijn
description: "Het thermenmuseum liet zich zien bij de miljoenenlijn in Simpelveld.\
\ Op de foto gaan met Romeinen, Graven naar munten en op stelten lopen waren\
\ de activiteiten die daar natuurlijk bij horen.\n\nMeer op: \nhttp://www.thermenmuseum.nl/"
description: "Het thermenmuseum liet zich zien bij de miljoenenlijn in Simpelveld. Op de foto gaan met Romeinen, Graven\
\ naar munten en op stelten lopen waren de activiteiten die daar natuurlijk bij horen.\n\nMeer op: \nhttp://www.thermenmuseum.nl/"
published_at: '2017-09-11T12:43:47Z'
duration: PT1M29S
definition: hd
@ -1559,8 +1526,8 @@ youtube_enrichment:
- video_id: gSrYPkwFMTQ
video_url: https://www.youtube.com/watch?v=gSrYPkwFMTQ
title: AVONTUREN | Beleefroute
description: "We stuurde onze Ziggi op pad met zijn familie om de beleefroute\
\ uit te proberen, en ze zijn enthousiast! Kijk mee…\n\nMeer op: \nhttp://www.thermenmuseum.nl/"
description: "We stuurde onze Ziggi op pad met zijn familie om de beleefroute uit te proberen, en ze zijn enthousiast!\
\ Kijk mee…\n\nMeer op: \nhttp://www.thermenmuseum.nl/"
published_at: '2017-09-11T12:39:47Z'
duration: PT1M40S
definition: hd
@ -1589,9 +1556,8 @@ youtube_enrichment:
- video_id: 1w2VPSsTW2Q
video_url: https://www.youtube.com/watch?v=1w2VPSsTW2Q
title: POTTENBAKKERSOVEN | Het droogproces in beeld
description: "Om de pottenbakkersoven sneller te laten drogen worden er horizontale\
\ sleuven in de verpakking gezaagd om het meer zuurstof te bieden.\n\nMeer op:\
\ \nhttp://www.thermenmuseum.nl/"
description: "Om de pottenbakkersoven sneller te laten drogen worden er horizontale sleuven in de verpakking gezaagd om\
\ het meer zuurstof te bieden.\n\nMeer op: \nhttp://www.thermenmuseum.nl/"
published_at: '2017-09-11T12:36:31Z'
duration: PT1M48S
definition: hd
@ -1616,8 +1582,8 @@ youtube_enrichment:
- video_id: raDE8bnIIGI
video_url: https://www.youtube.com/watch?v=raDE8bnIIGI
title: ROMEINS FESTIVAL | Bocholtz herleeft Sempervivetum
description: "Wat een feest in Bocholtz! Hapjes, drankjes, workshops, Romeinen\
\ en natuurlijk het fantastische theaterspel!\n\nMeer op: \nhttp://www.thermenmuseum.nl/"
description: "Wat een feest in Bocholtz! Hapjes, drankjes, workshops, Romeinen en natuurlijk het fantastische theaterspel!\n\
\nMeer op: \nhttp://www.thermenmuseum.nl/"
published_at: '2017-09-11T12:31:32Z'
duration: PT1M56S
definition: hd
@ -1648,9 +1614,8 @@ youtube_enrichment:
- video_id: pRaBch4T0fg
video_url: https://www.youtube.com/watch?v=pRaBch4T0fg
title: 'IN HET MUSEUM | Romeins festival en de opening van de expo: open&bloot!'
description: "Wat een feest in Heerlen! Hapjes, drankjes, workshops, Romeinen\
\ en natuurlijk het fantastische theaterspel! Daarnaast hebben we nog een voorstelling\
\ in de tent op het Raadhuisplein!\n\nMeer op: \nhttp://www.thermenmuseum.nl/"
description: "Wat een feest in Heerlen! Hapjes, drankjes, workshops, Romeinen en natuurlijk het fantastische theaterspel!\
\ Daarnaast hebben we nog een voorstelling in de tent op het Raadhuisplein!\n\nMeer op: \nhttp://www.thermenmuseum.nl/"
published_at: '2017-08-21T09:23:52Z'
duration: PT2M
definition: hd
@ -1681,9 +1646,8 @@ youtube_enrichment:
- video_id: NxaGPhHlOE4
video_url: https://www.youtube.com/watch?v=NxaGPhHlOE4
title: ROMEINS FESTIVAL | Heerlen herleeft Coriovallum
description: "Wat een feest in Heerlen! Hapjes, drankjes, workshops, Romeinen\
\ en natuurlijk het fantastische theaterspel! Daarnaast hebben we nog een voorstelling\
\ in de tent op het Raadhuisplein!\n\nMeer op: \nhttp://www.thermenmuseum.nl/"
description: "Wat een feest in Heerlen! Hapjes, drankjes, workshops, Romeinen en natuurlijk het fantastische theaterspel!\
\ Daarnaast hebben we nog een voorstelling in de tent op het Raadhuisplein!\n\nMeer op: \nhttp://www.thermenmuseum.nl/"
published_at: '2017-08-21T09:07:29Z'
duration: PT31S
definition: hd
@ -1731,12 +1695,11 @@ youtube_enrichment:
- video_id: V7gXuJLajz4
video_url: https://www.youtube.com/watch?v=V7gXuJLajz4
title: Bezoek het best bewaarde Romeinse gebouw van Nederland
description: 'Het Thermenmuseum Heerlen herbergt het best bewaarde Romeinse gebouw
van Nederland.
description: 'Het Thermenmuseum Heerlen herbergt het best bewaarde Romeinse gebouw van Nederland.
Neem een kijkje in het badhuis: hoe was het gebouwd en welke ruimtes waren er?
De resten van het badhuis komen zo tot leven!'
Neem een kijkje in het badhuis: hoe was het gebouwd en welke ruimtes waren er? De resten van het badhuis komen zo tot
leven!'
published_at: '2017-06-14T14:30:23Z'
duration: PT1M14S
definition: hd
@ -1764,9 +1727,8 @@ youtube_enrichment:
- video_id: z0mMlEPwJfA
video_url: https://www.youtube.com/watch?v=z0mMlEPwJfA
title: Expositie Bouwen om te Baden in het Thermenmuseum
description: De expo 'Bouwen om te baden' neemt je mee in het onderzoek naar het
badhuis. Specialisten vertellen over hun vondsten en de betekenis ervan. Zo
komen we steeds meer te weten over het exacte verhaal van het badhuis.
description: De expo 'Bouwen om te baden' neemt je mee in het onderzoek naar het badhuis. Specialisten vertellen over
hun vondsten en de betekenis ervan. Zo komen we steeds meer te weten over het exacte verhaal van het badhuis.
published_at: '2017-02-23T11:17:57Z'
duration: PT1M7S
definition: hd
@ -1999,12 +1961,10 @@ youtube_enrichment:
- video_id: zWRKVuXhh5U
video_url: https://www.youtube.com/watch?v=zWRKVuXhh5U
title: Tussen scherf en schat dag 22 mei 2016
description: "Op zondag 22 mei 2016, van 10.00 tot 17.00 uur, werd de Tussen\
\ scherf en schat-dag gehouden in het Thermenmuseum in Heerlen. Een team van\
\ archeologen en specialisten zaten klaar om schatten en vondsten te onderzoeken.\
\ \nDriehonderd bezoekers zagen de experts vele meegebrachte vondsten determineren.\
\ Er zijn vele mooie ontdekkingen gedaan zoals een Napoleontische degen, een\
\ bronstijdpijlpunt, een bijzonder tegeltje en veel metalen voorwerpen."
description: "Op zondag 22 mei 2016, van 10.00 tot 17.00 uur, werd de Tussen scherf en schat-dag gehouden in het Thermenmuseum\
\ in Heerlen. Een team van archeologen en specialisten zaten klaar om schatten en vondsten te onderzoeken. \nDriehonderd\
\ bezoekers zagen de experts vele meegebrachte vondsten determineren. Er zijn vele mooie ontdekkingen gedaan zoals een\
\ Napoleontische degen, een bronstijdpijlpunt, een bijzonder tegeltje en veel metalen voorwerpen."
published_at: '2016-05-24T07:11:53Z'
duration: PT41S
definition: hd
@ -2044,9 +2004,8 @@ youtube_enrichment:
- video_id: Sq9Ro3I5s0c
video_url: https://www.youtube.com/watch?v=Sq9Ro3I5s0c
title: MVI_5393.avi
description: "Lezing door Marlien Janssens in Thermenmuseum Heerlen.\r\n\r\nOnderwerp:\
\ wonen langs de Romeinse Weg in Coriovallum.\r\nDit in het kader van de expositie\
\ \"Er was eens Romeinse weg\". Reizen door het Noord-Romeinse Rijk"
description: "Lezing door Marlien Janssens in Thermenmuseum Heerlen.\r\n\r\nOnderwerp: wonen langs de Romeinse Weg in\
\ Coriovallum.\r\nDit in het kader van de expositie \"Er was eens Romeinse weg\". Reizen door het Noord-Romeinse Rijk"
published_at: '2011-09-21T14:03:37Z'
duration: PT49S
definition: sd
@ -2120,11 +2079,9 @@ 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
@ -2132,9 +2089,8 @@ 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
@ -2143,11 +2099,9 @@ 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
@ -2155,9 +2109,8 @@ 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
@ -2166,9 +2119,8 @@ 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: 50.885349
@ -2207,9 +2159,8 @@ digital_platform_v2:
platform_name: Romeinse villas in Limburg Website
platform_url: https://www.hetromeinsmuseum.nl/zien-en-doen/romeinse-villas-in-limburg
platform_type: DISCOVERY_PORTAL
description: Na Leiden en Venlo is deze expositie geland midden in het Romeinse
villalandschap waar de veel van de vondsten zijn gedaan. Tot 5 januari te bezoeken
in het centrum van Heerlen.
description: Na Leiden en Venlo is deze expositie geland midden in het Romeinse villalandschap waar de veel van de vondsten
zijn gedaan. Tot 5 januari te bezoeken in het centrum van Heerlen.
language: en
og_image: null
favicon: https://cdn.prod.website-files.com/6759485406228e2a9f2a9487/67594a731409f461d9a655de_hrm-logo-32.png
@ -2250,8 +2201,7 @@ timespan:
description: is opgericht en geopend in 1977
- date: '2024-08-26'
type: founding
description: opgericht op 26 augustus 2024 ten behoeve van de toekomstige exploitatie
van het nieuwe museumgebouw
description: opgericht op 26 augustus 2024 ten behoeve van de toekomstige exploitatie van het nieuwe museumgebouw
timeline_enrichment:
timeline_events:
- event_type: FOUNDING
@ -2265,13 +2215,11 @@ timeline_enrichment:
- https://nl.wikipedia.org/wiki/Thermenmuseum
- https://museumtijdschrift.nl/artikelen/nieuws/heerlen-krijgt-een-nieuw-museum-het-romeins-museum/
- https://www.kraaijvanger.nl/nl/projecten/museum-de-thermen
linkup_query: '"Het Romeins Museum (voorheen Thermenmuseum)" Heerlen opgericht
OR gesticht OR sinds'
linkup_answer: Het Thermenmuseum in Heerlen is opgericht en geopend in 1977. Dit
museum, gebouwd rond de opgraving van het Romeinse badhuis, wordt momenteel
omgevormd tot Het Romeins Museum, dat naar verwachting in 2027 of 2028 zal openen.
De Stichting Het Romeins Museum is opgericht op 26 augustus 2024 ten behoeve
van de toekomstige exploitatie van het nieuwe museumgebouw.
linkup_query: '"Het Romeins Museum (voorheen Thermenmuseum)" Heerlen opgericht OR gesticht OR sinds'
linkup_answer: Het Thermenmuseum in Heerlen is opgericht en geopend in 1977. Dit museum, gebouwd rond de opgraving van
het Romeinse badhuis, wordt momenteel omgevormd tot Het Romeins Museum, dat naar verwachting in 2027 of 2028 zal openen.
De Stichting Het Romeins Museum is opgericht op 26 augustus 2024 ten behoeve van de toekomstige exploitatie van het
nieuwe museumgebouw.
fetch_timestamp: '2025-12-15T18:18:16.665292+00:00'
archive_path: web/0436/linkup/linkup_founding_20251215T181816Z.json
extraction_method: linkup_answer_regex
@ -2281,16 +2229,13 @@ timeline_enrichment:
event_date: '2024-08-26'
date_precision: day
approximate: false
description: opgericht op 26 augustus 2024 ten behoeve van de toekomstige exploitatie
van het nieuwe museumgebouw
description: opgericht op 26 augustus 2024 ten behoeve van de toekomstige exploitatie van het nieuwe museumgebouw
source_urls: *id001
linkup_query: '"Het Romeins Museum (voorheen Thermenmuseum)" Heerlen opgericht
OR gesticht OR sinds'
linkup_answer: Het Thermenmuseum in Heerlen is opgericht en geopend in 1977. Dit
museum, gebouwd rond de opgraving van het Romeinse badhuis, wordt momenteel
omgevormd tot Het Romeins Museum, dat naar verwachting in 2027 of 2028 zal openen.
De Stichting Het Romeins Museum is opgericht op 26 augustus 2024 ten behoeve
van de toekomstige exploitatie van het nieuwe museumgebouw.
linkup_query: '"Het Romeins Museum (voorheen Thermenmuseum)" Heerlen opgericht OR gesticht OR sinds'
linkup_answer: Het Thermenmuseum in Heerlen is opgericht en geopend in 1977. Dit museum, gebouwd rond de opgraving van
het Romeinse badhuis, wordt momenteel omgevormd tot Het Romeins Museum, dat naar verwachting in 2027 of 2028 zal openen.
De Stichting Het Romeins Museum is opgericht op 26 augustus 2024 ten behoeve van de toekomstige exploitatie van het
nieuwe museumgebouw.
fetch_timestamp: '2025-12-15T18:18:16.665292+00:00'
archive_path: web/0436/linkup/linkup_founding_20251215T181816Z.json
extraction_method: linkup_answer_regex
@ -2380,8 +2325,8 @@ wikidata_enrichment:
instance_of: &id002
- id: Q33506
label: museum
description: institution that holds artifacts and other objects of scientific,
artistic, cultural, historical, or other importance
description: institution that holds artifacts and other objects of scientific, artistic, cultural, historical, or other
importance
wikidata_instance_of: *id002
wikidata_location:
country: &id003
@ -2512,3 +2457,39 @@ logo_enrichment:
has_favicon: true
has_og_image: false
favicon_count: 2
mission_statement:
- statement_id: https://nde.nl/ontology/hc/mission/nl-li-hee-m-rmvtm/mission-2026
statement_type: mission
statement_text: 'Het Romeins Museum - met het Romeinse badhuis als nationaal sleutelstuk - draagt de geschiedenis van de
Romeinse tijd over aan de huidige en toekomstige generaties. We bieden reflectie door tijdsdiepte: een beter begrip van
onze tijd, ons leven, door een groter perspectief op tijd.'
statement_language: nl
extracted_verbatim: true
source_url: https://www.hetromeinsmuseum.nl/over-ons
content_hash: sha256-laJqk42RHY8W5T/2ceE4I69str823hdLiEm2tfwOPfA=
provenance:
statement_created_at: '2026-01-04T16:43:25.905370+00:00'
source_archived_at: '2026-01-04T16:42:51.632560+00:00'
retrieval_agent: linkup-api
extraction_agent: zai-glm/glm-4.7
extraction_confidence: 0.95
prov:wasDerivedFrom: https://www.hetromeinsmuseum.nl/over-ons
prov:generatedAtTime: '2026-01-04T16:43:25.905370+00:00'
source_section: Over ons
- statement_id: https://nde.nl/ontology/hc/mission/nl-li-hee-m-rmvtm/vision-2026
statement_type: vision
statement_text: Als hét Romeins museum in Nederland richten we ons over de huidige grenzen heen en verbinden ons met partners
om samen het Romeinse verleden dichtbij te brengen en te inspireren.
statement_language: nl
extracted_verbatim: true
source_url: https://www.hetromeinsmuseum.nl/over-ons
content_hash: sha256-XtDarHlTyOYgWwHcYHNI57p9KB5kbHhsAsLFMBHs68g=
provenance:
statement_created_at: '2026-01-04T16:43:25.905462+00:00'
source_archived_at: '2026-01-04T16:42:51.632560+00:00'
retrieval_agent: linkup-api
extraction_agent: zai-glm/glm-4.7
extraction_confidence: 0.95
prov:wasDerivedFrom: https://www.hetromeinsmuseum.nl/over-ons
prov:generatedAtTime: '2026-01-04T16:43:25.905462+00:00'
source_section: Over ons

View file

@ -71,8 +71,7 @@ provenance:
linkup_timespan:
- source_type: linkup_web_search
fetch_timestamp: '2025-12-15T18:29:17.853161+00:00'
search_query: '"Regioarchief Sittard-Geleen" Sittard opgericht OR gesticht OR
sinds'
search_query: '"Regioarchief Sittard-Geleen" Sittard opgericht OR gesticht OR sinds'
source_urls:
- https://www.archieven.nl/nl/zoeken?miview=ldt&mivast=0&mizig=190&miadt=1&miaet=14&micode=ORGANISATIES&minr=771570
- https://www.regioarchiefsittard-geleen.nl/bronnen/?mivast=111&mizig=210&miadt=111&miview=inv2&milang=nl&micode=321&minr=898279
@ -96,8 +95,7 @@ provenance:
notes:
- Provenance tracking added retroactively
- claim_level_provenance available in sources section
- Removed incorrect wikidata_enrichment on 2025-12-08T08:18:56.191564+00:00. Re-enrichment
required with proper matching.
- Removed incorrect wikidata_enrichment on 2025-12-08T08:18:56.191564+00:00. Re-enrichment required with proper matching.
- Canonical location normalized on 2025-12-09T12:47:08Z
qp_resolution_timestamp: '2025-11-27T15:24:04.665732+00:00'
google_maps_enrichment:
@ -174,15 +172,13 @@ ghcid:
ghcid_numeric: 4253220926569042103
valid_from: '2025-12-02T14:56:45.615377+00:00'
valid_to: null
reason: GHCID regenerated with Google Maps locality fix (Dec 2025) - name suffix
added for collision
reason: GHCID regenerated with Google Maps locality fix (Dec 2025) - name suffix added for collision
- ghcid: NL-LI-SIT-A-RASG-regioarchief_sittard_geleen
ghcid_uuid: 549b6fe3-48e1-5735-bf3f-047306da135e
ghcid_numeric: 4253220926569042103
valid_from: ''
valid_to: '2025-12-14T21:59:23.376556+00:00'
reason: 'Collision fix: had partner''s GHCID, corrected to institution''s own
GHCID based on name ''Gemeente Sittard-Geleen'''
reason: 'Collision fix: had partner''s GHCID, corrected to institution''s own GHCID based on name ''Gemeente Sittard-Geleen'''
identifiers:
- identifier_scheme: GHCID
identifier_value: NL-LI-SIT-A-RASG-gemeente_sittard_geleen
@ -270,11 +266,9 @@ 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
@ -282,9 +276,8 @@ 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
@ -293,11 +286,9 @@ 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
@ -305,9 +296,8 @@ 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
@ -316,9 +306,8 @@ 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...
wikidata_enrichment:
wikidata_entity_id: Q121224886
@ -407,8 +396,7 @@ digital_platform_v2:
platform_name: Home - RegioArchief Sittard-Geleen Website
platform_url: https://regioarchiefsittard-geleen.nl/
platform_type: DIGITAL_ARCHIVE
description: Het RegioArchief Sittard-Geleen geeft toegang tot de geschiedenis
van Sittard-Geleen en de omliggende regio.
description: Het RegioArchief Sittard-Geleen geeft toegang tot de geschiedenis van Sittard-Geleen en de omliggende regio.
language: nl
og_image: null
favicon: https://regioarchiefsittard-geleen.nl/wp-content/uploads/2024/09/cropped-Favicon_1-32x32.png
@ -447,21 +435,18 @@ timeline_enrichment:
event_date: '1975'
date_precision: year
approximate: false
description: opgericht in 1975 als Gemeentelijke Archiefdienst in de voormalige
gemeente Sittard
description: opgericht in 1975 als Gemeentelijke Archiefdienst in de voormalige gemeente Sittard
source_urls: &id005
- https://www.archieven.nl/nl/zoeken?mizig=190&miadt=1&miaet=14&micode=ORGANISATIES&minr=771570&miview=ldt
- https://www.archieven.nl/nl/zoeken?miview=ldt&mivast=0&mizig=190&miadt=1&miaet=14&micode=ORGANISATIES&minr=771570
- https://www.archieven.nl/nl/zoeken?mistart=24&mivast=0&mizig=221&miadt=111&milang=nl&misort=personen%7Casc&miview=gal
- https://www.regioarchiefsittard-geleen.nl/bronnen/?mivast=111&mizig=210&miadt=111&miview=inv2&milang=nl&micode=321&minr=898279
- https://www.historiesittard.nl/typo3_src-8.7.9/index.php?id=18
linkup_query: '"Regioarchief Sittard-Geleen" Sittard opgericht OR gesticht OR
sinds'
linkup_answer: Het Regioarchief Sittard-Geleen is in zijn oorsprong opgericht
in 1975 als Gemeentelijke Archiefdienst in de voormalige gemeente Sittard. Vanaf
1999 heette het Stadsarchief Sittard-Geleen. De naam veranderde in 2010 in Euregionaal
Historisch Centrum (EHC), in 2015 in Archief De Domijnen (ADD) en vanaf 2024
zal het weer de naam RegioArchief Gemeente Sittard-Geleen (RASG) dragen.
linkup_query: '"Regioarchief Sittard-Geleen" Sittard opgericht OR gesticht OR sinds'
linkup_answer: Het Regioarchief Sittard-Geleen is in zijn oorsprong opgericht in 1975 als Gemeentelijke Archiefdienst
in de voormalige gemeente Sittard. Vanaf 1999 heette het Stadsarchief Sittard-Geleen. De naam veranderde in 2010 in
Euregionaal Historisch Centrum (EHC), in 2015 in Archief De Domijnen (ADD) en vanaf 2024 zal het weer de naam RegioArchief
Gemeente Sittard-Geleen (RASG) dragen.
fetch_timestamp: '2025-12-15T18:29:29.938479+00:00'
archive_path: web/0366/linkup/linkup_founding_20251215T182929Z.json
extraction_method: linkup_answer_regex
@ -473,13 +458,11 @@ timeline_enrichment:
approximate: false
description: werd opgericht
source_urls: *id005
linkup_query: '"Regioarchief Sittard-Geleen" Sittard opgericht OR gesticht OR
sinds'
linkup_answer: Het Regioarchief Sittard-Geleen is in zijn oorsprong opgericht
in 1975 als Gemeentelijke Archiefdienst in de voormalige gemeente Sittard. Vanaf
1999 heette het Stadsarchief Sittard-Geleen. De naam veranderde in 2010 in Euregionaal
Historisch Centrum (EHC), in 2015 in Archief De Domijnen (ADD) en vanaf 2024
zal het weer de naam RegioArchief Gemeente Sittard-Geleen (RASG) dragen.
linkup_query: '"Regioarchief Sittard-Geleen" Sittard opgericht OR gesticht OR sinds'
linkup_answer: Het Regioarchief Sittard-Geleen is in zijn oorsprong opgericht in 1975 als Gemeentelijke Archiefdienst
in de voormalige gemeente Sittard. Vanaf 1999 heette het Stadsarchief Sittard-Geleen. De naam veranderde in 2010 in
Euregionaal Historisch Centrum (EHC), in 2015 in Archief De Domijnen (ADD) en vanaf 2024 zal het weer de naam RegioArchief
Gemeente Sittard-Geleen (RASG) dragen.
fetch_timestamp: '2025-12-15T18:29:29.938479+00:00'
archive_path: web/0366/linkup/linkup_founding_20251215T182929Z.json
extraction_method: linkup_answer_regex
@ -489,16 +472,14 @@ timeline_enrichment:
event_date: '2010'
date_precision: year
approximate: false
description: naam veranderde in 2010 in Euregionaal Historisch Centrum (EHC),
in 2015 in Archief De Domijnen (ADD) en vanaf 2024 zal het weer de naam RegioArchief
description: naam veranderde in 2010 in Euregionaal Historisch Centrum (EHC), in 2015 in Archief De Domijnen (ADD) en
vanaf 2024 zal het weer de naam RegioArchief
source_urls: *id005
linkup_query: '"Regioarchief Sittard-Geleen" Sittard opgericht OR gesticht OR
sinds'
linkup_answer: Het Regioarchief Sittard-Geleen is in zijn oorsprong opgericht
in 1975 als Gemeentelijke Archiefdienst in de voormalige gemeente Sittard. Vanaf
1999 heette het Stadsarchief Sittard-Geleen. De naam veranderde in 2010 in Euregionaal
Historisch Centrum (EHC), in 2015 in Archief De Domijnen (ADD) en vanaf 2024
zal het weer de naam RegioArchief Gemeente Sittard-Geleen (RASG) dragen.
linkup_query: '"Regioarchief Sittard-Geleen" Sittard opgericht OR gesticht OR sinds'
linkup_answer: Het Regioarchief Sittard-Geleen is in zijn oorsprong opgericht in 1975 als Gemeentelijke Archiefdienst
in de voormalige gemeente Sittard. Vanaf 1999 heette het Stadsarchief Sittard-Geleen. De naam veranderde in 2010 in
Euregionaal Historisch Centrum (EHC), in 2015 in Archief De Domijnen (ADD) en vanaf 2024 zal het weer de naam RegioArchief
Gemeente Sittard-Geleen (RASG) dragen.
fetch_timestamp: '2025-12-15T18:29:29.938479+00:00'
archive_path: web/0366/linkup/linkup_founding_20251215T182929Z.json
extraction_method: linkup_answer_regex
@ -566,3 +547,21 @@ logo_enrichment:
has_favicon: true
has_og_image: false
favicon_count: 3
mission_statement:
- statement_id: https://nde.nl/ontology/hc/mission/nl-li-sit-a-rasg/mission-2026
statement_type: mission
statement_text: Onze medewerkers zetten zich in om onze archieven en collecties goed te bewaren, te beheren en beschikbaar
te stellen aan huidige en toekomstige generaties.
statement_language: nl
extracted_verbatim: true
source_url: https://regioarchiefsittard-geleen.nl/over
content_hash: sha256-Xzr6Ds0B56nu3J7qumzm+ZucuaJrsiSQRinQFkCMnxA=
provenance:
statement_created_at: '2026-01-04T15:48:31.332816+00:00'
source_archived_at: '2026-01-04T15:48:05.176778+00:00'
retrieval_agent: linkup-api
extraction_agent: zai-glm/glm-4.7
extraction_confidence: 0.9
prov:wasDerivedFrom: https://regioarchiefsittard-geleen.nl/over
prov:generatedAtTime: '2026-01-04T15:48:31.332816+00:00'
source_section: Wat we doen

View file

@ -5,8 +5,7 @@ original_entry:
type:
- M
comment:
- label: why is there an Wikidata entry for the former museum of Bommel van Dam?
Q123507970? This museum still exists.
- label: why is there an Wikidata entry for the former museum of Bommel van Dam? Q123507970? This museum still exists.
entry_index: 439
processing_timestamp: '2025-11-27T15:23:13.210581+00:00'
enrichment_status: success
@ -107,8 +106,7 @@ provenance:
notes:
- Provenance tracking added retroactively
- claim_level_provenance available in sources section
- Removed incorrect wikidata_enrichment on 2025-12-08T08:18:59.079962+00:00. Re-enrichment
required with proper matching.
- Removed incorrect wikidata_enrichment on 2025-12-08T08:18:59.079962+00:00. Re-enrichment required with proper matching.
- Canonical location normalized on 2025-12-09T12:48:15Z
qp_resolution_timestamp: '2025-11-27T15:24:05.342828+00:00'
google_maps_enrichment:
@ -229,33 +227,30 @@ google_maps_enrichment:
author_uri: https://www.google.com/maps/contrib/115019157030458773341/reviews
rating: 4
relative_time_description: 2 maanden geleden
text: De satirische expositie was leuk, de vaste collectie trok wat minder de
aandacht. Pluspunten voor het gratis mini zine dat je op zolder kan maken!
text: De satirische expositie was leuk, de vaste collectie trok wat minder de aandacht. Pluspunten voor het gratis mini
zine dat je op zolder kan maken!
publish_time: '2025-09-13T16:54:39.252945616Z'
- author_name: Carlo Bernardi
author_uri: https://www.google.com/maps/contrib/109461144622151451082/reviews
rating: 5
relative_time_description: 3 maanden geleden
text: 'Bij een eerder bezoek aan Venlo viel direct de "Duikbril" op - en deed
me denken aan Museum de Fundatie (zelfde architect: BiermanHenket). De laatste
dag van de tentoonstelling over Giselle Kuster, was een mooi excuus om eens
binnen te gaan kijken. Mooie ontdekking! Ook leuk om een van de werken van Bram
Bogart uit de vaste collectie te zien - een van mijn favoriete kunstenaars!'
text: 'Bij een eerder bezoek aan Venlo viel direct de "Duikbril" op - en deed me denken aan Museum de Fundatie (zelfde
architect: BiermanHenket). De laatste dag van de tentoonstelling over Giselle Kuster, was een mooi excuus om eens binnen
te gaan kijken. Mooie ontdekking! Ook leuk om een van de werken van Bram Bogart uit de vaste collectie te zien - een
van mijn favoriete kunstenaars!'
publish_time: '2025-08-18T22:01:05.235210193Z'
- author_name: Jacob Mannessen
author_uri: https://www.google.com/maps/contrib/118146866128755131407/reviews
rating: 5
relative_time_description: 4 maanden geleden
text: Heel leuk museum met een prachtige tentoonstelling van Giselle kuster. Voor
mij weer een onbekende schilder en zoals gewoonlijk meer dan de moeite waard.
Een aanrader voor een liefhebber van goede schilders.
text: Heel leuk museum met een prachtige tentoonstelling van Giselle kuster. Voor mij weer een onbekende schilder en zoals
gewoonlijk meer dan de moeite waard. Een aanrader voor een liefhebber van goede schilders.
publish_time: '2025-07-09T19:19:31.987850700Z'
- author_name: Stefan van Zanten
author_uri: https://www.google.com/maps/contrib/102213604272160279360/reviews
rating: 5
relative_time_description: een jaar geleden
text: 'Erg mooie tentoonstelling van het modern-realistische werk van Evert Thielen.
Tot eind februari 2025.
text: 'Erg mooie tentoonstelling van het modern-realistische werk van Evert Thielen. Tot eind februari 2025.
Leuk restaurant met mooie kaart, en vlotte en vriendelijke bediening.
@ -475,11 +470,9 @@ 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
@ -487,9 +480,8 @@ 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
@ -498,11 +490,9 @@ 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
@ -510,9 +500,8 @@ 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
@ -521,9 +510,8 @@ 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...
wikidata_enrichment:
wikidata_entity_id: Q1994770
@ -612,8 +600,7 @@ wikidata_enrichment:
instance_of: &id001
- id: Q207694
label: art museum
description: building or space for the exhibition of art (for institution, use
Q3196771)
description: building or space for the exhibition of art (for institution, use Q3196771)
wikidata_instance_of: *id001
wikidata_location:
country: &id003
@ -665,8 +652,7 @@ timespan:
end_of_the_end: null
sources:
- 'Wikidata P571 (inception): https://www.wikidata.org/wiki/Q1994770'
notes: Museum van Bommel van Dam founded 1971. Modern and contemporary art museum
in Venlo.
notes: Museum van Bommel van Dam founded 1971. Modern and contemporary art museum in Venlo.
location:
latitude: 51.367307499999995
longitude: 6.171297
@ -704,8 +690,8 @@ digital_platform_v2:
platform_name: Van en voor iedereen Website
platform_url: https://www.vanbommelvandam.nl/
platform_type: DISCOVERY_PORTAL
description: Museum van Bommel van Dam heeft een ruime collectie moderne en hedendaagse
kunst. Hét museum van de regio Venlo is er van en voor iedereen.
description: Museum van Bommel van Dam heeft een ruime collectie moderne en hedendaagse kunst. Hét museum van de regio
Venlo is er van en voor iedereen.
language: nl
og_image: https://d2r8u91auwtfcs.cloudfront.net/images/_1200x630_crop_center-center_82_none/2021.06-Postkantoor-exterieur-3.jpg?mtime=1625659667
favicon: http://www.vanbommelvandam.nl/dist/assets/favicons/favicon.ico
@ -779,3 +765,44 @@ logo_enrichment:
has_favicon: true
has_og_image: true
favicon_count: 38
mission_statement:
- statement_id: https://nde.nl/ontology/hc/mission/nl-li-ven-m-mbd/mission-2026
statement_type: mission
statement_text: Museum van Bommel van Dam gelooft in de kracht van moderne en hedendaagse kunst. De kracht om te verwonderen,
te verbinden en te veranderen. We vinden dat iedereen in onze samenleving de kans moet krijgen om die kracht te ervaren.
We zijn er namelijk van overtuigd dat kunst mensen aan het denken zet over de wereld, over hun directe omgeving en over
hun eigen rol in de maatschappij. We geloven dat bewustwording door middel van moderne en hedendaagse kunst bijdraagt
aan de maatschappij van morgen.
statement_language: nl
extracted_verbatim: true
source_url: https://www.vanbommelvandam.nl/missie-en-visie
content_hash: sha256-CocNvgqbnOguZhGWVvBpz00g9PB/gaNBJ1fbrmhECH8=
provenance:
statement_created_at: '2026-01-04T15:05:41.798059+00:00'
source_archived_at: '2026-01-04T15:05:04.175308+00:00'
retrieval_agent: linkup-api
extraction_agent: zai-glm/glm-4.7
extraction_confidence: 1.0
prov:wasDerivedFrom: https://www.vanbommelvandam.nl/missie-en-visie
prov:generatedAtTime: '2026-01-04T15:05:41.798059+00:00'
source_section: Missie en visie
- statement_id: https://nde.nl/ontology/hc/mission/nl-li-ven-m-mbd/vision-2026
statement_type: vision
statement_text: Als euregionaal museum voor moderne en hedendaagse kunst staat museum van Bommel van Dam middenin de samenleving.
Interactie met ons publiek vormt de basis voor onze programmering. Wat houdt mensen bezig en hoe kunnen we daar door middel
van tentoonstellingen, activiteiten en projecten op inspelen? We zoeken hierin naar verbindingen met alle lagen van de
samenleving. Moderne en hedendaagse kunst is voor ons het middel om die verbindingen tot stand te brengen. Op deze manier
dragen we bij aan de maatschappelijke en stedelijke ontwikkeling van Venlo en de rest van de regio.
statement_language: nl
extracted_verbatim: true
source_url: https://www.vanbommelvandam.nl/missie-en-visie
content_hash: sha256-2xrMinSenHuMeGY6dupaIrDQZewGX/OJTKgkGWwCQ3I=
provenance:
statement_created_at: '2026-01-04T15:05:41.798081+00:00'
source_archived_at: '2026-01-04T15:05:04.175308+00:00'
retrieval_agent: linkup-api
extraction_agent: zai-glm/glm-4.7
extraction_confidence: 1.0
prov:wasDerivedFrom: https://www.vanbommelvandam.nl/missie-en-visie
prov:generatedAtTime: '2026-01-04T15:05:41.798081+00:00'
source_section: Missie en visie

View file

@ -3,12 +3,10 @@ custodian_name:
emic_name_source: linkedin
institution_type:
- M
description: >-
Audio and video history museum showcasing the evolution from wax cylinders
(wasrol) to DVDs. Features vintage audio equipment, gramophones, tape recorders,
and early video technology. Only open for groups (10-25 people) by appointment.
description: Audio and video history museum showcasing the evolution from wax cylinders (wasrol) to DVDs. Features vintage
audio equipment, gramophones, tape recorders, and early video technology. Only open for groups (10-25 people) by appointment.
website: https://www.museumwasrol.nl/
phone: '+31 77 382 1223'
phone: +31 77 382 1223
linkedin_enrichment:
linkedin_url: https://www.linkedin.com/company/museum-van-wasrol-tot-dvd
linkedin_slug: museum-van-wasrol-tot-dvd
@ -26,7 +24,7 @@ linkedin_enrichment:
schema_version: 1.0.0
location:
street_address: Egerbosweg 233
postal_code: '5927 NM'
postal_code: 5927 NM
city: Venlo
city_detail: Boekend (village within Venlo municipality)
region: LI
@ -108,3 +106,36 @@ wikidata_enrichment:
enrichment_timestamp: '2025-01-13T00:00:00Z'
enrichment_method: manual_wikidata_lookup
notes: null
mission_statement:
- statement_id: https://nde.nl/ontology/hc/mission/nl-li-ven-m-mwd/mission-2026
statement_type: mission
statement_text: In dit museum wordt de geschiedenis van beeld en geluid zichtbaar en hoorbaar gemaakt.
statement_language: nl
extracted_verbatim: true
source_url: https://www.museumwasrol.nl/missie-en-visie
content_hash: sha256-hM4NaJJI1YbZfe0jTqFTgXO2rXEtCqmAWY4F9Q8sc7U=
provenance:
statement_created_at: '2026-01-04T13:15:31.299899+00:00'
source_archived_at: '2026-01-04T13:13:42.256246+00:00'
retrieval_agent: linkup-api
extraction_agent: zai-glm/glm-4.7
extraction_confidence: 0.75
prov:wasDerivedFrom: https://www.museumwasrol.nl/missie-en-visie
prov:generatedAtTime: '2026-01-04T13:15:31.299899+00:00'
source_section: Welkom; Cultuurhistorisch erfgoed
- statement_id: https://nde.nl/ontology/hc/mission/nl-li-ven-m-mwd/goal-2026
statement_type: goal
statement_text: De kennismaking met dit stukje technisch verleden inspireert en ontwikkelt creativiteit.
statement_language: nl
extracted_verbatim: true
source_url: https://www.museumwasrol.nl/missie-en-visie
content_hash: sha256-qOpVo+Ec6rKDlm+Rul0mUw8kv5X0iAaeT/beqxNEzpc=
provenance:
statement_created_at: '2026-01-04T13:15:31.299911+00:00'
source_archived_at: '2026-01-04T13:13:42.256246+00:00'
retrieval_agent: linkup-api
extraction_agent: zai-glm/glm-4.7
extraction_confidence: 0.75
prov:wasDerivedFrom: https://www.museumwasrol.nl/missie-en-visie
prov:generatedAtTime: '2026-01-04T13:15:31.299911+00:00'
source_section: Welkom; Cultuurhistorisch erfgoed

View file

@ -298,18 +298,16 @@ google_maps_enrichment:
author_uri: https://www.google.com/maps/contrib/109968383289642173238/reviews
rating: 4
relative_time_description: een maand geleden
text: 'Ik heb het idee dat de mensen die hier werken echt hun uiterste best doen
om hun burgers goed te informeren.
text: 'Ik heb het idee dat de mensen die hier werken echt hun uiterste best doen om hun burgers goed te informeren.
Update 2025
Opnieuw een bezoek mogen brengen en weer aangenaam verrast door de kennis
en gastvrijheid.
Opnieuw een bezoek mogen brengen en weer aangenaam verrast door de kennis en gastvrijheid.
Het architectuur van het gebouw is prachtig, maar het stadsarchief is pas echt
leerzaam. Hier komen verleden en toekomst mooi samen.
Het architectuur van het gebouw is prachtig, maar het stadsarchief is pas echt leerzaam. Hier komen verleden en toekomst
mooi samen.
Vrijwilligers en medewerkers: bedankt voor jullie geduld en passie!'
@ -320,20 +318,19 @@ google_maps_enrichment:
relative_time_description: 4 jaar geleden
text: 'De regel is dat iedereen 1,5 meter afstand houdt.
Het Stadsarchief Breda bestaat sinds 1862 en streeft ernaar een grote hoeveelheid
informatie over de stad en de Baronie van Breda te bewaren.
Het Stadsarchief Breda bestaat sinds 1862 en streeft ernaar een grote hoeveelheid informatie over de stad en de Baronie
van Breda te bewaren.
Het gratis te bezoeken archief is sinds 1998 gevestigd in de voormalige Chassekazerne
in de binnenstad in de wijk Chassé Park.'
Het gratis te bezoeken archief is sinds 1998 gevestigd in de voormalige Chassekazerne in de binnenstad in de wijk Chassé
Park.'
publish_time: '2021-08-10T07:31:20.087909Z'
- author_name: Henk Pas
author_uri: https://www.google.com/maps/contrib/106497526748277265107/reviews
rating: 5
relative_time_description: 2 jaar geleden
text: Was opendag een wandeling met uitleg over de huizen aan de buitenkantsingel
intersant en filmpje alle ogen zin gericht op Kwatta Breda en blind walls op
het stadsarchief
text: Was opendag een wandeling met uitleg over de huizen aan de buitenkantsingel intersant en filmpje alle ogen zin gericht
op Kwatta Breda en blind walls op het stadsarchief
publish_time: '2023-04-23T17:23:06.595901Z'
- author_name: Paul Thijssen
author_uri: https://www.google.com/maps/contrib/116748585186322552713/reviews
@ -498,9 +495,8 @@ youtube_enrichment:
channel_id: UCo9JZGQQ16O-jTHH89YwUiQ
channel_url: https://www.youtube.com/channel/UCo9JZGQQ16O-jTHH89YwUiQ
title: Stadsarchief Breda
description: 'Alles over vroeger, voor iedereen van nu: Stadsarchief Breda verzamelt
en beheert de geschiedenis van de stad en zijn inwoners. Die rijke historie
stelt Stadsarchief Breda gratis ter beschikking in woord en beeld, tastbaar
description: 'Alles over vroeger, voor iedereen van nu: Stadsarchief Breda verzamelt en beheert de geschiedenis van de
stad en zijn inwoners. Die rijke historie stelt Stadsarchief Breda gratis ter beschikking in woord en beeld, tastbaar
en online.'
custom_url: '@stadsarchiefbreda3874'
published_at: '2014-12-30T10:13:36Z'
@ -517,21 +513,16 @@ youtube_enrichment:
- video_id: MN5UeqyCf-g
video_url: https://www.youtube.com/watch?v=MN5UeqyCf-g
title: 'Breda Vertelt: Hanna Dolgushina'
description: 'In 2022 viel Rusland Oekraïne aan en sindsdien woedt er een verschrikkelijke
oorlog. Veel Oekraïense burgers zijn gevlucht voor het geweld. Ook Breda biedt
deze vluchtelingen een veilig onderkomen. We spreken Hanna Dolgushina in de
Koepel in het bijzijn van Svitlana Kandyba zodat zij Hanna kan ondersteunen
bij het vertellen van haar verhaal.
description: 'In 2022 viel Rusland Oekraïne aan en sindsdien woedt er een verschrikkelijke oorlog. Veel Oekraïense burgers
zijn gevlucht voor het geweld. Ook Breda biedt deze vluchtelingen een veilig onderkomen. We spreken Hanna Dolgushina
in de Koepel in het bijzijn van Svitlana Kandyba zodat zij Hanna kan ondersteunen bij het vertellen van haar verhaal.
Hanna is een Oekraïense kunstenares die na haar vlucht sinds 2022 in de Koepel
woont en daar kunstzinnige workshops voor kinderen en volwassenen organiseert.
Ze heeft ervaren dat het uitdrukken van emoties via tekenen en schilderen kan
helpen om de moeilijke gevoelens van gevluchte mensen zichtbaar te maken. ,,Wat
ik mooi vind aan kunst, is dat het ons helpt om misschien ergens onbewust, de
pijn die in ons hart is te uiten. Veel mensen die komen, zeggen dat ze geen
verstand hebben van tekenen of schilderen, dat ze het niet kunnen. Maar toch
gaan ze iets doen en tijdens het doen gaan ze in gesprek met elkaar en dat is
het belangrijkste stukje. Door dat gesprek steunen ze elkaar en helpen ze elkaar
Hanna is een Oekraïense kunstenares die na haar vlucht sinds 2022 in de Koepel woont en daar kunstzinnige workshops
voor kinderen en volwassenen organiseert. Ze heeft ervaren dat het uitdrukken van emoties via tekenen en schilderen
kan helpen om de moeilijke gevoelens van gevluchte mensen zichtbaar te maken. ,,Wat ik mooi vind aan kunst, is dat het
ons helpt om misschien ergens onbewust, de pijn die in ons hart is te uiten. Veel mensen die komen, zeggen dat ze geen
verstand hebben van tekenen of schilderen, dat ze het niet kunnen. Maar toch gaan ze iets doen en tijdens het doen gaan
ze in gesprek met elkaar en dat is het belangrijkste stukje. Door dat gesprek steunen ze elkaar en helpen ze elkaar
om weer door te gaan."'
published_at: '2025-08-28T09:32:17Z'
duration: PT10M59S
@ -570,12 +561,10 @@ youtube_enrichment:
- video_id: 0SaAuvW69Lw
video_url: https://www.youtube.com/watch?v=0SaAuvW69Lw
title: 'Breda Vertelt: Den Boerenstamppot'
description: Op 1 mei 2025 zijn Marloes en Fred van Weerd na 53 jaar gestopt met
restaurant Den Boerenstamppot. Hun restaurant in de Schoolstraat stond bekend
om de driegangenmenus, met stamppot als hoofdgerecht, tegen een lage vaste
prijs. In dit interview vertellen ze hoe ze in die jaren het bekende restaurant
vanaf niets opgebouwd hebben en hoe heel veel Bredanaars Marloes en Fred in
hun hart hebben gesloten!
description: Op 1 mei 2025 zijn Marloes en Fred van Weerd na 53 jaar gestopt met restaurant Den Boerenstamppot. Hun restaurant
in de Schoolstraat stond bekend om de driegangenmenus, met stamppot als hoofdgerecht, tegen een lage vaste prijs. In
dit interview vertellen ze hoe ze in die jaren het bekende restaurant vanaf niets opgebouwd hebben en hoe heel veel
Bredanaars Marloes en Fred in hun hart hebben gesloten!
published_at: '2025-07-01T08:30:38Z'
duration: PT15M31S
definition: hd
@ -593,16 +582,12 @@ youtube_enrichment:
- comment_id: UgynptZhc_A-_WCqJ094AaABAg
author_display_name: '@Fastbikkel'
author_channel_url: http://www.youtube.com/@Fastbikkel
text: "Ik ben net 2 seconden aan t kijken en ik vind t nu al geweldig. Duim\
\ omhoog. Ik geef zo de rest van de review ;-)\nEens met de mening over de\
\ stamppot, ik vind het ook heerlijk en ik hoop dat het blijft.\nIk zie nu\
\ dat het restaurant gesloten is, jeetje.\n\nHet is een einde van een tijdperk\
\ ,dat besef heb ik nu wel. Nostalgie, alom.\n\nOoit heb ik ook bij een kleine\
\ cafetaria gewerkt in een klein dorp. Dat is uiteindelijk ook gesloten nadat\
\ de eigenaren met pensioen gingen. Ook dit was zo'n bedrijf dat al generaties\
\ bestond e.d.\nDaar ging een spreekwoordelijk boek dicht, ik heb er ruim\
\ 6 jaar in de keuken gestaan als hulpkok. \nMooie tijden. Hard werken, maar\
\ veel lol en voldoening."
text: "Ik ben net 2 seconden aan t kijken en ik vind t nu al geweldig. Duim omhoog. Ik geef zo de rest van de review\
\ ;-)\nEens met de mening over de stamppot, ik vind het ook heerlijk en ik hoop dat het blijft.\nIk zie nu dat het\
\ restaurant gesloten is, jeetje.\n\nHet is een einde van een tijdperk ,dat besef heb ik nu wel. Nostalgie, alom.\n\
\nOoit heb ik ook bij een kleine cafetaria gewerkt in een klein dorp. Dat is uiteindelijk ook gesloten nadat de eigenaren\
\ met pensioen gingen. Ook dit was zo'n bedrijf dat al generaties bestond e.d.\nDaar ging een spreekwoordelijk boek\
\ dicht, ik heb er ruim 6 jaar in de keuken gestaan als hulpkok. \nMooie tijden. Hard werken, maar veel lol en voldoening."
like_count: 0
published_at: '2025-07-01T19:28:32Z'
updated_at: '2025-07-01T21:26:05Z'
@ -611,18 +596,14 @@ youtube_enrichment:
- video_id: 8sc_aai-Oxs
video_url: https://www.youtube.com/watch?v=8sc_aai-Oxs
title: Breda vertelt - Molukse gemeenschap- aankondiging premiere 16x9
description: "In deze korte film gaan vier Bredase Molukkers van de derde generatie\
\ met elkaar in gesprek over hun achtergrond en identiteit. Ze delen hun persoonlijke\
\ verhalen en reflecteren op de komst van hun grootouders naar Nederland, het\
\ gedwongen verblijf dat daarop volgde, en de pijn en hoop die van generatie\
\ op generatie is doorgegeven. De documentaire laat zien hoe de geschiedenis\
\ doorwerkt in het heden, maar ook hoe de derde generatie hun eigen toekomst\
\ vormgeeft in Breda. \nDit bijzondere gesprek met Amanda Lekahena, Romae SuitelaWattimena,\
\ Tyrza Chrispina en Naftali Likumahua maakt deel uit van het interviewproject\
\ Breda Vertelt van het stadsarchief en is een mooie samenwerking tussen de\
\ filmmakers van UmaMedia, Buurthuis Toma, de Molukse Wijkraad, Initiatiefgroep\
\ Bijzondere status Molukse KNIL-militairen Breda, Chassé Cinema, Gemeente Breda\
\ en Stadsarchief & archeologie Breda."
description: "In deze korte film gaan vier Bredase Molukkers van de derde generatie met elkaar in gesprek over hun achtergrond\
\ en identiteit. Ze delen hun persoonlijke verhalen en reflecteren op de komst van hun grootouders naar Nederland, het\
\ gedwongen verblijf dat daarop volgde, en de pijn en hoop die van generatie op generatie is doorgegeven. De documentaire\
\ laat zien hoe de geschiedenis doorwerkt in het heden, maar ook hoe de derde generatie hun eigen toekomst vormgeeft\
\ in Breda. \nDit bijzondere gesprek met Amanda Lekahena, Romae SuitelaWattimena, Tyrza Chrispina en Naftali Likumahua\
\ maakt deel uit van het interviewproject Breda Vertelt van het stadsarchief en is een mooie samenwerking tussen de\
\ filmmakers van UmaMedia, Buurthuis Toma, de Molukse Wijkraad, Initiatiefgroep Bijzondere status Molukse KNIL-militairen\
\ Breda, Chassé Cinema, Gemeente Breda en Stadsarchief & archeologie Breda."
published_at: '2025-06-13T09:25:51Z'
duration: PT1M15S
definition: hd
@ -641,16 +622,14 @@ youtube_enrichment:
- video_id: waIk-ixK85s
video_url: https://www.youtube.com/watch?v=waIk-ixK85s
title: 'Breda Vertelt: Herman Nietsch'
description: 'Herman Nietsch was 34 jaar lang vrijwilliger in het archeologisch
depot. Dit jaar (2025) nam de 90-jarige Bredanaar afscheid, met een bloedend
hart zoals hij het zelf zegt, want hij gaat zijn collegas en zijn werk enorm
description: 'Herman Nietsch was 34 jaar lang vrijwilliger in het archeologisch depot. Dit jaar (2025) nam de 90-jarige
Bredanaar afscheid, met een bloedend hart zoals hij het zelf zegt, want hij gaat zijn collegas en zijn werk enorm
missen. En wij hem ook! Herman, dank voor al die jaren trouwe inzet!
Herman begon met een schop in zn handen in het veld, bij een archeologische
opgraving in het centrum. Maar toen de leervondsten zich opstapelden in het
depot mocht hij in de leer bij Europas meest vermaarde conservator en tekenaar
van archeologisch leer, en voornamelijk van middeleeuwse schoenen. Herman werd
uiteindelijk dé leerspecialist van Breda en omstreken.'
Herman begon met een schop in zn handen in het veld, bij een archeologische opgraving in het centrum. Maar toen de
leervondsten zich opstapelden in het depot mocht hij in de leer bij Europas meest vermaarde conservator en tekenaar
van archeologisch leer, en voornamelijk van middeleeuwse schoenen. Herman werd uiteindelijk dé leerspecialist van Breda
en omstreken.'
published_at: '2025-05-22T13:52:06Z'
duration: PT13M16S
definition: hd
@ -669,12 +648,10 @@ youtube_enrichment:
- video_id: byhin3fop78
video_url: https://www.youtube.com/watch?v=byhin3fop78
title: Breda Vertelt - COC, Anoniem
description: We luisteren naar het verhaal van Anoniem. Hij is 15 jaar en vertelt
over zijn zoektocht naar zichzelf. Hoe hij moeite heeft met zijn lichaam en
de verwachtingen die onze samenleving heeft ten aanzien van man-zijn. In zijn
omgeving komt veel discriminatie, homo- en transfobie voor en daarom voelt het
voor hem onveilig om openlijk te spreken over zijn twijfels ten aanzien van
zijn gender en zijn zoektocht naar wie hij is.
description: We luisteren naar het verhaal van Anoniem. Hij is 15 jaar en vertelt over zijn zoektocht naar zichzelf. Hoe
hij moeite heeft met zijn lichaam en de verwachtingen die onze samenleving heeft ten aanzien van man-zijn. In zijn omgeving
komt veel discriminatie, homo- en transfobie voor en daarom voelt het voor hem onveilig om openlijk te spreken over
zijn twijfels ten aanzien van zijn gender en zijn zoektocht naar wie hij is.
published_at: '2025-05-16T10:50:22Z'
duration: PT7M48S
definition: hd
@ -693,11 +670,10 @@ youtube_enrichment:
- video_id: 7j-8CG7iTPg
video_url: https://www.youtube.com/watch?v=7j-8CG7iTPg
title: Breda Vertelt - COC, Evy
description: Evy Meyer vertelt hoe zij zich thuisvoelt in de queer gemeenschap. Zij
is panseksueel wat in haar geval betekent dat in de liefde het voor haar niet
belangrijk is wat iemands gender is. Zij vertelt over de dagen dat zij zich
meer feminien voelt en de dagen dat zij zich meer masculien voelt. En we zien
wat dat betekent voor hoe zij zich uitdrukt.
description: Evy Meyer vertelt hoe zij zich thuisvoelt in de queer gemeenschap. Zij is panseksueel wat in haar geval
betekent dat in de liefde het voor haar niet belangrijk is wat iemands gender is. Zij vertelt over de dagen dat zij
zich meer feminien voelt en de dagen dat zij zich meer masculien voelt. En we zien wat dat betekent voor hoe zij zich
uitdrukt.
published_at: '2025-05-16T10:27:41Z'
duration: PT6M6S
definition: hd
@ -716,13 +692,11 @@ youtube_enrichment:
- video_id: O3muv_S8MWE
video_url: https://www.youtube.com/watch?v=O3muv_S8MWE
title: Breda Vertelt - COC, Mees
description: Mees Soffers is werkzaam binnen het Ministerie van Defensie en is
veteraan, Zij vertelt over haar transitie van man naar vrouw. Tijdens en vlak
na haar transitie ontmoet Mees onbegrip. Ze vindt echter ook een warm welkom
voor wie ze is. Bij de kapper staat altijd een stoel voor haar klaar om uit
te blazen en uit te huilen. Nu is zij transgenderbuddy binnen Defensie en biedt
ze een luisterend oor aan mensen die twijfelen over wie zij zijn en hoe zij
met die onzekere gevoelens om kunnen gaan.
description: Mees Soffers is werkzaam binnen het Ministerie van Defensie en is veteraan, Zij vertelt over haar transitie
van man naar vrouw. Tijdens en vlak na haar transitie ontmoet Mees onbegrip. Ze vindt echter ook een warm welkom voor
wie ze is. Bij de kapper staat altijd een stoel voor haar klaar om uit te blazen en uit te huilen. Nu is zij transgenderbuddy
binnen Defensie en biedt ze een luisterend oor aan mensen die twijfelen over wie zij zijn en hoe zij met die onzekere
gevoelens om kunnen gaan.
published_at: '2025-05-16T10:08:30Z'
duration: PT9M43S
definition: hd
@ -741,10 +715,9 @@ youtube_enrichment:
- video_id: aEUsxojy_dY
video_url: https://www.youtube.com/watch?v=aEUsxojy_dY
title: 'Breda Vertelt: David'
description: David studeert in Oekraïne wanneer de oorlog uitbreekt en Rusland
zijn stad Kiyv bombardeert. De masterstudent Volksgezondheid twijfelt om te
blijven maar besluit vanwege de toenemende dreiging toch om te vluchten. Hoe
is het om als derdelander in Nederland een nieuw bestaan op te bouwen?
description: David studeert in Oekraïne wanneer de oorlog uitbreekt en Rusland zijn stad Kiyv bombardeert. De masterstudent
Volksgezondheid twijfelt om te blijven maar besluit vanwege de toenemende dreiging toch om te vluchten. Hoe is het om
als derdelander in Nederland een nieuw bestaan op te bouwen?
published_at: '2025-02-20T12:13:15Z'
duration: PT12M22S
definition: hd
@ -763,16 +736,14 @@ youtube_enrichment:
- video_id: 5V7xrmffcoM
video_url: https://www.youtube.com/watch?v=5V7xrmffcoM
title: 'Breda Vertelt: Philip Oronsay'
description: 'Winnaar van de 17e Bredase Vredesprijs Philip Oronsay werd in Nigeria
geboren. Hij probeert Breda inclusiever te maken:
description: 'Winnaar van de 17e Bredase Vredesprijs Philip Oronsay werd in Nigeria geboren. Hij probeert Breda inclusiever
te maken:
Als we elkaar kunnen horen en erkennen, kan Breda een stad worden waar diversiteit
wordt gevierd door inclusie en waar iedereen zich thuis voelt. Een plek waar
gemeenschappen elkaar versterken, gelijke kansen bestaan en waar iedereen de
ruimte krijgt om te groeien en bij te dragen aan de samenleving. Over zijn
vader en het strakke militaire regime, over leren nadenken, en fietsen, over
kansen en nieuwsgierigheid, over altijd correct willen zijn. Over echt naar
elkaar luisteren.'
Als we elkaar kunnen horen en erkennen, kan Breda een stad worden waar diversiteit wordt gevierd door inclusie en
waar iedereen zich thuis voelt. Een plek waar gemeenschappen elkaar versterken, gelijke kansen bestaan en waar iedereen
de ruimte krijgt om te groeien en bij te dragen aan de samenleving. Over zijn vader en het strakke militaire regime,
over leren nadenken, en fietsen, over kansen en nieuwsgierigheid, over altijd correct willen zijn. Over echt naar elkaar
luisteren.'
published_at: '2025-02-20T07:52:10Z'
duration: PT16M54S
definition: hd
@ -791,9 +762,8 @@ youtube_enrichment:
- video_id: QWc-x7_fMOI
video_url: https://www.youtube.com/watch?v=QWc-x7_fMOI
title: 'Breda Vertelt: Anneke Oomes'
description: Publieksboswachter Anneke Oomes van Staatsbosbeheer wandelt met ons
door haar favoriete werkterrein, het Mastbos. Ze vertelt vol passie over wat
haar vak zo mooi maakt en over de relatie tussen mens en natuur. Over de beestjes
description: Publieksboswachter Anneke Oomes van Staatsbosbeheer wandelt met ons door haar favoriete werkterrein, het
Mastbos. Ze vertelt vol passie over wat haar vak zo mooi maakt en over de relatie tussen mens en natuur. Over de beestjes
en plantjes, over behoud en beheer.
published_at: '2024-11-12T13:51:52Z'
duration: PT14M24S
@ -813,17 +783,13 @@ youtube_enrichment:
- video_id: eck-82Y6iY0
video_url: https://www.youtube.com/watch?v=eck-82Y6iY0
title: 'Breda Vertelt: Kritiese Filmers, Franklin Wolff'
description: "In 1971 realiseren vier studenten aan Academie St. Joost zich dat\
\ het anders moet. Uit onvrede over het onderwijs maar ook over de maatschappij,\
\ richten zij de Kritiese Filmers op. Het zou het eerste filmcollectief van\
\ Nederland zijn dat in verschillende samenstelling tot eind jaren 90 actief\
\ bleef.\n \nOprichters Bob Entrop, Renze Ferwerda, Frank Hamers en Franklin\
\ Wolff wilden met dit initiatief het maatschappelijk debat in Nederland los\
\ maken. Ze produceerden films o.a. over werkloosheid, arbeidsomstandigheden\
\ en vrouwenrechten om hier daarna het hele land mee door te reizen en het\
\ gesprek aan te gaan met het publiek. Een uniek concept in die tijd. Franklin\
\ Wolff vertelt over de idealen van toen en hoe die beginjaren een stempel hebben\
\ gedrukt op zijn leven."
description: "In 1971 realiseren vier studenten aan Academie St. Joost zich dat het anders moet. Uit onvrede over het\
\ onderwijs maar ook over de maatschappij, richten zij de Kritiese Filmers op. Het zou het eerste filmcollectief van\
\ Nederland zijn dat in verschillende samenstelling tot eind jaren 90 actief bleef.\n \nOprichters Bob Entrop, Renze\
\ Ferwerda, Frank Hamers en Franklin Wolff wilden met dit initiatief het maatschappelijk debat in Nederland los maken.\
\ Ze produceerden films o.a. over werkloosheid, arbeidsomstandigheden en vrouwenrechten om hier daarna het hele\
\ land mee door te reizen en het gesprek aan te gaan met het publiek. Een uniek concept in die tijd. Franklin Wolff\
\ vertelt over de idealen van toen en hoe die beginjaren een stempel hebben gedrukt op zijn leven."
published_at: '2023-12-05T13:02:00Z'
duration: PT11M54S
definition: hd
@ -842,8 +808,8 @@ youtube_enrichment:
- video_id: Ha3bq8QtaN4
video_url: https://www.youtube.com/watch?v=Ha3bq8QtaN4
title: Dit was de Bredase Maand van de Geschiedenis 2023!
description: 'We kijken terug op een geslaagde Bredase Maand van de Geschiedenis!
Met allerlei activiteiten, georganiseerd door diverse Bredase deelnemers.
description: 'We kijken terug op een geslaagde Bredase Maand van de Geschiedenis! Met allerlei activiteiten, georganiseerd
door diverse Bredase deelnemers.
Nu is het tijd om vooruit te kijken naar 2024. Dan is het thema Echt nep.
@ -866,10 +832,9 @@ youtube_enrichment:
- video_id: PV6PdfmkIAk
video_url: https://www.youtube.com/watch?v=PV6PdfmkIAk
title: Dit was de Bredase Maand van de Geschiedenis 2022!
description: "Ondanks het thema Wat een ramp! kijken we samen met meer dan 20\
\ partijen in Breda - terug op een geslaagde maand! \nMaar vooral kijken we\
\ gemotiveerd vooruit naar 2023, met als thema Eureka! \nVolg ons op social\
\ media of kijk op www.bredasemaandvandegeschiedenis.nl.\n\nVideo: Milica Nedakovic"
description: "Ondanks het thema Wat een ramp! kijken we samen met meer dan 20 partijen in Breda - terug op een geslaagde\
\ maand! \nMaar vooral kijken we gemotiveerd vooruit naar 2023, met als thema Eureka! \nVolg ons op social media of\
\ kijk op www.bredasemaandvandegeschiedenis.nl.\n\nVideo: Milica Nedakovic"
published_at: '2022-12-22T12:07:27Z'
duration: PT1M1S
definition: hd
@ -964,16 +929,13 @@ youtube_enrichment:
- video_id: nhohECUP3SE
video_url: https://www.youtube.com/watch?v=nhohECUP3SE
title: 'Breda Vertelt: Peter Jeucken'
description: Peter Jeucken was een van de oprichters van het Bredase poppodium
Para dat in 1982 de deuren opende aan het Van Coothplein. In 2022 is het precies
20 jaar geleden dat de laatste band op het podium stond en Mezz Concerts&Dance
de deuren opende. In die twintig jaar traden alles bij elkaar meer dan 1.000
bands, singer- songwriters, DJs, schrijvers en dichters, cabaretiers en theatergroepen
in Para op. Jeucken was erbij en vertelt uitgebreid over het dondere punkhol
dat zich ontwikkelde tot een vaste waarde in het Nederlandse clubcircuit. Niet
heel erg groot, niet heel handig ingedeeld, maar met een goede sfeer, een goed
geluid, goede verlichting en last but not least altijd lekker eten! Meer dan
reden genoeg om terug te kijken.
description: Peter Jeucken was een van de oprichters van het Bredase poppodium Para dat in 1982 de deuren opende aan het
Van Coothplein. In 2022 is het precies 20 jaar geleden dat de laatste band op het podium stond en Mezz Concerts&Dance
de deuren opende. In die twintig jaar traden alles bij elkaar meer dan 1.000 bands, singer- songwriters, DJs, schrijvers
en dichters, cabaretiers en theatergroepen in Para op. Jeucken was erbij en vertelt uitgebreid over het dondere punkhol
dat zich ontwikkelde tot een vaste waarde in het Nederlandse clubcircuit. Niet heel erg groot, niet heel handig ingedeeld,
maar met een goede sfeer, een goed geluid, goede verlichting en last but not least altijd lekker eten! Meer dan reden
genoeg om terug te kijken.
published_at: '2022-10-06T12:53:33Z'
duration: PT17M1S
definition: hd
@ -992,13 +954,11 @@ youtube_enrichment:
- video_id: 8hW-_dt2j6g
video_url: https://www.youtube.com/watch?v=8hW-_dt2j6g
title: 'Breda Vertelt: Johan van Gurp, Leven vol fotografie'
description: Fotojournalist Johan van Gurp (geb. 1948) werkte meer dan 37 jaar
voor de krant BN DeStem. Het leverde een waardevol foto-archief op van meer
dan 278.000 fotos (!) van Breda en omstreken dat in 2007 werd overgedragen
aan Stadsarchief Breda. Van Gurp volgde het nieuws op de voet en kent de stad
als geen ander. Hoe kwam de wielerfanaat erbij om fotograaf te worden? Hoe ging
hij te werk? Nu eens een keer zelf voor de lens vertelt hij ons openhartig en
enthousiast over zijn werkwijze en zijn lange carrière.
description: Fotojournalist Johan van Gurp (geb. 1948) werkte meer dan 37 jaar voor de krant BN DeStem. Het leverde een
waardevol foto-archief op van meer dan 278.000 fotos (!) van Breda en omstreken dat in 2007 werd overgedragen aan Stadsarchief
Breda. Van Gurp volgde het nieuws op de voet en kent de stad als geen ander. Hoe kwam de wielerfanaat erbij om fotograaf
te worden? Hoe ging hij te werk? Nu eens een keer zelf voor de lens vertelt hij ons openhartig en enthousiast over zijn
werkwijze en zijn lange carrière.
published_at: '2022-07-14T07:27:28Z'
duration: PT31M
definition: hd
@ -1016,8 +976,8 @@ youtube_enrichment:
- comment_id: UgykJcmK-OUOdX0S4p54AaABAg
author_display_name: '@Dimitriej'
author_channel_url: http://www.youtube.com/@Dimitriej
text: Wat een ontzettend mooie en leuke reportage. Heb er net zoveel van genoten
als van de fotos van Dhr. van Gurp in het stadsarchief. Dank voor het maken!
text: Wat een ontzettend mooie en leuke reportage. Heb er net zoveel van genoten als van de fotos van Dhr. van Gurp
in het stadsarchief. Dank voor het maken!
like_count: 4
published_at: '2022-07-15T10:31:54Z'
updated_at: '2022-07-15T10:31:54Z'
@ -1025,9 +985,8 @@ youtube_enrichment:
- comment_id: Ugyga4jhLwVLFgcXBQt4AaABAg
author_display_name: '@akiljoe'
author_channel_url: http://www.youtube.com/@akiljoe
text: Wat een prachtige reportage van een ontzettend aardige en bijzonder vaardige
fotograaf. Johan maakte in 1973 de trouwfoto's bij ons huwelijk. Voor ons
was/is het de sport om dat (nu 50 jaar later) nog vol te blijven houden...
text: Wat een prachtige reportage van een ontzettend aardige en bijzonder vaardige fotograaf. Johan maakte in 1973 de
trouwfoto's bij ons huwelijk. Voor ons was/is het de sport om dat (nu 50 jaar later) nog vol te blijven houden...
Dank voor deze mooie reportage. Ans en Fernand Groothedde
like_count: 3
published_at: '2022-07-16T08:50:59Z'
@ -1036,10 +995,9 @@ youtube_enrichment:
- comment_id: UgwoA0kDe8mEdcK7pml4AaABAg
author_display_name: '@patrickpeters5993'
author_channel_url: http://www.youtube.com/@patrickpeters5993
text: Wat een gave reportage van Johan, heb ooit nog eens stage gelopen op de
krant onder toeziend oog van deze meester. Wat heb ik toen veel geleerd, ik
weet niet of ik hem daar ooit voor bedankt heb. Johan bij deze, bedankt, beter
laat dan nooit. Groet Patrick Peters uit Hank..
text: Wat een gave reportage van Johan, heb ooit nog eens stage gelopen op de krant onder toeziend oog van deze meester.
Wat heb ik toen veel geleerd, ik weet niet of ik hem daar ooit voor bedankt heb. Johan bij deze, bedankt, beter laat
dan nooit. Groet Patrick Peters uit Hank..
like_count: 1
published_at: '2023-11-07T16:24:11Z'
updated_at: '2023-11-07T16:24:11Z'
@ -1048,9 +1006,8 @@ youtube_enrichment:
- video_id: zMl-ype2oWM
video_url: https://www.youtube.com/watch?v=zMl-ype2oWM
title: 'Breda Vertelt: Luara Kamma-Moore'
description: De Amerikaanse Luara Kamma-Moore vond haar thuis in Breda en haar
plek op STEK. Ze vertelt uitgebreid over haar boodschap en haar doel, en het
plezier dat ze beleeft aan mensen te helpen duurzaam te leren zijn.
description: De Amerikaanse Luara Kamma-Moore vond haar thuis in Breda en haar plek op STEK. Ze vertelt uitgebreid over
haar boodschap en haar doel, en het plezier dat ze beleeft aan mensen te helpen duurzaam te leren zijn.
published_at: '2021-12-23T07:24:41Z'
duration: PT8M28S
definition: hd
@ -1069,21 +1026,17 @@ youtube_enrichment:
- video_id: 0_EGK3kRSc4
video_url: https://www.youtube.com/watch?v=0_EGK3kRSc4
title: Coronawoorden
description: 'Op 29 maart 2020 startte Astrid Meijboom met het verzamelen van
nieuwe woorden die allemaal beginnen met corona. Een verzameling die zolang
de pandemie duurt, blijft groeien.  
description: 'Op 29 maart 2020 startte Astrid Meijboom met het verzamelen van nieuwe woorden die allemaal beginnen met
corona. Een verzameling die zolang de pandemie duurt, blijft groeien.  
 
Stadsarchief Breda roept alle Bredanaars op om mee te bouwen aan een erfgoedcollectie
over het coronavirus en de gevolgen daarvan in de stad.  Het coronavirus heeft
ons allemaal geraakt en ons dagelijks leven beheerst, en doet dat bij tijd van
schrijven nog steeds. Deze herinnering willen we samen vastleggen en levend
houden voor de toekomst. Daarom doen we een beroep op jullie, want dat kunnen
we niet alleen. We vragen je mee te helpen door ons foto''s, filmpjes, tekeningen
of documenten te sturen die iets zeggen over de invloed van het coronavirus
op het leven in de stad en de omliggende dorpen. Wil je ook bijdragen? Gebruik
daarvoor het formulier. https://stadsarchief.breda.nl/actueel/nieuws/273-nieuw'
Stadsarchief Breda roept alle Bredanaars op om mee te bouwen aan een erfgoedcollectie over het coronavirus en de gevolgen
daarvan in de stad.  Het coronavirus heeft ons allemaal geraakt en ons dagelijks leven beheerst, en doet dat bij tijd
van schrijven nog steeds. Deze herinnering willen we samen vastleggen en levend houden voor de toekomst. Daarom doen
we een beroep op jullie, want dat kunnen we niet alleen. We vragen je mee te helpen door ons foto''s, filmpjes, tekeningen
of documenten te sturen die iets zeggen over de invloed van het coronavirus op het leven in de stad en de omliggende
dorpen. Wil je ook bijdragen? Gebruik daarvoor het formulier. https://stadsarchief.breda.nl/actueel/nieuws/273-nieuw'
published_at: '2021-10-18T11:55:47Z'
duration: PT22M
definition: hd
@ -1343,8 +1296,7 @@ youtube_enrichment:
- comment_id: Ugy7fspmtZ3Ts2-tsdh4AaABAg
author_display_name: '@susilo7711'
author_channel_url: http://www.youtube.com/@susilo7711
text: i.m happy to know they still living after to long time they going back
to holland.( 1994-1995)
text: i.m happy to know they still living after to long time they going back to holland.( 1994-1995)
like_count: 0
published_at: '2017-10-31T11:25:10Z'
updated_at: '2017-10-31T11:25:10Z'
@ -1467,9 +1419,8 @@ youtube_enrichment:
- comment_id: Ugx_chpFUrzaCTuFXxt4AaABAg
author_display_name: '@RyszardKostzewa'
author_channel_url: http://www.youtube.com/@RyszardKostzewa
text: Vanaf 03.10 in deze opname,mijn idool en vader,Ryszard Kost(r)zewa,als
buschauffeur van de BBA in Breda,langs het Wilheminapark rijdend.Veelst te
vroeg overleden in 1966.
text: Vanaf 03.10 in deze opname,mijn idool en vader,Ryszard Kost(r)zewa,als buschauffeur van de BBA in Breda,langs
het Wilheminapark rijdend.Veelst te vroeg overleden in 1966.
like_count: 3
published_at: '2024-10-26T13:10:00Z'
updated_at: '2024-10-26T13:11:25Z'
@ -1588,8 +1539,7 @@ youtube_enrichment:
comments_fetched: 0
- video_id: B-fL1R8Mevw
video_url: https://www.youtube.com/watch?v=B-fL1R8Mevw
title: Dagelijks leven in Breda, tijdens de bezetting Mia Verheem van Haagen
1934
title: Dagelijks leven in Breda, tijdens de bezetting Mia Verheem van Haagen 1934
description: ''
published_at: '2017-05-12T09:51:49Z'
duration: PT9M22S
@ -2162,8 +2112,7 @@ youtube_enrichment:
- comment_id: Ugwqz5ILcrfZ9Qagzmd4AaABAg
author_display_name: '@mueslit9'
author_channel_url: http://www.youtube.com/@mueslit9
text: Een heerlijke positieve scherpe (en ondeugende) kerel, waar ik trots mee
heb samengewerkt bij het GMM "vroegah".
text: Een heerlijke positieve scherpe (en ondeugende) kerel, waar ik trots mee heb samengewerkt bij het GMM "vroegah".
like_count: 0
published_at: '2021-07-07T08:00:58Z'
updated_at: '2021-07-07T08:00:58Z'
@ -2788,12 +2737,10 @@ youtube_enrichment:
- video_id: WBaWjx9p7aQ
video_url: https://www.youtube.com/watch?v=WBaWjx9p7aQ
title: Miriam van Beurden Bredase groepsportretten deel 3
description: Ieder jaar voeren derde jaars studenten van AKV|St. Joost als onderdeel
van hun studie een opdracht uit voor Stadsarchief Breda. De studenten kiezen
een onderwerp en gaan dit proberen op de gevoelige plaat vast te leggen in ongeveer
12 beelden of zoals in dit geval in korte filmpjes. De resultaten komen ieder
jaar na afronding van de opdracht in de online beeldcollectie van Stadsarchief
Breda te staan (www.stadsarchief.breda.nl) .
description: Ieder jaar voeren derde jaars studenten van AKV|St. Joost als onderdeel van hun studie een opdracht uit voor
Stadsarchief Breda. De studenten kiezen een onderwerp en gaan dit proberen op de gevoelige plaat vast te leggen in ongeveer
12 beelden of zoals in dit geval in korte filmpjes. De resultaten komen ieder jaar na afronding van de opdracht in de
online beeldcollectie van Stadsarchief Breda te staan (www.stadsarchief.breda.nl) .
published_at: '2017-05-12T07:37:12Z'
duration: PT3M50S
definition: hd
@ -2855,12 +2802,10 @@ youtube_enrichment:
- video_id: k3UddndGz9A
video_url: https://www.youtube.com/watch?v=k3UddndGz9A
title: Miriam van Beurden Bredase groepsportretten deel 1
description: Ieder jaar voeren derde jaars studenten van AKV|St. Joost als onderdeel
van hun studie een opdracht uit voor Stadsarchief Breda. De studenten kiezen
een onderwerp en gaan dit proberen op de gevoelige plaat vast te leggen in ongeveer
12 beelden of zoals in dit geval in korte filmpjes. De resultaten komen ieder
jaar na afronding van de opdracht in de online beeldcollectie van Stadsarchief
Breda te staan (www.stadsarchief.breda.nl) .
description: Ieder jaar voeren derde jaars studenten van AKV|St. Joost als onderdeel van hun studie een opdracht uit voor
Stadsarchief Breda. De studenten kiezen een onderwerp en gaan dit proberen op de gevoelige plaat vast te leggen in ongeveer
12 beelden of zoals in dit geval in korte filmpjes. De resultaten komen ieder jaar na afronding van de opdracht in de
online beeldcollectie van Stadsarchief Breda te staan (www.stadsarchief.breda.nl) .
published_at: '2017-05-12T07:37:12Z'
duration: PT3M7S
definition: hd
@ -2880,12 +2825,10 @@ youtube_enrichment:
- video_id: ofWCx6gC4pw
video_url: https://www.youtube.com/watch?v=ofWCx6gC4pw
title: Jorina Kilsdonk Identiteit
description: Ieder jaar voeren derde jaars studenten van AKV|St. Joost als onderdeel
van hun studie een opdracht uit voor Stadsarchief Breda. De studenten kiezen
een onderwerp en gaan dit proberen op de gevoelige plaat vast te leggen in ongeveer
12 beelden of zoals in dit geval in korte filmpjes. De resultaten komen ieder
jaar na afronding van de opdracht in de online beeldcollectie van Stadsarchief
Breda te staan (www.stadsarchief.breda.nl) .
description: Ieder jaar voeren derde jaars studenten van AKV|St. Joost als onderdeel van hun studie een opdracht uit voor
Stadsarchief Breda. De studenten kiezen een onderwerp en gaan dit proberen op de gevoelige plaat vast te leggen in ongeveer
12 beelden of zoals in dit geval in korte filmpjes. De resultaten komen ieder jaar na afronding van de opdracht in de
online beeldcollectie van Stadsarchief Breda te staan (www.stadsarchief.breda.nl) .
published_at: '2017-05-12T07:37:12Z'
duration: PT4M59S
definition: hd
@ -2905,12 +2848,10 @@ youtube_enrichment:
- video_id: pSpc6buiOB0
video_url: https://www.youtube.com/watch?v=pSpc6buiOB0
title: Miriam van Beurden Bredase groepsportretten deel 2
description: Ieder jaar voeren derde jaars studenten van AKV|St. Joost als onderdeel
van hun studie een opdracht uit voor Stadsarchief Breda. De studenten kiezen
een onderwerp en gaan dit proberen op de gevoelige plaat vast te leggen in ongeveer
12 beelden of zoals in dit geval in korte filmpjes. De resultaten komen ieder
jaar na afronding van de opdracht in de online beeldcollectie van Stadsarchief
Breda te staan (www.stadsarchief.breda.nl) .
description: Ieder jaar voeren derde jaars studenten van AKV|St. Joost als onderdeel van hun studie een opdracht uit voor
Stadsarchief Breda. De studenten kiezen een onderwerp en gaan dit proberen op de gevoelige plaat vast te leggen in ongeveer
12 beelden of zoals in dit geval in korte filmpjes. De resultaten komen ieder jaar na afronding van de opdracht in de
online beeldcollectie van Stadsarchief Breda te staan (www.stadsarchief.breda.nl) .
published_at: '2017-05-12T07:37:12Z'
duration: PT2M21S
definition: hd
@ -3119,8 +3060,7 @@ youtube_enrichment:
comments_fetched: 0
- video_id: QQgVwGlNW48
video_url: https://www.youtube.com/watch?v=QQgVwGlNW48
title: Adriana Johanna Zus Brens Vriens 1916 Deel 3 Jodenvervolging, onderduiken
en bevrijding
title: Adriana Johanna Zus Brens Vriens 1916 Deel 3 Jodenvervolging, onderduiken en bevrijding
description: ''
published_at: '2017-05-11T12:53:28Z'
duration: PT9M13S
@ -3246,12 +3186,10 @@ youtube_enrichment:
- video_id: cehpSqofOBg
video_url: https://www.youtube.com/watch?v=cehpSqofOBg
title: Stadsarchief Breda, AKV|St Joost foto-project, Bekkenutte, E.R. (Eelke)
description: 'Toelichting Eelke Bekkenutte: Om ons heen wordt er in rap tempo
ontzettend veel gedigitaliseerd. Erg handig, nu we niet meer ergens heen hoeven
om het te bekijken maar het gewoon via onze laptop, tv of mobiel kunnen zien.
Handig ja, maar zit hier niet ook een keerzijde aan ? Want wat gebeurt er met
de originele of echte bestanden ? Zijn zij nog van enige waarde ? Zie ook foto
ERB20140112001(www.stadsarchief.breda.nl)'
description: 'Toelichting Eelke Bekkenutte: Om ons heen wordt er in rap tempo ontzettend veel gedigitaliseerd. Erg handig,
nu we niet meer ergens heen hoeven om het te bekijken maar het gewoon via onze laptop, tv of mobiel kunnen zien. Handig
ja, maar zit hier niet ook een keerzijde aan ? Want wat gebeurt er met de originele of echte bestanden ? Zijn zij nog
van enige waarde ? Zie ook foto ERB20140112001(www.stadsarchief.breda.nl)'
published_at: '2017-02-17T09:26:38Z'
duration: PT13M26S
definition: hd
@ -3425,8 +3363,7 @@ youtube_enrichment:
comments_fetched: 0
- video_id: OR-u_bGqntQ
video_url: https://www.youtube.com/watch?v=OR-u_bGqntQ
title: Bertha Maria Derks-Smolders (1923) Deel 2 - Het bombardement op Bad Wörishofen
in oktober 1944
title: Bertha Maria Derks-Smolders (1923) Deel 2 - Het bombardement op Bad Wörishofen in oktober 1944
description: ''
published_at: '2015-12-16T12:21:49Z'
duration: PT5M49S
@ -3531,17 +3468,13 @@ youtube_enrichment:
- comment_id: UgzKPyQQ2mD1OzxfKB14AaABAg
author_display_name: '@davidozz4068'
author_channel_url: http://www.youtube.com/@davidozz4068
text: "Ik zou ook graag veel meer willen horen! Mijn moeder was ook 3 toen ze\
\ met haar broer en haar moeder kamp inging in o.a. Tjihapit. \nMijn oma\
\ heeft ervoor altijd in Buitenzorg gewoond, oa op de Parkweg (6) met mijn\
\ opa, zelf Boekhoudkundige bij Boschwezen, in de oorlog heeft hij ook in\
\ kampen gezeten, maar lastig te vinden waar. Moest iig wel aan een spoorweg\
\ werken, maar welke is mij niet zeker. Hij is kort na de oorlog overleden\
\ aan de gevolgen.\nMijn oma was een (knappe) jonge vrouw genaamd Elisabeth\
\ Lammerts (Liesje voor vrienden) maar heeft het daar heel erg zwaar gehad.\
\ Ze zijn er nooit echt bovenop gekomen. \nMocht iemand info hebben, dan hoor\
\ het maar al te graag. Ik mis nog heel veel puzzelstukjes ( de moeder van\
\ mijn opa had de familienaam Draaisma?)"
text: "Ik zou ook graag veel meer willen horen! Mijn moeder was ook 3 toen ze met haar broer en haar moeder kamp inging\
\ in o.a. Tjihapit. \nMijn oma heeft ervoor altijd in Buitenzorg gewoond, oa op de Parkweg (6) met mijn opa, zelf\
\ Boekhoudkundige bij Boschwezen, in de oorlog heeft hij ook in kampen gezeten, maar lastig te vinden waar. Moest\
\ iig wel aan een spoorweg werken, maar welke is mij niet zeker. Hij is kort na de oorlog overleden aan de gevolgen.\n\
Mijn oma was een (knappe) jonge vrouw genaamd Elisabeth Lammerts (Liesje voor vrienden) maar heeft het daar heel erg\
\ zwaar gehad. Ze zijn er nooit echt bovenop gekomen. \nMocht iemand info hebben, dan hoor het maar al te graag. Ik\
\ mis nog heel veel puzzelstukjes ( de moeder van mijn opa had de familienaam Draaisma?)"
like_count: 2
published_at: '2024-05-10T16:34:14Z'
updated_at: '2024-05-10T16:36:10Z'
@ -3549,9 +3482,8 @@ youtube_enrichment:
- comment_id: UgxLISe1oxXWCxYYgz54AaABAg
author_display_name: '@mrdennisvanhuisum'
author_channel_url: http://www.youtube.com/@mrdennisvanhuisum
text: Wat zou ik graag meer willen horen en zien over dit onderwerp. Mijn oma
heeft haar moeder vast gekend. Zaten in hetzelfde kamp als ik me niet vergis
😢
text: Wat zou ik graag meer willen horen en zien over dit onderwerp. Mijn oma heeft haar moeder vast gekend. Zaten in
hetzelfde kamp als ik me niet vergis 😢
like_count: 1
published_at: '2024-01-06T19:19:30Z'
updated_at: '2024-01-06T19:19:30Z'
@ -3559,8 +3491,7 @@ youtube_enrichment:
- comment_id: UgzZpLVXjHKbwfvLuw14AaABAg
author_display_name: '@juditbouman3991'
author_channel_url: http://www.youtube.com/@juditbouman3991
text: ook voor mij een zoektocht naar verhalen of een glimp van mijn oma en
vader... zij zaten samen in een kamp
text: ook voor mij een zoektocht naar verhalen of een glimp van mijn oma en vader... zij zaten samen in een kamp
like_count: 1
published_at: '2024-08-03T19:00:53Z'
updated_at: '2024-08-03T19:00:53Z'
@ -3737,13 +3668,11 @@ youtube_enrichment:
- video_id: -z2HQBZoWiI
video_url: https://www.youtube.com/watch?v=-z2HQBZoWiI
title: dr. Frans Zeegers
description: Op 21 mei 2015 was in revalidatiecentrum Revant de presentatie van
een korte documentaire over dr. Frans Zeegers (91 jaar). In deze documentaire,
die Stadsarchief Breda in opdracht door de Bredase filmmaker Bob Entrop liet
maken, wordt het indrukwekkende leven en werk van dr. Zeegers getoond. Pionier
op het gebied van revalidatie van zowel Breda als heel Nederland, orthopedisch-chirurg
en 25 jaar directeur van het Revalidatiecentrum in Breda. Wethouder Miriam Haagh
reikte de arts het eerste exemplaar van de film uit.
description: Op 21 mei 2015 was in revalidatiecentrum Revant de presentatie van een korte documentaire over dr. Frans
Zeegers (91 jaar). In deze documentaire, die Stadsarchief Breda in opdracht door de Bredase filmmaker Bob Entrop liet
maken, wordt het indrukwekkende leven en werk van dr. Zeegers getoond. Pionier op het gebied van revalidatie van zowel
Breda als heel Nederland, orthopedisch-chirurg en 25 jaar directeur van het Revalidatiecentrum in Breda. Wethouder Miriam
Haagh reikte de arts het eerste exemplaar van de film uit.
published_at: '2015-04-22T09:58:17Z'
duration: PT17M12S
definition: sd
@ -3815,8 +3744,7 @@ youtube_enrichment:
comments_fetched: 1
- video_id: 20PFC0rg5i4
video_url: https://www.youtube.com/watch?v=20PFC0rg5i4
title: Masje Cornelia Dragt-Kalkman (1936 - 2012) Deel 3 - De naoorlogse tijd
in Nederlands Indië
title: Masje Cornelia Dragt-Kalkman (1936 - 2012) Deel 3 - De naoorlogse tijd in Nederlands Indië
description: ''
published_at: '2015-02-06T09:36:42Z'
duration: PT9M5S
@ -3927,8 +3855,8 @@ youtube_enrichment:
- comment_id: UgyYYJwC30bXhryZ3lR4AaABAg
author_display_name: '@betawicanberra8823'
author_channel_url: http://www.youtube.com/@betawicanberra8823
text: I am the original of Batavia tribe, I wish I can speak Dutch. I knew only
little. I have a Dutch lady as a neighbour maybe I should learn from her.
text: I am the original of Batavia tribe, I wish I can speak Dutch. I knew only little. I have a Dutch lady as a neighbour
maybe I should learn from her.
like_count: 0
published_at: '2023-03-29T17:23:19Z'
updated_at: '2023-03-29T17:23:19Z'
@ -3968,9 +3896,8 @@ youtube_enrichment:
- comment_id: UgwRFi5kLOShlddYgl94AaABAg
author_display_name: '@buddymunardi9539'
author_channel_url: http://www.youtube.com/@buddymunardi9539
text: Rupa rupanya nama penumpang kapal johan di umumkan di surat kabar.Kenapa
mereka mengumumkan nama penumpang di zaman hindia belanda ?Dan kenapa di
zaman sekarang kita tidak meneruskannya ?
text: Rupa rupanya nama penumpang kapal johan di umumkan di surat kabar.Kenapa mereka mengumumkan nama penumpang di
zaman hindia belanda ?Dan kenapa di zaman sekarang kita tidak meneruskannya ?
like_count: 0
published_at: '2022-11-16T10:26:41Z'
updated_at: '2022-11-16T10:26:41Z'
@ -3978,8 +3905,8 @@ youtube_enrichment:
- comment_id: UgxhJb1HlN1t8TtM3Ed4AaABAg
author_display_name: '@AKB_JmHarto'
author_channel_url: http://www.youtube.com/@AKB_JmHarto
text: Saya senang melihat konten Anda tapi sayang tidak ada sub titlenya sehingga
saya tidak bisa mengikuti alur ceritanya ... salam kenal dr Indonesia
text: Saya senang melihat konten Anda tapi sayang tidak ada sub titlenya sehingga saya tidak bisa mengikuti alur ceritanya
... salam kenal dr Indonesia
like_count: 2
published_at: '2022-09-01T08:51:07Z'
updated_at: '2022-09-01T08:51:07Z'
@ -4027,9 +3954,8 @@ youtube_enrichment:
- comment_id: Ugw5gj1ATK82cOXctk94AaABAg
author_display_name: '@agamjamalludin9203'
author_channel_url: http://www.youtube.com/@agamjamalludin9203
text: Setiap yg beragama ongse kasih bayangan lampu liontin merah menyala 🌟
6 emas pangkat diakabri akpol Brimob SPN Seulawah Aceh negara bulan bintang
🇹🇷 kirim
text: Setiap yg beragama ongse kasih bayangan lampu liontin merah menyala 🌟 6 emas pangkat diakabri akpol Brimob SPN
Seulawah Aceh negara bulan bintang 🇹🇷 kirim
like_count: 0
published_at: '2023-03-06T17:57:28Z'
updated_at: '2023-03-06T17:57:28Z'
@ -4045,9 +3971,8 @@ youtube_enrichment:
- comment_id: Ugxs5WIW7VdiybaebjZ4AaABAg
author_display_name: '@agamjamalludin9203'
author_channel_url: http://www.youtube.com/@agamjamalludin9203
text: Setiap yg beragama ongse kasih tatto didadanya lampu liontin merah 🌟 6
emas pangkat diakabri akpol Brimob SPN Seulawah Aceh negara bulan bintang
🇹🇷 kirim
text: Setiap yg beragama ongse kasih tatto didadanya lampu liontin merah 🌟 6 emas pangkat diakabri akpol Brimob SPN
Seulawah Aceh negara bulan bintang 🇹🇷 kirim
like_count: 0
published_at: '2023-03-06T17:58:46Z'
updated_at: '2023-03-06T17:58:46Z'
@ -4055,8 +3980,7 @@ youtube_enrichment:
- comment_id: UgyzwVOMI4stJOaDmtd4AaABAg
author_display_name: '@mamanwaru1474'
author_channel_url: http://www.youtube.com/@mamanwaru1474
text: aeng kamu aeng temfak aeng der pacceddod aeng kateppung bucok aeng aeng
aendok
text: aeng kamu aeng temfak aeng der pacceddod aeng kateppung bucok aeng aeng aendok
like_count: 0
published_at: '2023-08-08T03:33:35Z'
updated_at: '2023-08-08T03:33:35Z'
@ -4064,8 +3988,8 @@ youtube_enrichment:
- comment_id: UgysLJkEYNNzMqfdqd54AaABAg
author_display_name: '@agamjamalludin9203'
author_channel_url: http://www.youtube.com/@agamjamalludin9203
text: Kasih juga tatto bendera negara bulan bintang 🇹🇷🌟 6 emas pangkat diakabri
akpol Brimob SPN Seulawah Aceh negara bulan bintang 🇹🇷 kirim
text: Kasih juga tatto bendera negara bulan bintang 🇹🇷🌟 6 emas pangkat diakabri akpol Brimob SPN Seulawah Aceh negara
bulan bintang 🇹🇷 kirim
like_count: 0
published_at: '2023-03-06T17:59:15Z'
updated_at: '2023-03-06T17:59:15Z'
@ -4228,9 +4152,8 @@ youtube_enrichment:
- comment_id: UgywG6MbOSDTV-xMJpZ4AaABAg
author_display_name: '@bteuben-faber8215'
author_channel_url: http://www.youtube.com/@bteuben-faber8215
text: Wat een lieve dame en wat moedig om er zó over te spreken! Er zijn echt
Nederlanders, die zich schámen voor het bedrog van de Nederlandse staat. Mijn
ouders hebben dit onrecht ook altijd aan ons verteld. 🌷 Het ga u goed!
text: Wat een lieve dame en wat moedig om er zó over te spreken! Er zijn echt Nederlanders, die zich schámen voor het
bedrog van de Nederlandse staat. Mijn ouders hebben dit onrecht ook altijd aan ons verteld. 🌷 Het ga u goed!
like_count: 2
published_at: '2022-02-10T12:11:46Z'
updated_at: '2022-02-10T12:11:46Z'
@ -4658,11 +4581,9 @@ 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
@ -4670,9 +4591,8 @@ 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
@ -4681,11 +4601,9 @@ 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
@ -4693,9 +4611,8 @@ 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
@ -4704,9 +4621,8 @@ 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.584703
@ -4833,9 +4749,8 @@ digital_platform_v2:
platform_name: Home - Stadsarchief Breda Website
platform_url: https://stadsarchief.breda.nl/
platform_type: DISCOVERY_PORTAL
description: Stadsarchief Breda verzamelt en beheert de geschiedenis van de stad
en zijn inwoners. Die rijke historie stelt Stadsarchief Breda gratis ter beschikking
in woord en beeld, tastbaar en online.
description: Stadsarchief Breda verzamelt en beheert de geschiedenis van de stad en zijn inwoners. Die rijke historie
stelt Stadsarchief Breda gratis ter beschikking in woord en beeld, tastbaar en online.
language: nl
og_image: null
favicon: http://www.stadsarchief.breda.nl/templates/cust-brd-maior-website/favicon.ico
@ -4922,3 +4837,21 @@ logo_enrichment:
has_favicon: true
has_og_image: false
favicon_count: 2
mission_statement:
- statement_id: https://nde.nl/ontology/hc/mission/nl-nb-bre-a-sab/mission-2026
statement_type: mission
statement_text: 'Alles over vroeger, voor iedereen van nu: we verzamelen en beheren de geschiedenis van de stad en haar
inwoners. Die rijke historie stellen we gratis ter beschikking in woord en beeld, tastbaar en online.'
statement_language: nl
extracted_verbatim: true
source_url: http://www.stadsarchief.breda.nl/
content_hash: sha256-aZ6e+CYPm4fajAM3SX6WVgo/l3+WPzZg1GEJzEFXiBU=
provenance:
statement_created_at: '2026-01-04T16:43:41.191054+00:00'
source_archived_at: '2026-01-04T16:43:22.106098+00:00'
retrieval_agent: linkup-api
extraction_agent: zai-glm/glm-4.7
extraction_confidence: 0.9
prov:wasDerivedFrom: http://www.stadsarchief.breda.nl/
prov:generatedAtTime: '2026-01-04T16:43:41.191054+00:00'
source_section: Rijke historie gratis toegankelijk

View file

@ -58,8 +58,8 @@ wikidata_enrichment:
instance_of: &id001
- id: Q33506
label: museum
description: institution that holds artifacts and other objects of scientific,
artistic, cultural, historical, or other importance
description: institution that holds artifacts and other objects of scientific, artistic, cultural, historical, or other
importance
- id: Q2772772
label: military museum
description: museum of military and war
@ -290,18 +290,17 @@ google_maps_enrichment:
author_uri: https://www.google.com/maps/contrib/105954313365601171082/reviews
rating: 5
relative_time_description: 4 maanden geleden
text: 'Heel interessant. Met goede rondleiding van zeer enthousiaste vrijwilligers.
Hier in Breda weten ze nog wat Poolse mensen voor Nederland hebben betekend.
text: 'Heel interessant. Met goede rondleiding van zeer enthousiaste vrijwilligers. Hier in Breda weten ze nog wat Poolse
mensen voor Nederland hebben betekend.
Mooie verhalen over gebeurtenissen voor tijdens en na de tweede wereld oorlog.
Wij komen zeker terug!'
Mooie verhalen over gebeurtenissen voor tijdens en na de tweede wereld oorlog. Wij komen zeker terug!'
publish_time: '2025-07-20T14:21:45.373099649Z'
- author_name: Walter
author_uri: https://www.google.com/maps/contrib/116822694086075691093/reviews
rating: 5
relative_time_description: 3 maanden geleden
text: Mooi museum, niet heel groot maar wel heel leerzaam en overal zit een verhaal
achter. Echt prachtig. Zeker de moeite waard om te bezoeken!
text: Mooi museum, niet heel groot maar wel heel leerzaam en overal zit een verhaal achter. Echt prachtig. Zeker de moeite
waard om te bezoeken!
publish_time: '2025-08-28T09:05:25.009210370Z'
- author_name: John Linders
author_uri: https://www.google.com/maps/contrib/112278669909616606936/reviews
@ -309,8 +308,7 @@ google_maps_enrichment:
relative_time_description: 10 maanden geleden
text: 'Na n zeer vriendelijk ontvangst kregen we n rondleiding van gids Jan
T is n niet heel groot museum maar als je interesse hebt in de oorlogse geschiedenis
kan ik t zeer aanbevelen.
T is n niet heel groot museum maar als je interesse hebt in de oorlogse geschiedenis kan ik t zeer aanbevelen.
Kom je met n camper bekijk dan de parkeermogelijkheid op Google'
publish_time: '2025-01-17T11:21:55.543942Z'
@ -318,20 +316,17 @@ google_maps_enrichment:
author_uri: https://www.google.com/maps/contrib/104763543046231036773/reviews
rating: 5
relative_time_description: een maand geleden
text: Prachtige ingetogen tentoonstelling over onze vergeten helden, die zeker
ook een belangrijk deel van Europa en ook Nederland hebben bevrijd van de nationaal
socialistische bezetters tijdens WO 2.
text: Prachtige ingetogen tentoonstelling over onze vergeten helden, die zeker ook een belangrijk deel van Europa en ook
Nederland hebben bevrijd van de nationaal socialistische bezetters tijdens WO 2.
publish_time: '2025-10-26T23:02:47.380910871Z'
- author_name: Willem (Go4it)
author_uri: https://www.google.com/maps/contrib/100563931186170367940/reviews
rating: 3
relative_time_description: 11 maanden geleden
text: Wij hebben het ereveld bezocht. Bij het museum staat een expositie buiten.
Het is goed om te weten dat de zuilen aan de zijkant onderaan genummerd zijn.
Het centrum zelf konden we niet in. Er was een concert aan de gang op 22 december
2024. Tot onze stomme verbazing zat de ingang op slot. Het orkest en het publiek
zaten opgesloten. Dat mag vast niet van de brandweer en wij mochten er dus niet
in. Niet fraai.
text: Wij hebben het ereveld bezocht. Bij het museum staat een expositie buiten. Het is goed om te weten dat de zuilen
aan de zijkant onderaan genummerd zijn. Het centrum zelf konden we niet in. Er was een concert aan de gang op 22 december
2024. Tot onze stomme verbazing zat de ingang op slot. Het orkest en het publiek zaten opgesloten. Dat mag vast niet
van de brandweer en wij mochten er dus niet in. Niet fraai.
publish_time: '2024-12-23T06:59:33.986702Z'
photo_urls:
- https://places.googleapis.com/v1/places/ChIJ7YvZyYahxkcRFBabJA4lCg4/photos/AWn5SU5H7yKv2NPKaDdEB3DZpTlkmfOfSpjOOuyx-aPLg-YrrrqHUfJGZ4jn_XYU3Wb6ZAOwIRQ-pZtDxQf78-SP2PHPN1ONaUOoxT_Kst7T8EbtcFWsfkUdvAKA1mju1jva2kioulsbownuMIR4iBGQG6mPes6jfQjZdJIbeIOdBTu9vy3pYYM1QtcBY0vcYXkRnPDcHE213vC4-KEawyxGmHvFXCVWKr439A6cT9i-JWgIClJsFdsNiqiYBKYIxTIV6dkZHbWzIktAYloNcNc0z17lIbWyCpZc5hiwoVN1Pv8kkiYUU7FQPuMryAUtR8s-o9U27jc4whZoEMcoIl5AESOp-1GhJ_rzEJeVBsBIkdaXSivhgJu2Vs7fk44AuZYmhSS4tLkdLSgU4dyAAyUF6IYbziOJLveOahYfK-ngh-wcIg/media?maxWidthPx=800&key=AIzaSyAHuazNth9ZvfRFYk5-v49CwXwhABH8Ri0
@ -504,11 +499,9 @@ 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
@ -516,9 +509,8 @@ 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
@ -527,11 +519,9 @@ 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
@ -539,9 +529,8 @@ 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
@ -550,9 +539,8 @@ unesco_ich_enrichment:
inscription_year: 2017
multinational: false
url: https://ich.unesco.org/en/RL/craft-of-the-miller-operating-windmills-and-watermills-01265
description: The craft of the miller operating windmills and watermills involves
the knowledge and skills necessary to operate a mill and maintain it in a good
state of repair. With a declining number of people earning their livelihood
description: The craft of the miller operating windmills and watermills involves the knowledge and skills necessary to
operate a mill and maintain it in a good state of repair. With a declining number of people earning their livelihood
from the craft, millers today also play a key role in transmitting the cultur...
timespan:
begin_of_the_begin: '2020-01-01T00:00:00Z'
@ -561,8 +549,8 @@ timespan:
end_of_the_end: null
sources:
- 'Wikidata P571 (inception): https://www.wikidata.org/wiki/Q115131080'
notes: Maczek Memorial Breda founded in 2020. Memorial museum honoring General Stanisław
Maczek and the Polish First Armoured Division who liberated Breda in 1944.
notes: Maczek Memorial Breda founded in 2020. Memorial museum honoring General Stanisław Maczek and the Polish First Armoured
Division who liberated Breda in 1944.
location:
latitude: 51.5818976
longitude: 4.7477048
@ -600,8 +588,8 @@ digital_platform_v2:
platform_name: Maczek Memorial Website
platform_url: https://www.maczekmemorialbreda.nl/
platform_type: DISCOVERY_PORTAL
description: Beleef het verhaal van Generaal Maczek en zijn soldaten van de 1e
Poolse Pantserdivisie&nbsp;tijdens de Tweede Wereldoorlog.
description: Beleef het verhaal van Generaal Maczek en zijn soldaten van de 1e Poolse Pantserdivisie&nbsp;tijdens de Tweede
Wereldoorlog.
language: nl
og_image: null
favicon: https://www.maczekmemorialbreda.nl/images/favicon.ico
@ -761,3 +749,21 @@ logo_enrichment:
has_favicon: true
has_og_image: false
favicon_count: 1
mission_statement:
- statement_id: https://nde.nl/ontology/hc/mission/nl-nb-bre-m-mmb/mission-2026
statement_type: mission
statement_text: Het Maczek Memorial Breda wil enerzijds de Poolse Bevrijders blijvend EREN voor de offers die destijds zijn
gebracht. Maar anderzijds willen wij LEREN en bewustzijn kweken dat vrijheid niet vanzelfsprekend is.
statement_language: nl
extracted_verbatim: true
source_url: https://www.maczekmemorialbreda.nl/over-ons
content_hash: sha256-2ESQsdLKog/srvagMZhFTcEYqQGEdFafqkNa0b0ipVI=
provenance:
statement_created_at: '2026-01-04T15:55:00.038130+00:00'
source_archived_at: '2026-01-04T15:54:42.858124+00:00'
retrieval_agent: linkup-api
extraction_agent: zai-glm/glm-4.7
extraction_confidence: 0.85
prov:wasDerivedFrom: https://www.maczekmemorialbreda.nl/over-ons
prov:generatedAtTime: '2026-01-04T15:55:00.038130+00:00'
source_section: Missie, visie en beleidsplan

View file

@ -54,8 +54,7 @@ provenance:
linkup_timespan:
- source_type: linkup_web_search
fetch_timestamp: '2025-12-15T18:42:07.940966+00:00'
search_query: '"Erfgoedstichting Den Hout" Den Hout opgericht OR gesticht OR
sinds'
search_query: '"Erfgoedstichting Den Hout" Den Hout opgericht OR gesticht OR sinds'
source_urls:
- https://www.erfgoedstichtingdenhout.nl/doelstellingen/
- https://www.erfgoedstichtingdenhout.nl/rk-corneliuskerk-den-hout/
@ -143,19 +142,17 @@ google_maps_enrichment:
author_uri: https://www.google.com/maps/contrib/109345400535404133153/reviews
rating: 4
relative_time_description: 2 jaar geleden
text: Heel fijne sfeer, erg fijne bediening. Alleen die tocht bij kou moet je
wel iets aan doen. Die is erg onprettig bij koud weer en als je in de verkeerde
hoek zit.
text: Heel fijne sfeer, erg fijne bediening. Alleen die tocht bij kou moet je wel iets aan doen. Die is erg onprettig
bij koud weer en als je in de verkeerde hoek zit.
publish_time: '2023-11-14T00:33:07.235020Z'
- author_name: Jet Baars
author_uri: https://www.google.com/maps/contrib/105889070623296825328/reviews
rating: 5
relative_time_description: 3 jaar geleden
text: 'Altijd wat te doen, bruisend Dorpshuis bijv lekker bewegen op muziek voor
65plus op maandagmiddag van half 2 tot half 3.
text: 'Altijd wat te doen, bruisend Dorpshuis bijv lekker bewegen op muziek voor 65plus op maandagmiddag van half 2 tot
half 3.
Alle spieren komen aan bod met dans, oefeningen en spel!! Betaalbaar en deskundige
ervaren docente. Gratis proefles🤗'
Alle spieren komen aan bod met dans, oefeningen en spel!! Betaalbaar en deskundige ervaren docente. Gratis proefles🤗'
publish_time: '2022-09-20T22:06:29.338632Z'
- author_name: Piet Hein Meulemeester
author_uri: https://www.google.com/maps/contrib/107241686772748707432/reviews
@ -169,15 +166,14 @@ google_maps_enrichment:
author_uri: https://www.google.com/maps/contrib/100869386574814390111/reviews
rating: 5
relative_time_description: 2 jaar geleden
text: Een leuke en gemoedelijke plek om samen te komen voor feesten, partijen
en/of andere ontmoetingen.
text: Een leuke en gemoedelijke plek om samen te komen voor feesten, partijen en/of andere ontmoetingen.
publish_time: '2023-11-27T11:55:33.573093Z'
- author_name: Nathalie Verregghen
author_uri: https://www.google.com/maps/contrib/118025602544612596959/reviews
rating: 5
relative_time_description: 6 jaar geleden
text: Het was geweldig! zeer vriendelijk personeel achter de bar heb daar lekker
een pilske op en een snickertje zitten eten!! Ga morgen terug denk!😁
text: Het was geweldig! zeer vriendelijk personeel achter de bar heb daar lekker een pilske op en een snickertje zitten
eten!! Ga morgen terug denk!😁
publish_time: '2019-04-13T16:51:09.338524Z'
photo_urls:
- https://places.googleapis.com/v1/places/ChIJqeDti5qexkcRtX4k1pFXVK0/photos/AWn5SU6LxE09x37FNVfXqErvnRFMw0LBsl7PPifD7lBmDc4c_F4a9ivW9m06gADLrAZqD6y_oDmoZw30nOpL3GTTrN4IzNlGCbobquhm5vw8xI_aibR0_9H94rtP1T035Baqvh5nxwfIkltxODgtayXSJt4TRfpsEYulEI3ZE1Q0EnWtzmsPQU8mLBJ-RjDec1BGOytgMP42i7rU1EiX_Q51jUrpF61noriaN5DPi2Tk0tQU7o8IgLOH_M7EzCdjRxfL0Fu2EsKPqpvnLzJ-pqHMcjUQfFxhNumWg5U-yIbm39JlEVc32KPmXZ6T0VqqYT2IGX6ex0OlITjl6CQChRQM7UPDHGNCtmeBXpNIL7KoVl6oZanIZxFJj-4VRIavtWCg3g3ewBKt9vej-IMe2fCyyCcYNygdBDXtqj1uyIUe92Nyzg/media?maxWidthPx=800&key=AIzaSyAHuazNth9ZvfRFYk5-v49CwXwhABH8Ri0
@ -353,11 +349,9 @@ 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
@ -365,9 +359,8 @@ 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
@ -376,11 +369,9 @@ 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
@ -388,9 +379,8 @@ 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
@ -399,9 +389,8 @@ 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.6595436
@ -526,3 +515,37 @@ logo_enrichment:
has_favicon: true
has_og_image: false
favicon_count: 3
mission_statement:
- statement_id: https://nde.nl/ontology/hc/mission/nl-nb-dho-s-esh/mission-2026
statement_type: mission
statement_text: Ons dorpshuis is de centrale ontmoetingsplek voor de inwoners van Den Hout. Onze deuren staan open voor
iedereen die verbinding zoekt, waar inwoners samen komen om te genieten van activiteiten, evenementen en gezelligheid.
statement_language: nl
extracted_verbatim: true
source_url: http://www.dorpshuisdenbrink.nl/
content_hash: sha256-BhG3uIawKFwFp+Etm393BzhIeksd3ZUfqaI9ukbdoO0=
provenance:
statement_created_at: '2026-01-04T15:25:27.633179+00:00'
source_archived_at: '2026-01-04T15:24:51.029842+00:00'
retrieval_agent: linkup-api
extraction_agent: zai-glm/glm-4.7
extraction_confidence: 0.7
prov:wasDerivedFrom: http://www.dorpshuisdenbrink.nl/
prov:generatedAtTime: '2026-01-04T15:25:27.633179+00:00'
source_section: Welkom bij Dorpshuis Den Brink
- statement_id: https://nde.nl/ontology/hc/mission/nl-nb-dho-s-esh/goal-2026
statement_type: goal
statement_text: Wij bieden een warme en uitnodigende omgeving voor jong en oud.
statement_language: nl
extracted_verbatim: true
source_url: http://www.dorpshuisdenbrink.nl/
content_hash: sha256-XnNcTA+8Wa37fIsewRSltPOpTQO/h3Y8i2BhOe47C+g=
provenance:
statement_created_at: '2026-01-04T15:25:27.633195+00:00'
source_archived_at: '2026-01-04T15:24:51.029842+00:00'
retrieval_agent: linkup-api
extraction_agent: zai-glm/glm-4.7
extraction_confidence: 0.7
prov:wasDerivedFrom: http://www.dorpshuisdenbrink.nl/
prov:generatedAtTime: '2026-01-04T15:25:27.633195+00:00'
source_section: Welkom bij Dorpshuis Den Brink

View file

@ -92,8 +92,7 @@ provenance:
linkup_timespan:
- source_type: linkup_web_search
fetch_timestamp: '2025-12-15T19:01:30.325654+00:00'
search_query: '"Nationaal Register Historische Computers / Home Computer Museum"
Helmond opgericht OR gesticht OR sinds'
search_query: '"Nationaal Register Historische Computers / Home Computer Museum" Helmond opgericht OR gesticht OR sinds'
source_urls:
- https://www.uitmetkinderen.nl/locaties/homecomputermuseum/
- https://ditishelmond.nl/home-computer-museum-ontwikkelt-eigen-game/
@ -229,21 +228,17 @@ google_maps_enrichment:
author_uri: https://www.google.com/maps/contrib/112785384991147320235/reviews
rating: 5
relative_time_description: 4 maanden geleden
text: 'Als je de ontwikkeling van computers vanaf het begin hebt meegemaakt, is
dit museum echt een aanrader. Laat Windows 11, de cloud, social media en ChatGPT
even achter je en stap terug in de tijd, naar het moment waar het allemaal begon.
Even weer dat gevoel van klikkende toetsenborden, de matrixprinter, en een warm
nagloeiende CRT-monitor met alleen een knipperende prompt. Alles is hier nog
zoals het was, en werkend! Het leukste is dat je alles mag aanraken en bedienen.
text: 'Als je de ontwikkeling van computers vanaf het begin hebt meegemaakt, is dit museum echt een aanrader. Laat Windows
11, de cloud, social media en ChatGPT even achter je en stap terug in de tijd, naar het moment waar het allemaal begon.
Even weer dat gevoel van klikkende toetsenborden, de matrixprinter, en een warm nagloeiende CRT-monitor met alleen een
knipperende prompt. Alles is hier nog zoals het was, en werkend! Het leukste is dat je alles mag aanraken en bedienen.
Je kunt hier echt wel een paar uur verblijven.
Het museum is ingedeeld in verschillende categorieën, waardoor je een tijdreis
maakt van de eerste homecomputers tot ergens in het heden. Bij veel computers
staan informatiebordjes. Een kleine tip: het zou nog mooier zijn als per ruimte
duidelijker (groter?) aangegeven wordt welke jaartallen je doorloopt, en welke
ontwikkelingen er in die periode speelden bijvoorbeeld qua processoren of
fabrikanten. Dat zou de tijdreis nóg belevingsvoller maken.
Het museum is ingedeeld in verschillende categorieën, waardoor je een tijdreis maakt van de eerste homecomputers tot
ergens in het heden. Bij veel computers staan informatiebordjes. Een kleine tip: het zou nog mooier zijn als per ruimte
duidelijker (groter?) aangegeven wordt welke jaartallen je doorloopt, en welke ontwikkelingen er in die periode speelden
bijvoorbeeld qua processoren of fabrikanten. Dat zou de tijdreis nóg belevingsvoller maken.
5 sterren voor dit museum!'
@ -252,28 +247,25 @@ google_maps_enrichment:
author_uri: https://www.google.com/maps/contrib/111436461980130224196/reviews
rating: 5
relative_time_description: een week geleden
text: Voor iedereen die herinneringen heeft aan de beginjaren van de thuis(spel)computer
of wil weten hoe het allemaal begon is het HomeComputerMuseum een must. Indrukwekkende
verzameling (spel-)computers en toebehoren.
text: Voor iedereen die herinneringen heeft aan de beginjaren van de thuis(spel)computer of wil weten hoe het allemaal
begon is het HomeComputerMuseum een must. Indrukwekkende verzameling (spel-)computers en toebehoren.
publish_time: '2025-11-20T11:48:59.897120078Z'
- author_name: Jan Kouwenhoven
author_uri: https://www.google.com/maps/contrib/113568419080086827780/reviews
rating: 5
relative_time_description: 4 maanden geleden
text: Ik heb dit museum, het computer & game museum in Zwolle en het game museum
in Zoetermeer bezocht. Alle 3 aanraders met sterren. Dit museum heeft de mooiste
presentatie en de beste uitleg bij de computers en consoles. De arcade is wat
kleiner dan de andere twee, maar de interactiviteit en mogelijkheid om van alles
met de computers te doen weegt daar zeker tegenop.
text: Ik heb dit museum, het computer & game museum in Zwolle en het game museum in Zoetermeer bezocht. Alle 3 aanraders
met sterren. Dit museum heeft de mooiste presentatie en de beste uitleg bij de computers en consoles. De arcade is wat
kleiner dan de andere twee, maar de interactiviteit en mogelijkheid om van alles met de computers te doen weegt daar
zeker tegenop.
publish_time: '2025-07-15T17:58:52.294088088Z'
- author_name: Rene Knuvers
author_uri: https://www.google.com/maps/contrib/104420170468763412668/reviews
rating: 5
relative_time_description: 5 maanden geleden
text: 'Een mooie collectie van nostalgische computers. Van zelfbouwcomputers uit
de jaren zeventig tot de mainstrram kloon-PCs. Van CDi en beeldplaat tot de
ontwikkeling van floppy disks. En veel van de machines zijn werkend te zien
en te horen. Wij speelden een potje pong, Arkanoid en Outrun.
text: 'Een mooie collectie van nostalgische computers. Van zelfbouwcomputers uit de jaren zeventig tot de mainstrram kloon-PCs.
Van CDi en beeldplaat tot de ontwikkeling van floppy disks. En veel van de machines zijn werkend te zien en te horen.
Wij speelden een potje pong, Arkanoid en Outrun.
Echt een leuk uitje voor iedereen die ergens vorige eeuw wat met computers had!'
@ -282,9 +274,8 @@ google_maps_enrichment:
author_uri: https://www.google.com/maps/contrib/115148536634900410232/reviews
rating: 5
relative_time_description: 6 maanden geleden
text: Een leuk museum met zeer uitgebreide collectie, veel werkende computers
en interactie. Voor jong en oud (haal je oude Basic code skills op, kinderen
vermaken zich met games, consoles en arcades, inclusief Duck Hunt en Photo Play).
text: Een leuk museum met zeer uitgebreide collectie, veel werkende computers en interactie. Voor jong en oud (haal je
oude Basic code skills op, kinderen vermaken zich met games, consoles en arcades, inclusief Duck Hunt en Photo Play).
De moeite waard!
publish_time: '2025-05-20T13:35:58.578339Z'
photo_urls:
@ -335,8 +326,7 @@ google_maps_enrichment:
icon_background_color: '#13B5C7'
utc_offset_minutes: 60
google_maps_status: SUCCESS
google_maps_search_query: Nationaal Register Historische Computers / Home Computer
Museum, Netherlands
google_maps_search_query: Nationaal Register Historische Computers / Home Computer Museum, Netherlands
web_enrichment:
web_archives:
- url: https://www.homecomputermuseum.nl/
@ -453,11 +443,9 @@ 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
@ -465,9 +453,8 @@ 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
@ -476,11 +463,9 @@ 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
@ -488,9 +473,8 @@ 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
@ -499,9 +483,8 @@ 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.4797478
@ -540,8 +523,8 @@ digital_platform_v2:
platform_name: HomeComputerMuseum Website
platform_url: https://www.homecomputermuseum.nl/
platform_type: DISCOVERY_PORTAL
description: HomeComputerMuseum is een initiatief om om de kennis en de machines
te preserveren en op een interactieve manier te presenteren.
description: HomeComputerMuseum is een initiatief om om de kennis en de machines te preserveren en op een interactieve
manier te presenteren.
language: nl
og_image: null
favicon: https://www.homecomputermuseum.nl/wp-content/themes/hcm/images/icons/apple-touch-icon.png
@ -588,27 +571,23 @@ timespan:
events:
- date: '2018-03-17'
type: founding
description: is opgericht eind 2016 en opende officieel zijn deuren op 17 maart
2018
description: is opgericht eind 2016 en opende officieel zijn deuren op 17 maart 2018
timeline_enrichment:
timeline_events:
- event_type: FOUNDING
event_date: '2018-03-17'
date_precision: day
approximate: false
description: is opgericht eind 2016 en opende officieel zijn deuren op 17 maart
2018
description: is opgericht eind 2016 en opende officieel zijn deuren op 17 maart 2018
source_urls:
- https://computerhistorischmuseum.nl/startpagina-computermuseums/
- https://tweakers.net/reviews/8002/tweaker-whizzi-over-zijn-homecomputermuseum-veel-meer-dan-een-museum.html
- https://www.uitmetkinderen.nl/locaties/homecomputermuseum/
- https://ditishelmond.nl/home-computer-museum-ontwikkelt-eigen-game/
- https://www.jeroenderwort.nl/home-computer-museum-laat-8-bit-tijden-herleven/
linkup_query: '"Nationaal Register Historische Computers / Home Computer Museum"
Helmond opgericht OR gesticht OR sinds'
linkup_answer: Het HomeComputerMuseum in Helmond is opgericht eind 2016 en opende
officieel zijn deuren op 17 maart 2018. Er is geen informatie beschikbaar over
het Nationaal Register Historische Computers in de gegeven bronnen.
linkup_query: '"Nationaal Register Historische Computers / Home Computer Museum" Helmond opgericht OR gesticht OR sinds'
linkup_answer: Het HomeComputerMuseum in Helmond is opgericht eind 2016 en opende officieel zijn deuren op 17 maart 2018.
Er is geen informatie beschikbaar over het Nationaal Register Historische Computers in de gegeven bronnen.
fetch_timestamp: '2025-12-15T19:01:30.308272+00:00'
archive_path: web/0562/linkup/linkup_founding_20251215T190130Z.json
extraction_method: linkup_answer_regex
@ -683,3 +662,21 @@ logo_enrichment:
has_favicon: true
has_og_image: false
favicon_count: 4
mission_statement:
- statement_id: https://nde.nl/ontology/hc/mission/nl-nb-hel-n-nrhchcm/mission-2026
statement_type: mission
statement_text: HomeComputerMuseum is een initiatief om om de kennis en de machines te preserveren en op een interactieve
manier te presenteren.
statement_language: nl
extracted_verbatim: true
source_url: https://www.homecomputermuseum.nl/
content_hash: sha256-6IyzQd1fhESwgwmG0pLcGbAaWYgFLRj3PDO8eFoyysA=
provenance:
statement_created_at: '2026-01-04T16:48:22.950972+00:00'
source_archived_at: '2026-01-04T16:47:57.143240+00:00'
retrieval_agent: linkup-api
extraction_agent: zai-glm/glm-4.7
extraction_confidence: 0.9
prov:wasDerivedFrom: https://www.homecomputermuseum.nl/
prov:generatedAtTime: '2026-01-04T16:48:22.950972+00:00'
source_section: Homepagina / Introductie

View file

@ -30,8 +30,7 @@ wikidata_enrichment:
instance_of: &id001
- id: Q5774403
label: historical society
description: organization that collects, researches, interprets and preserves
information or items of historical interest
description: organization that collects, researches, interprets and preserves information or items of historical interest
wikidata_instance_of: *id001
wikidata_location:
headquarters_location:
@ -107,8 +106,7 @@ provenance:
linkup_timespan:
- source_type: linkup_web_search
fetch_timestamp: '2025-12-15T19:07:36.204938+00:00'
search_query: '"Heemkundevereniging De Heerlyckheit Plo" Oploo opgericht OR
gesticht OR sinds'
search_query: '"Heemkundevereniging De Heerlyckheit Plo" Oploo opgericht OR gesticht OR sinds'
source_urls:
- https://www.omroeplvc.nl/nieuws/03-04-2024-heemkring-viert-zilveren-jubileum-met-expositie-oploo-in-de-vorige-eeuw/
- https://www.heemkundevereniging-heerlerheide.nl/
@ -321,11 +319,9 @@ 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
@ -333,9 +329,8 @@ 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
@ -344,11 +339,9 @@ 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
@ -356,9 +349,8 @@ 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
@ -367,9 +359,8 @@ 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.606429399999996
@ -408,9 +399,8 @@ digital_platform_v2:
platform_name: Home - De Heerlyckheit Plo Website
platform_url: https://heemkundeoploo.nl/
platform_type: DISCOVERY_PORTAL
description: 01. 02. 03. Over ons Onze vereniging Heemkundevereniging De Heerlyckheit
Plo is een vereniging met zon 150 enthousiaste leden. We zijn geïnteresseerd
in erfgoed en delen informatie, kennis en herinneringen […]
description: 01. 02. 03. Over ons Onze vereniging Heemkundevereniging De Heerlyckheit Plo is een vereniging met zon
150 enthousiaste leden. We zijn geïnteresseerd in erfgoed en delen informatie, kennis en herinneringen […]
language: nl
og_image: https://heemkundeoploo.nl/wp-content/uploads/2025/02/Oploo-dorpsgezicht.jpg
favicon: https://heemkundeoploo.nl/wp-content/uploads/2025/01/cropped-De-Heerlyckheit-Plo-favicon-1-32x32.jpg
@ -458,10 +448,8 @@ timeline_enrichment:
- https://www.brabantserfgoed.nl/page/4393/heemkundevereniging-de-heerlyckheit-dongen
- https://www.heemkundedongen.nl/
- https://www.heemkundevereniging-heerlerheide.nl/
linkup_query: '"Heemkundevereniging De Heerlyckheit Plo" Oploo opgericht OR gesticht
OR sinds'
linkup_answer: Heemkundevereniging De Heerlyckheit Plo in Oploo is opgericht op
19 april 1999.
linkup_query: '"Heemkundevereniging De Heerlyckheit Plo" Oploo opgericht OR gesticht OR sinds'
linkup_answer: Heemkundevereniging De Heerlyckheit Plo in Oploo is opgericht op 19 april 1999.
fetch_timestamp: '2025-12-15T19:07:36.115791+00:00'
archive_path: web/0612/linkup/linkup_founding_20251215T190736Z.json
extraction_method: linkup_answer_regex
@ -541,3 +529,23 @@ logo_enrichment:
has_favicon: true
has_og_image: true
favicon_count: 3
mission_statement:
- statement_id: https://nde.nl/ontology/hc/mission/nl-nb-opl-s-hvhp/goal-2026
statement_type: goal
statement_text: Het bewaren van oude voorwerpen uit Oploo zelf, alsmede zoveel mogelijk fotos, bidprentjes, geboortekaartjes,
trouwkaarten, krantenknipsels. Onderzoeken wat in de archieven bekend is over Oploo zelf, zoals onderzoek in kadaster,
burgerlijke stand, bevolkingsregisters, schepenbankarchief en notarieel archief. Het uitbrengen van boeken en boekenseries
die betrekking hebben op het verleden van Oploo en de omgeving.
statement_language: nl
extracted_verbatim: true
source_url: https://www.heemkundeoploo.nl/over-ons
content_hash: sha256-4dJZSb62DH+2eXnAPTl3tXmtpOtd22NfEcJG+wBS0yQ=
provenance:
statement_created_at: '2026-01-04T15:55:22.259690+00:00'
source_archived_at: '2026-01-04T15:54:51.540843+00:00'
retrieval_agent: linkup-api
extraction_agent: zai-glm/glm-4.7
extraction_confidence: 0.85
prov:wasDerivedFrom: https://www.heemkundeoploo.nl/over-ons
prov:generatedAtTime: '2026-01-04T15:55:22.259690+00:00'
source_section: Over ons

View file

@ -28,8 +28,7 @@ provenance:
linkup_timespan:
- source_type: linkup_web_search
fetch_timestamp: '2025-12-15T19:08:31.394243+00:00'
search_query: '"Schola cantorum karolus magnus" Overloon opgericht OR gesticht
OR sinds'
search_query: '"Schola cantorum karolus magnus" Overloon opgericht OR gesticht OR sinds'
source_urls:
- https://www.karolus-magnus.nl/
- https://www.immaterieelerfgoed.nl/nl/gregoriaanse-zang-stilte-en-beroering-door-karolus-magnus
@ -164,11 +163,9 @@ 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
@ -176,9 +173,8 @@ 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
@ -187,11 +183,9 @@ 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
@ -199,9 +193,8 @@ 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
@ -210,9 +203,8 @@ 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.57167
@ -240,8 +232,8 @@ digital_platform_v2:
platform_name: gregoriaans koor - Gregoriaanse schola Karolus Magnus Website
platform_url: https://www.karolus-magnus.nl/
platform_type: INSTITUTIONAL_WEBSITE
description: Het gregoriaans koor biedt aan de muzikale begeleiding te verzorgen
bij kerkelijke uitvaarten en vieringen in crematoria.
description: Het gregoriaans koor biedt aan de muzikale begeleiding te verzorgen bij kerkelijke uitvaarten en vieringen
in crematoria.
language: nl
og_image: http://www.karolus-magnus.nl/wp-content/uploads/2023/05/st-walrick-2023-kopie.png
favicon: https://www.karolus-magnus.nl/wp-content/uploads/2018/03/cropped-karolus-munt-e1522222533534-32x32.png
@ -291,10 +283,8 @@ timeline_enrichment:
- https://www.stefanus.nl/petrus-canisius/activiteiten/lustrumconcert-schola-cantorum-karolus-magnus
- https://www.nieuwsuitnijmegen.nl/Nieuws/14645/schola-cantorum-karolus-magnus-35-jaar-gengageerd-gregoriaans.html
- https://www.karolus-magnus.nl/3610-2/
linkup_query: '"Schola cantorum karolus magnus" Overloon opgericht OR gesticht
OR sinds'
linkup_answer: Schola Cantorum Karolus Magnus in Overloon (Nijmegen) is opgericht
in 1988.
linkup_query: '"Schola cantorum karolus magnus" Overloon opgericht OR gesticht OR sinds'
linkup_answer: Schola Cantorum Karolus Magnus in Overloon (Nijmegen) is opgericht in 1988.
fetch_timestamp: '2025-12-15T19:08:31.384621+00:00'
archive_path: web/1778/linkup/linkup_founding_20251215T190831Z.json
extraction_method: linkup_answer_regex
@ -333,3 +323,38 @@ logo_enrichment:
has_favicon: true
has_og_image: true
favicon_count: 3
mission_statement:
- statement_id: https://nde.nl/ontology/hc/mission/nl-nb-ove-i-sckm/mission-2026
statement_type: mission
statement_text: De Schola stelt zich ten doel het authentieke gregoriaans als kostbaar cultureel en liturgisch erfgoed te
behoeden, te propageren en — door het in deze tijd te plaatsen — te actualiseren.
statement_language: nl
extracted_verbatim: true
source_url: https://www.karolus-magnus.nl/over-ons
content_hash: sha256-LUTTGk7Li4ecmRQEipeyBf4q1ypIq1J5FwI39eoK3Nw=
provenance:
statement_created_at: '2026-01-04T15:55:02.089813+00:00'
source_archived_at: '2026-01-04T15:54:33.411243+00:00'
retrieval_agent: linkup-api
extraction_agent: zai-glm/glm-4.7
extraction_confidence: 0.95
prov:wasDerivedFrom: https://www.karolus-magnus.nl/over-ons
prov:generatedAtTime: '2026-01-04T15:55:02.089813+00:00'
source_section: Motivatie
- statement_id: https://nde.nl/ontology/hc/mission/nl-nb-ove-i-sckm/goal-2026
statement_type: goal
statement_text: de toehoorders de schoonheid, rijkdom en weldadige werking van dit bijzondere erfgoed laten ervaren; de
belangstelling voor en de kennis van deze muziek vergroten.
statement_language: nl
extracted_verbatim: true
source_url: https://www.karolus-magnus.nl/over-ons
content_hash: sha256-UJXc9VUONXSSbeTJZKmSSj3gHyXYQEf1MiNWpYrXcmE=
provenance:
statement_created_at: '2026-01-04T15:55:02.089826+00:00'
source_archived_at: '2026-01-04T15:54:33.411243+00:00'
retrieval_agent: linkup-api
extraction_agent: zai-glm/glm-4.7
extraction_confidence: 0.95
prov:wasDerivedFrom: https://www.karolus-magnus.nl/over-ons
prov:generatedAtTime: '2026-01-04T15:55:02.089826+00:00'
source_section: Motivatie

View file

@ -28,8 +28,7 @@ wikidata_enrichment:
instance_of: &id001
- id: Q5774403
label: historical society
description: organization that collects, researches, interprets and preserves
information or items of historical interest
description: organization that collects, researches, interprets and preserves information or items of historical interest
wikidata_instance_of: *id001
wikidata_location:
country: &id002
@ -100,8 +99,7 @@ provenance:
linkup_timespan:
- source_type: linkup_web_search
fetch_timestamp: '2025-12-15T19:11:36.712564+00:00'
search_query: '"Heemgebouw "de Komme" Heemkundekring Schaijk-Reek" Schaijk opgericht
OR gesticht OR sinds'
search_query: '"Heemgebouw "de Komme" Heemkundekring Schaijk-Reek" Schaijk opgericht OR gesticht OR sinds'
source_urls:
- https://www.exploremaashorst.nl/locaties-overzicht/2927112411/heemkunde-de-komme
- http://www.heemkundeschaijkreek.nl/index.php/flitsnieuws
@ -407,11 +405,9 @@ unesco_ich_enrichment:
inscription_year: 2023
multinational: false
url: https://ich.unesco.org/en/RL/rotterdam-summer-carnival-01870
description: The Rotterdam Summer Carnival is a multicultural celebration that
unites participants from the Caribbean and European Netherlands, as well as
ethnic minority groups from Central and South America and Africa living in the
Netherlands. The event includes a street parade, a brass band competition and
a...
description: The Rotterdam Summer Carnival is a multicultural celebration that unites participants from the Caribbean
and European Netherlands, as well as ethnic minority groups from Central and South America and Africa living in the
Netherlands. The event includes a street parade, a brass band competition and a...
- unesco_ich_id: '1979'
name: 'Traditional irrigation: knowledge, technique, and organization'
list_type: RL
@ -419,9 +415,8 @@ 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
@ -430,11 +425,9 @@ 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
@ -442,9 +435,8 @@ 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
@ -453,9 +445,8 @@ 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.74745
@ -681,3 +672,24 @@ logo_enrichment:
has_favicon: true
has_og_image: true
favicon_count: 5
mission_statement:
- statement_id: https://nde.nl/ontology/hc/mission/nl-nb-sch-s-hkhksr/goal-2026
statement_type: goal
statement_text: De doelstelling van onze heemkundekring is de plaatselijke en regionale geschiedenis uitzoeken, beschrijven
en vastleggen. Dat doen we door uitbrengen van artikelen, publicaties en boeken, het aanleggen van archieven en verzamelingen
en het houden van tentoonstellingen, lezingen, geven van lessen aan de jeugd en andere activiteiten. Ook de gemeente en
andere instanties informeren wij en geven adviezen over de lokale geschiedenis en denken mee aan behoud van herinneringen
aan die geschiedenis.
statement_language: nl
extracted_verbatim: true
source_url: https://www.heemkundeschaijkreek.nl/over-ons
content_hash: sha256-Sg2WiRan3RfMjX9NOVDnFdqXBL1TVsgHhinRaeh65/A=
provenance:
statement_created_at: '2026-01-04T16:51:25.295744+00:00'
source_archived_at: '2026-01-04T16:50:43.401487+00:00'
retrieval_agent: linkup-api
extraction_agent: zai-glm/glm-4.7
extraction_confidence: 1.0
prov:wasDerivedFrom: https://www.heemkundeschaijkreek.nl/over-ons
prov:generatedAtTime: '2026-01-04T16:51:25.295744+00:00'
source_section: Over ons

View file

@ -28,8 +28,7 @@ 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,8 +48,8 @@ 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
kien_enrichment:
@ -196,11 +195,9 @@ 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
@ -208,9 +205,8 @@ 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
@ -219,11 +215,9 @@ 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
@ -231,9 +225,8 @@ 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,9 +235,8 @@ 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.6929358
@ -279,8 +271,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
@ -330,15 +322,12 @@ 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
@ -352,9 +341,8 @@ 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
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
@ -374,3 +362,38 @@ logo_enrichment:
has_favicon: true
has_og_image: false
favicon_count: 2
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_language: nl
extracted_verbatim: true
source_url: https://www.hetlekkerstebrabantseworstenbroodje.nl/over
content_hash: sha256-o24uk6y7nCGmXecetGulO7GbUUTtO5cITVuF4HvboFM=
provenance:
statement_created_at: '2026-01-04T12:16:02.377189+00:00'
source_archived_at: '2026-01-04T12:15:22.443632+00:00'
retrieval_agent: linkup-api
extraction_agent: zai-glm/glm-4.7
extraction_confidence: 0.9
prov:wasDerivedFrom: https://www.hetlekkerstebrabantseworstenbroodje.nl/over
prov:generatedAtTime: '2026-01-04T12:16:02.377189+00:00'
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_language: nl
extracted_verbatim: true
source_url: https://www.hetlekkerstebrabantseworstenbroodje.nl/over
content_hash: sha256-uDZpiYUjJAgrhADAcLL5L61E5WN2b7XNAg971OOg/nI=
provenance:
statement_created_at: '2026-01-04T12:16:02.377243+00:00'
source_archived_at: '2026-01-04T12:15:22.443632+00:00'
retrieval_agent: linkup-api
extraction_agent: zai-glm/glm-4.7
extraction_confidence: 0.9
prov:wasDerivedFrom: https://www.hetlekkerstebrabantseworstenbroodje.nl/over
prov:generatedAtTime: '2026-01-04T12:16:02.377243+00:00'
source_section: Over ons

View file

@ -16,11 +16,9 @@ provenance:
- 'Entry created from Museum Register Nederland - not in original NDE dataset
Removed incorrect wikidata_enrichment on 2025-12-08T08:19:00.843442+00:00. Re-enrichment
required with proper matching.'
Removed incorrect wikidata_enrichment on 2025-12-08T08:19:00.843442+00:00. Re-enrichment required with proper matching.'
- Canonical location normalized on 2025-12-09T08:53:00Z
- 'Wikidata enrichment via location+name match 2025-12-20T16:51:20Z: Q3983824 (TextielMuseum)
- score: 90.0%'
- 'Wikidata enrichment via location+name match 2025-12-20T16:51:20Z: Q3983824 (TextielMuseum) - score: 90.0%'
sources:
genealogiewerkbalk:
- source_type: genealogiewerkbalk_registry
@ -177,8 +175,7 @@ google_maps_enrichment:
- 'zondag: 12:0017:00'
rating: 4.4
total_ratings: 2230
editorial_summary: Museum in een gerestaureerde fabriek voor industrieel- en designtextiel
met een opvallende glazen entree.
editorial_summary: Museum in een gerestaureerde fabriek voor industrieel- en designtextiel met een opvallende glazen entree.
google_maps_url: https://maps.google.com/?cid=15479377932000325460&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA
google_maps_status: SUCCESS
google_maps_search_query: TextielMuseum Tilburg, Netherlands
@ -275,8 +272,7 @@ digital_platforms:
platform_type: WEBSITE
platform_category:
- Organizational website
digital_collections: Museum in een gerestaureerde fabriek voor industrieel- en designtextiel
met een opvallende glazen entree.
digital_collections: Museum in een gerestaureerde fabriek voor industrieel- en designtextiel met een opvallende glazen entree.
technology_stack: Standard web technology
data_standards:
- HTML5
@ -296,11 +292,9 @@ 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
@ -308,9 +302,8 @@ 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
@ -319,11 +312,9 @@ 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
@ -331,9 +322,8 @@ 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
@ -342,9 +332,8 @@ unesco_ich_enrichment:
inscription_year: 2017
multinational: false
url: https://ich.unesco.org/en/RL/craft-of-the-miller-operating-windmills-and-watermills-01265
description: The craft of the miller operating windmills and watermills involves
the knowledge and skills necessary to operate a mill and maintain it in a good
state of repair. With a declining number of people earning their livelihood
description: The craft of the miller operating windmills and watermills involves the knowledge and skills necessary to
operate a mill and maintain it in a good state of repair. With a declining number of people earning their livelihood
from the craft, millers today also play a key role in transmitting the cultur...
timespan:
begin_of_the_begin: '1958-01-01T00:00:00Z'
@ -389,9 +378,8 @@ digital_platform_v2:
platform_name: Home - textielmuseum.nl - TextielMuseum Website
platform_url: https://www.textielmuseum.nl/
platform_type: EDUCATION
description: Kom naar het TextielMuseum in Tilburg voor inspirerende tentoonstellingen
op het gebied van kunst, design, mode en erfgoed. Ontdek ook het TextielLab,
het ontwikkelcentrum voor textiel. Plan nu je bezoek!
description: Kom naar het TextielMuseum in Tilburg voor inspirerende tentoonstellingen op het gebied van kunst, design,
mode en erfgoed. Ontdek ook het TextielLab, het ontwikkelcentrum voor textiel. Plan nu je bezoek!
language: nl
og_image: null
favicon: http://www.textielmuseum.nl/favicon/apple-touch-icon.png
@ -523,3 +511,37 @@ logo_enrichment:
has_favicon: true
has_og_image: false
favicon_count: 4
mission_statement:
- statement_id: https://nde.nl/ontology/hc/mission/nl-nb-til-m-tmt/vision-2026
statement_type: vision
statement_text: Deze drie instellingen geven het Tilburgse verleden een toekomst.
statement_language: nl
extracted_verbatim: true
source_url: https://www.textielmuseum.nl/organisatie
content_hash: sha256-b8mYcNLZL9xUrsAfJhkEd0tAaXvDLO2xHh+03TQTens=
provenance:
statement_created_at: '2026-01-04T16:01:08.017216+00:00'
source_archived_at: '2026-01-04T16:00:37.147579+00:00'
retrieval_agent: linkup-api
extraction_agent: zai-glm/glm-4.7
extraction_confidence: 0.75
prov:wasDerivedFrom: https://www.textielmuseum.nl/organisatie
prov:generatedAtTime: '2026-01-04T16:01:08.017216+00:00'
source_section: Organisatie
- statement_id: https://nde.nl/ontology/hc/mission/nl-nb-til-m-tmt/goal-2026
statement_type: goal
statement_text: 'De stichting heeft de ambitie om een dienende en betrokken instelling te zijn voor de partners: onderwijs,
gemeenten, bedrijfsleven, ontwerpers, onderzoekers en bezoekers.'
statement_language: nl
extracted_verbatim: true
source_url: https://www.textielmuseum.nl/organisatie
content_hash: sha256-wHfMk785LG3Yl+7DoPtdIu1/lv99v+5PstLSwZ279HU=
provenance:
statement_created_at: '2026-01-04T16:01:08.017228+00:00'
source_archived_at: '2026-01-04T16:00:37.147579+00:00'
retrieval_agent: linkup-api
extraction_agent: zai-glm/glm-4.7
extraction_confidence: 0.75
prov:wasDerivedFrom: https://www.textielmuseum.nl/organisatie
prov:generatedAtTime: '2026-01-04T16:01:08.017228+00:00'
source_section: Organisatie

View file

@ -55,8 +55,7 @@ provenance:
linkup_timespan:
- source_type: linkup_web_search
fetch_timestamp: '2025-12-15T19:25:18.497251+00:00'
search_query: '"De Legacy Video I Legt levensverhalen vast op film" Amsterdam
opgericht OR gesticht OR sinds'
search_query: '"De Legacy Video I Legt levensverhalen vast op film" Amsterdam opgericht OR gesticht OR sinds'
source_urls:
- https://mijnverhaalopfilm.nl/wat-is-een-levensverhaal/
- https://themovies.nl/informatie/geschiedenis/
@ -198,51 +197,45 @@ google_maps_enrichment:
author_uri: https://www.google.com/maps/contrib/112139363907489311340/reviews
rating: 5
relative_time_description: 2 maanden geleden
text: Yvonne heeft een legacy video over mijn vader gemaakt en dat was echt prachtig.
Zijn verhalen, emoties en herkenbare momenten kwamen zo mooi naar voren. Hij
was trots om zijn levensverhaal terug te zien. Dankbaar voor hoe Yvonne dit
text: Yvonne heeft een legacy video over mijn vader gemaakt en dat was echt prachtig. Zijn verhalen, emoties en herkenbare
momenten kwamen zo mooi naar voren. Hij was trots om zijn levensverhaal terug te zien. Dankbaar voor hoe Yvonne dit
met zoveel talent en liefde heeft vastgelegd.
publish_time: '2025-09-26T09:26:46.806418083Z'
- author_name: Marleen van Oortmerssen
author_uri: https://www.google.com/maps/contrib/111011561368062946755/reviews
rating: 5
relative_time_description: 2 maanden geleden
text: 'Wat een prachtig en onbetaalbaar eindresultaat! Met een lach en een traan
hebben we de film met het levensverhaal van mijn vader bekeken.
text: 'Wat een prachtig en onbetaalbaar eindresultaat! Met een lach en een traan hebben we de film met het levensverhaal
van mijn vader bekeken.
Yvonne is heel fijn in de communicatie tijdens het gehele proces en weet tijdens
het interview de juiste vragen te stellen om er een heel waardevol gesprek van
te maken. Ook de film zit goed in elkaar. Ik wou dat we dit van meer familieleden
hadden. Heel erg bedankt voor de tijd, energie en liefde die je in deze film
gestopt hebt!'
Yvonne is heel fijn in de communicatie tijdens het gehele proces en weet tijdens het interview de juiste vragen te stellen
om er een heel waardevol gesprek van te maken. Ook de film zit goed in elkaar. Ik wou dat we dit van meer familieleden
hadden. Heel erg bedankt voor de tijd, energie en liefde die je in deze film gestopt hebt!'
publish_time: '2025-09-15T18:01:39.051549321Z'
- author_name: Bart van Oortmerssen
author_uri: https://www.google.com/maps/contrib/108921060727154682415/reviews
rating: 5
relative_time_description: 4 weken geleden
text: Van mn dochters kreeg ik een Legacy video cadeau naar aanleiding van een
gezamenlijke reis naar de roots van onze familie in Indonesië. In twee gespreksrondes
heeft Yvonne weten door weten te dringen tot de kern van wie wij zijn als gezin.
Het resultaat is een schitterend, tijdloos document. Ons verhaal, met liefde
en vakmanschap vastgelegd. Niet aarzelen, doen!
text: Van mn dochters kreeg ik een Legacy video cadeau naar aanleiding van een gezamenlijke reis naar de roots van onze
familie in Indonesië. In twee gespreksrondes heeft Yvonne weten door weten te dringen tot de kern van wie wij zijn als
gezin. Het resultaat is een schitterend, tijdloos document. Ons verhaal, met liefde en vakmanschap vastgelegd. Niet
aarzelen, doen!
publish_time: '2025-10-30T21:47:56.754649681Z'
- author_name: Marielle van Gastel
author_uri: https://www.google.com/maps/contrib/109005083108149340443/reviews
rating: 5
relative_time_description: 9 maanden geleden
text: Yvonne is in staat om een hele bijzondere legacy video te maken voor het
nageslacht. Wij zijn bijzonder blij met de reis die zij heeft afgelegd met mijn
moeder. Van verhalen tot fotos uit mijn moeders verleden, dingen die veel losmaken,
text: Yvonne is in staat om een hele bijzondere legacy video te maken voor het nageslacht. Wij zijn bijzonder blij met
de reis die zij heeft afgelegd met mijn moeder. Van verhalen tot fotos uit mijn moeders verleden, dingen die veel losmaken,
maar bovenal voor altijd gekoesterd blijven. Dank Yvonne!
publish_time: '2025-02-28T08:45:23.659401Z'
- author_name: nicole van gerven
author_uri: https://www.google.com/maps/contrib/114388563018751548649/reviews
rating: 5
relative_time_description: 8 maanden geleden
text: Wat zijn wij blij met de film over het leven van mijn schoonvader. Een prachtig
levensverhaal, perfect omschreven. Mooie fotos, muziek en montage. Yvonne heeft
precies aangevoeld hoe in deze legancy mijn schoonvader het beste naar voren
zou komen. Een blijvende prachtige herinnering!
text: Wat zijn wij blij met de film over het leven van mijn schoonvader. Een prachtig levensverhaal, perfect omschreven.
Mooie fotos, muziek en montage. Yvonne heeft precies aangevoeld hoe in deze legancy mijn schoonvader het beste naar
voren zou komen. Een blijvende prachtige herinnering!
publish_time: '2025-03-12T11:31:56.362803Z'
photo_urls:
- https://places.googleapis.com/v1/places/ChIJIQrqe2EJxkcRT8o8MfBxW0I/photos/AWn5SU4siZ9jVNF0mZj6KWCSGmUW6HkOQMEl5kG3T3V9iVSPTebnFaH6aB7zI-l9W3Y7Bl63g1_CSsrnWV3vf0QWY5qMc_4jNNVxyXwUhQxf_ZFDNX7Ly2YB4RXEgVmbJC3qnfpwX1biwvKfVZ2SX2u4QkW-P-bQqzozsDGbMX3l5JsCP2KLU83VOuMFcFtDPblsKZMk6q7fpIALXCaomQY9WNJczGeMHwpkHKyRMfkd3roZLX9N57G79pKUBTu0tiMr3qMSLOocxNqoLzv2ee0MLNLD_cPKZJl8EyELiwyn_Nhpbg/media?maxWidthPx=800&key=AIzaSyAHuazNth9ZvfRFYk5-v49CwXwhABH8Ri0
@ -408,11 +401,9 @@ 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
@ -420,9 +411,8 @@ 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
@ -431,11 +421,9 @@ 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
@ -443,9 +431,8 @@ 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
@ -454,9 +441,8 @@ 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.376799999999996
@ -549,8 +535,8 @@ digital_platform_v2:
platform_name: De Legacy Video I Levensverhaal op film cadeau voor ouders Website
platform_url: https://www.delegacyvideo.nl/
platform_type: INSTITUTIONAL_WEBSITE
description: 'De Legacy Video maakt het mogelijk om samen met een ervaren GZ-psycholoog
op een unieke manier jouw levensverhaal vast te leggen op film. '
description: 'De Legacy Video maakt het mogelijk om samen met een ervaren GZ-psycholoog op een unieke manier jouw levensverhaal
vast te leggen op film. '
language: nl
og_image: https://primary.jwwb.nl/public/i/e/b/temp-pyzjxmxxvvydratzmzug/33d5387c-high.jpg?enable-io=true&enable=upscale&fit=bounds&width=1200
favicon: https://primary.jwwb.nl/public/i/e/b/temp-pyzjxmxxvvydratzmzug/touch-icon-iphone.png?bust=1709199637
@ -729,3 +715,21 @@ logo_enrichment:
has_favicon: true
has_og_image: true
favicon_count: 5
mission_statement:
- statement_id: https://nde.nl/ontology/hc/mission/nl-nh-ams-d-lvllvf/mission-2026
statement_type: mission
statement_text: 'Dit wordt mijn missie: zo veel mogelijk mensen in Nederland de kracht van reflectie laten ervaren en dierbaren
op een manier met elkaar in verbinding brengen die de tijd overstijgt.'
statement_language: nl
extracted_verbatim: true
source_url: https://www.delegacyvideo.nl/missie-en-visie
content_hash: sha256-zeLQsWETZoxdc9QUjlXDDKoe/4ckSvzkALJ8Fd5G+Fs=
provenance:
statement_created_at: '2026-01-04T14:52:57.888124+00:00'
source_archived_at: '2026-01-04T14:52:28.621982+00:00'
retrieval_agent: linkup-api
extraction_agent: zai-glm/glm-4.7
extraction_confidence: 0.95
prov:wasDerivedFrom: https://www.delegacyvideo.nl/missie-en-visie
prov:generatedAtTime: '2026-01-04T14:52:57.888124+00:00'
source_section: Over de founder

View file

@ -143,8 +143,7 @@ web_enrichment:
google_maps_enrichment:
place_id: ChIJAdbwOX8JxkcRhwQCJ0MgJGE
name: Goede Doelen Nederland
formatted_address: 5e etage 100 Watt gebouw, James Wattstraat 100, 1097 DM Amsterdam,
Netherlands
formatted_address: 5e etage 100 Watt gebouw, James Wattstraat 100, 1097 DM Amsterdam, Netherlands
fetch_timestamp: '2025-12-06T19:32:36.109987+00:00'
api_status: OK
coordinates:
@ -182,8 +181,7 @@ wikidata_enrichment:
instance_of: &id001
- id: Q431603
label: advocacy group
description: groups using advocacy in order to influence public opinion and
policy
description: groups using advocacy in order to influence public opinion and policy
- id: Q163740
label: nonprofit organization
description: organization operated for a collective benefit
@ -213,11 +211,9 @@ 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
@ -225,9 +221,8 @@ 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
@ -236,11 +231,9 @@ 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
@ -248,9 +241,8 @@ 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
@ -259,9 +251,8 @@ 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.348993099999994
@ -274,8 +265,7 @@ location:
city: Amsterdam
region_code: NH
country: NL
formatted_address: 5e etage 100 Watt gebouw, James Wattstraat 100, 1097 DM Amsterdam,
Netherlands
formatted_address: 5e etage 100 Watt gebouw, James Wattstraat 100, 1097 DM Amsterdam, Netherlands
geonames_id: 2759794
geonames_name: Amsterdam
feature_code: PPLC
@ -297,8 +287,8 @@ digital_platform_v2:
platform_name: De branchevereniging van goede doelen met een CBF-keurmerk Website
platform_url: https://goededoelennederland.nl/
platform_type: DISCOVERY_PORTAL
description: Goede Doelen Nederland zet zich in voor het maatschappelijkdraagvlak
van en het publieksvertrouwen in goede doelen zodat zij professioneelen in…
description: Goede Doelen Nederland zet zich in voor het maatschappelijkdraagvlak van en het publieksvertrouwen in goede
doelen zodat zij professioneelen in…
language: nl
og_image: https://goededoelennederland.nl/images/banners/_1200x630_crop_center-center_82_none/compilatie-goede-doelen.jpg?mtime=1764844302
favicon: http://www.goededoelennederland.nl/dist/favicon/apple-touch-icon.png
@ -334,9 +324,8 @@ timeline_enrichment:
- https://www.goededoelenadvies.nl/bedrijven/suzanne99999913fundingplus.html
- https://www.goudengids.nl/nl/bedrijven/Amsterdam/goede+doelen/1/
linkup_query: '"Goede Doelen Nederland" Amsterdam opgericht OR gesticht OR sinds'
linkup_answer: Goede Doelen Nederland is in 2015 opgericht (voortgekomen uit de
Vereniging Filantropische Instellingen) en is gevestigd in Amsterdam aan de
James Wattstraat 100.
linkup_answer: Goede Doelen Nederland is in 2015 opgericht (voortgekomen uit de Vereniging Filantropische Instellingen)
en is gevestigd in Amsterdam aan de James Wattstraat 100.
fetch_timestamp: '2025-12-15T19:26:17.870661+00:00'
archive_path: web/1717/linkup/linkup_founding_20251215T192617Z.json
extraction_method: linkup_answer_regex
@ -367,3 +356,21 @@ logo_enrichment:
has_favicon: true
has_og_image: true
favicon_count: 5
mission_statement:
- statement_id: https://nde.nl/ontology/hc/mission/nl-nh-ams-i-gdn/mission-2026
statement_type: mission
statement_text: Goede Doelen Nederland zet zich in voor het maatschappelijk draagvlak van en het publieksvertrouwen in goede
doelen zodat zij professioneel en in onafhankelijkheid kunnen werken aan hun missie.
statement_language: nl
extracted_verbatim: true
source_url: http://www.goededoelennederland.nl
content_hash: sha256-2rrFpoAXA0c9Uh7ovOwFt9Gi3zwdtBhnyXRMHM5+u9E=
provenance:
statement_created_at: '2026-01-04T16:49:42.299794+00:00'
source_archived_at: '2026-01-04T16:48:47.999923+00:00'
retrieval_agent: linkup-api
extraction_agent: zai-glm/glm-4.7
extraction_confidence: 0.9
prov:wasDerivedFrom: http://www.goededoelennederland.nl
prov:generatedAtTime: '2026-01-04T16:49:42.299794+00:00'
source_section: Homepagina

View file

@ -772,3 +772,37 @@ web-enrichments:
layout_score: 0.0
pattern_score: 0.0
final_confidence: 0.9
mission_statement:
- statement_id: https://nde.nl/ontology/hc/mission/nl-nh-ams-m-bm/mission-2026
statement_type: mission
statement_text: Het Bijbels Museum heeft als missie in tentoonstellingen voor deze tijd relevante verhalen te delen met
een zo groot mogelijk publiek. Inspirerende verhalen, voor wie wel en voor wie niet gelooft.
statement_language: nl
extracted_verbatim: true
source_url: https://bijbelsmuseum.nl/missie
content_hash: sha256-qPfm0FVuOvy9GNebf7eWDNjpHn9YByDzah1ksCovmtU=
provenance:
statement_created_at: '2026-01-04T17:14:39.244774+00:00'
source_archived_at: '2026-01-04T17:13:51.544380+00:00'
retrieval_agent: linkup-api
extraction_agent: zai-glm/glm-4.7
extraction_confidence: 0.95
prov:wasDerivedFrom: https://bijbelsmuseum.nl/missie
prov:generatedAtTime: '2026-01-04T17:14:39.244774+00:00'
source_section: Missie en doelstellingen
- statement_id: https://nde.nl/ontology/hc/mission/nl-nh-ams-m-bm/goal-2026
statement_type: goal
statement_text: Met onze exposities willen we de bezoeker in het hart raken, zachtmoedig confronteren, inspireren en bemoedigen.
statement_language: nl
extracted_verbatim: true
source_url: https://bijbelsmuseum.nl/missie
content_hash: sha256-7S20UTbOk/s4hXwFoQqm+nkZ6DzArM3lRk0K5KgzBBg=
provenance:
statement_created_at: '2026-01-04T17:14:39.244795+00:00'
source_archived_at: '2026-01-04T17:13:51.544380+00:00'
retrieval_agent: linkup-api
extraction_agent: zai-glm/glm-4.7
extraction_confidence: 0.95
prov:wasDerivedFrom: https://bijbelsmuseum.nl/missie
prov:generatedAtTime: '2026-01-04T17:14:39.244795+00:00'
source_section: Missie en doelstellingen

View file

@ -167,8 +167,7 @@ google_maps_enrichment:
- 'zondag: 10:0017:30'
rating: 4.5
total_ratings: 35558
editorial_summary: Interactieve wetenschapsexposities, experimenten en shows in
een enorm bootvormig museum aan het water.
editorial_summary: Interactieve wetenschapsexposities, experimenten en shows in een enorm bootvormig museum aan het water.
google_maps_url: https://maps.google.com/?cid=14359935916997529276&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA
google_maps_status: SUCCESS
google_maps_search_query: NEMO Science Museum, Netherlands
@ -303,8 +302,8 @@ wikidata_enrichment:
description: museum devoted primarily to science
- id: Q33506
label: museum
description: institution that holds artifacts and other objects of scientific,
artistic, cultural, historical, or other importance
description: institution that holds artifacts and other objects of scientific, artistic, cultural, historical, or other
importance
wikidata_instance_of: *id001
wikidata_location:
country: &id003
@ -314,8 +313,7 @@ wikidata_enrichment:
located_in_admin_entity: &id004
id: Q9899
label: Amsterdam
description: municipality in the Netherlands, containing the cities of Amsterdam
and Weesp
description: municipality in the Netherlands, containing the cities of Amsterdam and Weesp
coordinates: &id005
latitude: 52.374106
longitude: 4.912392
@ -455,8 +453,7 @@ digital_platforms:
platform_type: WEBSITE
platform_category:
- Organizational website
digital_collections: Interactieve wetenschapsexposities, experimenten en shows in
een enorm bootvormig museum aan het water.
digital_collections: Interactieve wetenschapsexposities, experimenten en shows in een enorm bootvormig museum aan het water.
technology_stack: Standard web technology
data_standards:
- Open Graph
@ -476,11 +473,9 @@ 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
@ -488,9 +483,8 @@ 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
@ -499,11 +493,9 @@ 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
@ -511,9 +503,8 @@ 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
@ -522,9 +513,8 @@ unesco_ich_enrichment:
inscription_year: 2017
multinational: false
url: https://ich.unesco.org/en/RL/craft-of-the-miller-operating-windmills-and-watermills-01265
description: The craft of the miller operating windmills and watermills involves
the knowledge and skills necessary to operate a mill and maintain it in a good
state of repair. With a declining number of people earning their livelihood
description: The craft of the miller operating windmills and watermills involves the knowledge and skills necessary to
operate a mill and maintain it in a good state of repair. With a declining number of people earning their livelihood
from the craft, millers today also play a key role in transmitting the cultur...
timespan:
begin_of_the_begin: '1923-01-01T00:00:00Z'
@ -579,9 +569,8 @@ digital_platform_v2:
platform_name: NEMO Science Museum - NEMO Science Museum Website
platform_url: https://www.nemosciencemuseum.nl/
platform_type: INSTITUTIONAL_WEBSITE
description: Ontdek NEMO Science Museum in Amsterdam, het grootste science center
van Nederland. Een museum vol interactieve tentoonstellingen, experimenten en
workshops voor jong en oud.
description: Ontdek NEMO Science Museum in Amsterdam, het grootste science center van Nederland. Een museum vol interactieve
tentoonstellingen, experimenten en workshops voor jong en oud.
language: nl
og_image: https://cdn.sanity.io/images/49fr30wg/production/8c3e234a4f383d082c43b296435a28da132a52b0-2000x1333.jpg
favicon: https://www.nemosciencemuseum.nl/favicon.ico
@ -619,9 +608,8 @@ person_observations:
staff:
- person_id: nemo-science-museum_staff_0000_sennay_ghebreab
person_name: Sennay Ghebreab
role_title: Professor @ University of Amsterdam | Group leader Socially Intelligent
Artificial Systems Group | Founder & Scientific Director Civic AI Lab| Program
director Master Information Studies
role_title: Professor @ University of Amsterdam | Group leader Socially Intelligent Artificial Systems Group | Founder
& Scientific Director Civic AI Lab| Program director Master Information Studies
heritage_relevant: true
heritage_type: E
current: true
@ -671,8 +659,7 @@ person_observations:
retrieval_agent: linkedin_html_parser
- person_id: nemo-science-museum_staff_0005_bart_van_dijk_is_open_to_work
person_name: Bart van Dijk
role_title: Freelance Graphic Design | DTP | Photography. Available. 06 5246 8110.
meneervandijk.com
role_title: Freelance Graphic Design | DTP | Photography. Available. 06 5246 8110. meneervandijk.com
heritage_relevant: false
heritage_type: null
current: true
@ -724,9 +711,8 @@ linkedin_enrichment:
generated_at: '2025-12-16T16:11:58.468248+00:00'
heritage_staff:
- name: Sennay Ghebreab
headline: Professor @ University of Amsterdam | Group leader Socially Intelligent
Artificial Systems Group | Founder & Scientific Director Civic AI Lab| Program
director Master Information Studies
headline: Professor @ University of Amsterdam | Group leader Socially Intelligent Artificial Systems Group | Founder &
Scientific Director Civic AI Lab| Program director Master Information Studies
linkedin_url: https://www.linkedin.com/in/sennay-ghebreab-3770411b
heritage_type: E
- name: Inka de Pijper
@ -844,3 +830,40 @@ logo_enrichment:
has_favicon: true
has_og_image: true
favicon_count: 4
mission_statement:
- statement_id: https://nde.nl/ontology/hc/mission/nl-nh-ams-m-nsm/mission-2026
statement_type: mission
statement_text: De wereld van wetenschap & technologie toegankelijk maken voor iedereen.
statement_language: nl
extracted_verbatim: true
source_url: https://www.nemosciencemuseum.nl/organisatie
content_hash: sha256-DZTCDpWBDHoVSFEl6JtJC1vyygkmobX0JONdkd7jbmo=
provenance:
statement_created_at: '2026-01-04T15:49:44.561033+00:00'
source_archived_at: '2026-01-04T15:49:23.510573+00:00'
retrieval_agent: linkup-api
extraction_agent: zai-glm/glm-4.7
extraction_confidence: 1.0
prov:wasDerivedFrom: https://www.nemosciencemuseum.nl/organisatie
prov:generatedAtTime: '2026-01-04T15:49:44.561033+00:00'
source_section: Missie en visie van NEMO
- statement_id: https://nde.nl/ontology/hc/mission/nl-nh-ams-m-nsm/vision-2026
statement_type: vision
statement_text: 'We hebben begrip van wetenschap & technologie nodig om de wereld om ons heen te begrijpen en te kunnen
veranderen. Wat we ook maken of doen: wetenschap & technologie spelen er een rol in. En hoe beter we die beide doorhebben,
hoe beter we kunnen meedoen. Bovendien leren we zo hoe we positief kunnen bijdragen aan de samenleving, de natuur en de
planeet. Bij NEMO dompel je jezelf onder in deze wereld, ontdek je hoe die jouw leven bepaalt én welke rol je er zelf
in speelt.'
statement_language: nl
extracted_verbatim: true
source_url: https://www.nemosciencemuseum.nl/organisatie
content_hash: sha256-4rwdRvF3gBW/MdSNE0fbKo9yKfNu9PpqajZBmSzuXTg=
provenance:
statement_created_at: '2026-01-04T15:49:44.561090+00:00'
source_archived_at: '2026-01-04T15:49:23.510573+00:00'
retrieval_agent: linkup-api
extraction_agent: zai-glm/glm-4.7
extraction_confidence: 1.0
prov:wasDerivedFrom: https://www.nemosciencemuseum.nl/organisatie
prov:generatedAtTime: '2026-01-04T15:49:44.561090+00:00'
source_section: Missie en visie van NEMO

View file

@ -28,9 +28,8 @@ wikidata_enrichment:
wikidata_label_en: Boekmanstichting
wikidata_label_nl: Boekmanstichting
wikidata_descriptions:
en: 'Boekman Foundation Institute for arts, culture and related policy (Dutch:
Boekmanstichting) is a research institute for Dutch arts and culture policy
and practice.'
en: 'Boekman Foundation Institute for arts, culture and related policy (Dutch: Boekmanstichting) is a research institute
for Dutch arts and culture policy and practice.'
fi: organisaatio
sq: organizatë
nl: Nederlandse organisatie
@ -39,9 +38,8 @@ wikidata_enrichment:
hy: կազմակերպություն
bn: সংস্থা
uk: організація
wikidata_description_en: 'Boekman Foundation Institute for arts, culture and related
policy (Dutch: Boekmanstichting) is a research institute for Dutch arts and culture
policy and practice.'
wikidata_description_en: 'Boekman Foundation Institute for arts, culture and related policy (Dutch: Boekmanstichting) is
a research institute for Dutch arts and culture policy and practice.'
wikidata_aliases:
en:
- Boekman Foundation
@ -272,15 +270,14 @@ google_maps_enrichment:
author_uri: https://www.google.com/maps/contrib/108122326821668770531/reviews
rating: 5
relative_time_description: 5 jaar geleden
text: Een hele fijne bibliotheek met ontzettend aardige en behulpzame medewerkers.
Hier kom ik zeker vaker terug om literatuur in te zien!
text: Een hele fijne bibliotheek met ontzettend aardige en behulpzame medewerkers. Hier kom ik zeker vaker terug om literatuur
in te zien!
publish_time: '2020-03-16T09:05:02.123606Z'
- author_name: r jungblut
author_uri: https://www.google.com/maps/contrib/109927953006412617659/reviews
rating: 5
relative_time_description: 5 jaar geleden
text: Hey was een beleving mooi pand lieve behulpzamen mensen als je daar bent
ben je in goede handen kort om ga zo door
text: Hey was een beleving mooi pand lieve behulpzamen mensen als je daar bent ben je in goede handen kort om ga zo door
publish_time: '2019-12-12T04:38:14.741415Z'
- author_name: Conrad Malkiewicz
author_uri: https://www.google.com/maps/contrib/106375567916020992427/reviews
@ -460,9 +457,8 @@ digital_platforms:
platform_type: WEBSITE
platform_category:
- Organizational website
digital_collections: 'Boekman Foundation Institute for arts, culture and related
policy (Dutch: Boekmanstichting) is a research institute for Dutch arts and culture
policy and practice.'
digital_collections: 'Boekman Foundation Institute for arts, culture and related policy (Dutch: Boekmanstichting) is a research
institute for Dutch arts and culture policy and practice.'
technology_stack: Standard web technology
data_standards:
- HTML5
@ -482,11 +478,9 @@ 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
@ -494,9 +488,8 @@ 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
@ -505,11 +498,9 @@ 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
@ -517,9 +508,8 @@ 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
@ -528,9 +518,8 @@ 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.367582500000005
@ -569,8 +558,8 @@ digital_platform_v2:
platform_name: Boekmanstichting - Kenniscentrum voor kunst- en cultuurbeleid Website
platform_url: https://www.boekman.nl/
platform_type: DISCOVERY_PORTAL
description: De Boekmanstichting zorgt voor objectieve kennis over kunst, cultuur
en beleid als voeding voor een gefundeerd cultuurdebat.
description: De Boekmanstichting zorgt voor objectieve kennis over kunst, cultuur en beleid als voeding voor een gefundeerd
cultuurdebat.
language: nl
og_image: null
favicon: https://www.boekman.nl/wp-content/themes/boekman/assets/images/favicon.ico
@ -680,8 +669,7 @@ person_observations:
retrieval_agent: linkedin_html_parser
- person_id: boekmanstichting_staff_0007_thomas_de_hoog
person_name: Thomas de Hoog
role_title: Researcher at the Boekmanstichting | Institute for arts, culture and
related policy
role_title: Researcher at the Boekmanstichting | Institute for arts, culture and related policy
heritage_relevant: true
heritage_type: R
current: true
@ -721,8 +709,7 @@ person_observations:
retrieval_agent: linkedin_html_parser
- person_id: boekmanstichting_staff_0011_jenneke_harings
person_name: Jenneke Harings
role_title: '&jnnk | programmamanager, interim, kwartiermaker, adviseur | kunst,
cultuur, cultuurbeleid'
role_title: '&jnnk | programmamanager, interim, kwartiermaker, adviseur | kunst, cultuur, cultuurbeleid'
heritage_relevant: true
heritage_type: null
current: true
@ -752,8 +739,7 @@ person_observations:
retrieval_agent: linkedin_html_parser
- person_id: boekmanstichting_staff_0014_carlien_lammers
person_name: Carlien Lammers
role_title: Programmamedewerker Beeldende Kunst & Vormgeving | Freelance Curator
& Adviseur
role_title: Programmamedewerker Beeldende Kunst & Vormgeving | Freelance Curator & Adviseur
heritage_relevant: true
heritage_type: M
current: true
@ -893,8 +879,7 @@ person_observations:
retrieval_agent: linkedin_html_parser
- person_id: boekmanstichting_staff_0028_indirah_tauwnaar
person_name: Indirah Tauwnaar
role_title: Creative Director | Creative & Arts Consultant | Storyteller | Author
| Recording Artist
role_title: Creative Director | Creative & Arts Consultant | Storyteller | Author | Recording Artist
heritage_relevant: false
heritage_type: null
current: true
@ -914,8 +899,7 @@ person_observations:
retrieval_agent: linkedin_html_parser
- person_id: boekmanstichting_staff_0030_ruth_giebels
person_name: Ruth Giebels
role_title: Ervaren creative director, conceptbedenker en kwartiermaker in culturele,
sportieve & creatieve sector
role_title: Ervaren creative director, conceptbedenker en kwartiermaker in culturele, sportieve & creatieve sector
heritage_relevant: true
heritage_type: null
current: true
@ -925,8 +909,7 @@ person_observations:
retrieval_agent: linkedin_html_parser
- person_id: boekmanstichting_staff_0031_pablo_cabenda
person_name: Pablo Cabenda
role_title: free lance journalist at Volkskrant, Boekman Stichting, Raad voor
Cultuur, Time Out Magazine Amsterdam
role_title: free lance journalist at Volkskrant, Boekman Stichting, Raad voor Cultuur, Time Out Magazine Amsterdam
heritage_relevant: true
heritage_type: null
current: true
@ -1045,8 +1028,7 @@ linkedin_enrichment:
linkedin_url: https://www.linkedin.com/in/brittswartjes
heritage_type: R
- name: Jenneke Harings
headline: '&jnnk | programmamanager, interim, kwartiermaker, adviseur | kunst,
cultuur, cultuurbeleid'
headline: '&jnnk | programmamanager, interim, kwartiermaker, adviseur | kunst, cultuur, cultuurbeleid'
linkedin_url: https://www.linkedin.com/in/jennekeharings
- name: Maartje Goedhart
headline: Onderzoeker bij Boekmanstichting
@ -1080,8 +1062,7 @@ linkedin_enrichment:
linkedin_url: https://www.linkedin.com/in/paulomartina
heritage_type: M
- name: Pablo Cabenda
headline: free lance journalist at Volkskrant, Boekman Stichting, Raad voor Cultuur,
Time Out Magazine Amsterdam
headline: free lance journalist at Volkskrant, Boekman Stichting, Raad voor Cultuur, Time Out Magazine Amsterdam
linkedin_url: https://www.linkedin.com/in/pablo-cabenda-b5a28913
- name: Mirthe Maria Berentsen
headline: Writer, artist, curator & policy advisor
@ -1189,8 +1170,7 @@ logo_enrichment:
- claim_type: favicon_url
claim_value: https://www.boekman.nl/wp-content/uploads/2018/12/cropped-boekman_favicon-300x300.png
source_url: http://www.boekman.nl
css_selector: '[document] > html.whatinput-types-initial.whatinput-types-mouse
> head > link:nth-of-type(19)'
css_selector: '[document] > html.whatinput-types-initial.whatinput-types-mouse > head > link:nth-of-type(19)'
retrieved_on: '2025-12-22T09:14:40.763599+00:00'
extraction_method: crawl4ai_link_rel
favicon_type: ''
@ -1201,3 +1181,21 @@ logo_enrichment:
has_favicon: true
has_og_image: false
favicon_count: 3
mission_statement:
- statement_id: https://nde.nl/ontology/hc/mission/nl-nh-ams-r-bs/mission-2026
statement_type: mission
statement_text: De Boekmanstichting zorgt voor objectieve kennis over kunst, cultuur en beleid als voeding voor een gefundeerd
cultuurdebat.
statement_language: nl
extracted_verbatim: true
source_url: http://www.boekman.nl/
content_hash: sha256-PKR2gFLaLXsT9ulZnvVPGhNTvlvkuyiYGh2YSoZXLJ0=
provenance:
statement_created_at: '2026-01-04T16:01:09.357120+00:00'
source_archived_at: '2026-01-04T16:00:52.115258+00:00'
retrieval_agent: linkup-api
extraction_agent: zai-glm/glm-4.7
extraction_confidence: 0.95
prov:wasDerivedFrom: http://www.boekman.nl/
prov:generatedAtTime: '2026-01-04T16:01:09.357120+00:00'
source_section: Homepagina introductie

View file

@ -227,25 +227,34 @@ google_maps_enrichment:
author_uri: https://www.google.com/maps/contrib/116744550762282751468/reviews
rating: 4
relative_time_description: een maand geleden
text: |-
De plaats waar de liefhebbers van fotografie en aanverwante zaken hun hart kunnen ophalen.
text: 'De plaats waar de liefhebbers van fotografie en aanverwante zaken hun hart kunnen ophalen.
Fraaie tentoonstelling die tot de verbeelding spreekt.
Ook regelmatig wisselende exposities met thema's.
Ook regelmatig wisselende exposities met thema''s.
Gastvrijheid en Deskundigheid voeren hier de boventoon.
Verzameling is duidelijk met zorgvuldigheid en passie samengesteld.
Leerzaam en onderhoudend.
Dynamisch en vermakelijk.
Geschikt voor jong en oud.
Plan maar gerust een bezoek aan deze veelgeroemde locatie en u zult er beslist geen spijt van krijgen!
Plan maar gerust een bezoek aan deze veelgeroemde locatie en u zult er beslist geen spijt van krijgen!'
publish_time: '2025-10-02T13:29:05.525896893Z'
- author_name: Frans Willems
author_uri: https://www.google.com/maps/contrib/101624195072881478144/reviews
rating: 5
relative_time_description: een jaar geleden
text: |-
Mooi locatie, prettige ontvangst.
Twee mooie exposities: movements, 10 fotografen die sportfotos met bijzondere verhalen gemaakt hebben en een kleine tentoonstelling over fake news. Meer moet ik er niet over zeggen, aanrader!
Neem je Museumkaart mee!
text: 'Mooi locatie, prettige ontvangst.
Twee mooie exposities: movements, 10 fotografen die sportfotos met bijzondere verhalen gemaakt hebben en een kleine
tentoonstelling over fake news. Meer moet ik er niet over zeggen, aanrader!
Neem je Museumkaart mee!'
publish_time: '2024-09-27T21:22:21.616430Z'
- author_name: Debbie Geers
author_uri: https://www.google.com/maps/contrib/111489192073561107799/reviews
@ -703,3 +712,21 @@ web-enrichments:
layout_score: 0.0
pattern_score: 0.0
final_confidence: 0.7
mission_statement:
- statement_id: https://nde.nl/ontology/hc/mission/nl-nh-hil-m-ch/mission-2026
statement_type: mission
statement_text: Fotomuseum Hilversum is dé plek waar iedereen hedendaagse en maatschappelijke fotografie kan ontdekken en
beleven.
statement_language: nl
extracted_verbatim: true
source_url: https://www.museumhilversum.nl/over
content_hash: sha256-RkaDFr1QdLNW+LGSFgtEkuo0USAEVvBjw7NqzQoeSoA=
provenance:
statement_created_at: '2026-01-04T14:54:27.389193+00:00'
source_archived_at: '2026-01-04T14:54:11.012069+00:00'
retrieval_agent: linkup-api
extraction_agent: zai-glm/glm-4.7
extraction_confidence: 0.9
prov:wasDerivedFrom: https://www.museumhilversum.nl/over
prov:generatedAtTime: '2026-01-04T14:54:27.389193+00:00'
source_section: Introductie

View file

@ -247,25 +247,34 @@ google_maps_enrichment:
author_uri: https://www.google.com/maps/contrib/116744550762282751468/reviews
rating: 4
relative_time_description: een maand geleden
text: |-
De plaats waar de liefhebbers van fotografie en aanverwante zaken hun hart kunnen ophalen.
text: 'De plaats waar de liefhebbers van fotografie en aanverwante zaken hun hart kunnen ophalen.
Fraaie tentoonstelling die tot de verbeelding spreekt.
Ook regelmatig wisselende exposities met thema's.
Ook regelmatig wisselende exposities met thema''s.
Gastvrijheid en Deskundigheid voeren hier de boventoon.
Verzameling is duidelijk met zorgvuldigheid en passie samengesteld.
Leerzaam en onderhoudend.
Dynamisch en vermakelijk.
Geschikt voor jong en oud.
Plan maar gerust een bezoek aan deze veelgeroemde locatie en u zult er beslist geen spijt van krijgen!
Plan maar gerust een bezoek aan deze veelgeroemde locatie en u zult er beslist geen spijt van krijgen!'
publish_time: '2025-10-02T13:29:05.525896893Z'
- author_name: Frans Willems
author_uri: https://www.google.com/maps/contrib/101624195072881478144/reviews
rating: 5
relative_time_description: een jaar geleden
text: |-
Mooi locatie, prettige ontvangst.
Twee mooie exposities: movements, 10 fotografen die sportfotos met bijzondere verhalen gemaakt hebben en een kleine tentoonstelling over fake news. Meer moet ik er niet over zeggen, aanrader!
Neem je Museumkaart mee!
text: 'Mooi locatie, prettige ontvangst.
Twee mooie exposities: movements, 10 fotografen die sportfotos met bijzondere verhalen gemaakt hebben en een kleine
tentoonstelling over fake news. Meer moet ik er niet over zeggen, aanrader!
Neem je Museumkaart mee!'
publish_time: '2024-09-27T21:22:21.616430Z'
- author_name: Debbie Geers
author_uri: https://www.google.com/maps/contrib/111489192073561107799/reviews
@ -781,3 +790,21 @@ web-enrichments:
wikidata_id: Q55
wikidata_label: Netherlands
wikidata_linking_timestamp: '2025-12-13T23:04:59.745567'
mission_statement:
- statement_id: https://nde.nl/ontology/hc/mission/nl-nh-hil-m-mh/mission-2026
statement_type: mission
statement_text: Fotomuseum Hilversum is dé plek waar iedereen hedendaagse en maatschappelijke fotografie kan ontdekken en
beleven.
statement_language: nl
extracted_verbatim: true
source_url: https://www.museumhilversum.nl/organisatie
content_hash: sha256-RkaDFr1QdLNW+LGSFgtEkuo0USAEVvBjw7NqzQoeSoA=
provenance:
statement_created_at: '2026-01-04T15:56:50.843518+00:00'
source_archived_at: '2026-01-04T15:56:06.589914+00:00'
retrieval_agent: linkup-api
extraction_agent: zai-glm/glm-4.7
extraction_confidence: 0.75
prov:wasDerivedFrom: https://www.museumhilversum.nl/organisatie
prov:generatedAtTime: '2026-01-04T15:56:50.843518+00:00'
source_section: Homepage Hero

View file

@ -342,12 +342,10 @@ digital_platform_v2:
platform_name: Agrarisch Museum Westerhem
platform_url: https://www.historischgenootschapbeemster.nl/afdelingen/agrarisch-museum-westerhem/
platform_type: INSTITUTIONAL_WEBSITE
description: Agrarisch Museum Westerhem in Middenbeemster is gevestigd in een
gerestaureerde Noord-Hollandse stolpboerderij uit 1877. Het museum toont het
boerenleven in de Beemster rond 1920/1930 met authentieke bedstedes, werkende
brongasinstallatie, en de unieke combinatie van voorhuis en stolpboerderij.
In het voorhuis bevindt zich ook het bezoekerscentrum VISIT Beemster van het
Werelderfgoed De Beemster. Officiële trouwlocatie.
description: Agrarisch Museum Westerhem in Middenbeemster is gevestigd in een gerestaureerde Noord-Hollandse stolpboerderij
uit 1877. Het museum toont het boerenleven in de Beemster rond 1920/1930 met authentieke bedstedes, werkende brongasinstallatie,
en de unieke combinatie van voorhuis en stolpboerderij. In het voorhuis bevindt zich ook het bezoekerscentrum VISIT
Beemster van het Werelderfgoed De Beemster. Officiële trouwlocatie.
language: nl
navigation_links:
- url: https://www.historischgenootschapbeemster.nl/afdelingen/agrarisch-museum-westerhem/
@ -389,3 +387,21 @@ timespan:
sources:
- 'Linkup web search: https://www.historischgenootschapbeemster.nl/afdelingen/agrarisch-museum-westerhem/'
notes: 'Found via pattern: full_date_nl'
mission_statement:
- statement_id: https://nde.nl/ontology/hc/mission/nl-nh-mid-m-bm/mission-2026
statement_type: mission
statement_text: Het Historisch Genootschap Beemster zet zich in om belangstelling te wekken voor geschiedenis in het algemeen
en voor de rijke historie van de Beemster in het bijzonder.
statement_language: nl
extracted_verbatim: true
source_url: https://www.historischgenootschapbeemster.nl/over
content_hash: sha256-Z2oWWoee3CbBfkFXc3y1+NUwos0IllrudJUq78Ra710=
provenance:
statement_created_at: '2026-01-04T12:18:25.202278+00:00'
source_archived_at: '2026-01-04T12:17:40.449517+00:00'
retrieval_agent: linkup-api
extraction_agent: zai-glm/glm-4.7
extraction_confidence: 0.9
prov:wasDerivedFrom: https://www.historischgenootschapbeemster.nl/over
prov:generatedAtTime: '2026-01-04T12:18:25.202278+00:00'
source_section: Over de vereniging

View file

@ -52,8 +52,7 @@ provenance:
linkup_timespan:
- source_type: linkup_web_search
fetch_timestamp: '2025-12-15T20:07:18.620424+00:00'
search_query: '"Historisch Genootschap Wieringermeer" Wieringerwerf opgericht
OR gesticht OR sinds'
search_query: '"Historisch Genootschap Wieringermeer" Wieringerwerf opgericht OR gesticht OR sinds'
source_urls:
- https://wieringermeer.nl/geschiedenis-wieringermeer/
- https://issuu.com/agriporta7/docs/agri_mag_2020_web/s/11371157
@ -154,8 +153,7 @@ google_maps_enrichment:
icon_background_color: '#7B9EB0'
utc_offset_minutes: 60
google_maps_status: SUCCESS
google_maps_search_query: Het Genootschap voor de Geschiedenis van de Wieringermeer,
Wieringerwerf, Netherlands
google_maps_search_query: Het Genootschap voor de Geschiedenis van de Wieringermeer, Wieringerwerf, Netherlands
web_enrichment:
web_archives:
- url: https://wieringermeer.nl/
@ -314,8 +312,8 @@ web_contact_data:
persons: []
organization:
physical_address:
street: "Cultureel erfgoed \n\n\nWeblinks \n\nContact \n\n\n\n\n\nContact \n\
\n\nBezoekadres \n\nDe Cultuurschuur \n\nLoggersplein 1"
street: "Cultureel erfgoed \n\n\nWeblinks \n\nContact \n\n\n\n\n\nContact \n\n\nBezoekadres \n\nDe Cultuurschuur \n\n\
Loggersplein 1"
postal_code: 1771 CE
city: Wieringerwerf
cleanup_date: '2025-12-13T10:46:09.063719+00:00'
@ -337,8 +335,8 @@ digital_platform_v2:
platform_name: Actueel - Historisch Genootschap Wieringermeer Website
platform_url: https://wieringermeer.nl/
platform_type: DISCOVERY_PORTAL
description: Berichten van het Historisch Genootschap Wieringermeer. Toegang tot
onze collecties Beeldbank, Objectenbank, Verhalen, Poëzie en meer.
description: Berichten van het Historisch Genootschap Wieringermeer. Toegang tot onze collecties Beeldbank, Objectenbank,
Verhalen, Poëzie en meer.
language: nl
og_image: null
favicon: https://wieringermeer.nl/wp-content/themes/yaaburnee-themes/lib/img/favicon.ico
@ -367,10 +365,8 @@ timeline_enrichment:
- https://wieringermeer.nl/geschiedenis-wieringermeer/
- https://www.cultuurindeklas.nl/zoek-aanbieders/detail-aanbieder/q/id/42524/titel/historisch-genootschap-wieringermeer
- https://wieringermeer.nl/genootschap/
linkup_query: '"Historisch Genootschap Wieringermeer" Wieringerwerf opgericht
OR gesticht OR sinds'
linkup_answer: Het Historisch Genootschap Wieringermeer is opgericht op 10 december
1992.
linkup_query: '"Historisch Genootschap Wieringermeer" Wieringerwerf opgericht OR gesticht OR sinds'
linkup_answer: Het Historisch Genootschap Wieringermeer is opgericht op 10 december 1992.
fetch_timestamp: '2025-12-15T20:07:18.612556+00:00'
archive_path: web/0667/linkup/linkup_founding_20251215T200718Z.json
extraction_method: linkup_answer_regex
@ -481,3 +477,21 @@ logo_enrichment:
has_favicon: true
has_og_image: false
favicon_count: 4
mission_statement:
- statement_id: https://nde.nl/ontology/hc/mission/nl-nh-wie-s-hgw/goal-2026
statement_type: goal
statement_text: Het Historisch Genootschap Wieringermeer, opgericht op 10 december 1992, heeft als doel de kennis van en
de belangstelling voor de geschiedenis van de Wieringermeer te bewaren en bevorderen.
statement_language: nl
extracted_verbatim: true
source_url: http://www.wieringermeergeschiedenis.nl/
content_hash: sha256-2//tml0VRi8sNejy5xJmx0fnI00JewcTcajTfACPcuI=
provenance:
statement_created_at: '2026-01-04T15:55:36.233596+00:00'
source_archived_at: '2026-01-04T15:55:24.409194+00:00'
retrieval_agent: linkup-api
extraction_agent: zai-glm/glm-4.7
extraction_confidence: 1.0
prov:wasDerivedFrom: http://www.wieringermeergeschiedenis.nl/
prov:generatedAtTime: '2026-01-04T15:55:36.233596+00:00'
source_section: OVER ONS

View file

@ -53,8 +53,8 @@ wikidata_enrichment:
instance_of: &id001
- id: Q33506
label: museum
description: institution that holds artifacts and other objects of scientific,
artistic, cultural, historical, or other importance
description: institution that holds artifacts and other objects of scientific, artistic, cultural, historical, or other
importance
wikidata_instance_of: *id001
wikidata_location:
country: &id002
@ -308,48 +308,41 @@ google_maps_enrichment:
relative_time_description: 6 maanden geleden
text: 'Mooi gevarieerd museum. Toilet aanwezig. Kleine winkel. Geen kluisjes.
Duidelijke uitleg, twee keer miste we uitlegbordjes. Mooi pand dichtbij centrum.
Museum wordt aangegeven als stadsmuseum. Parkeren op zondag eerste 2 uur gratis.
Uiterst vriendelijk personeel. Leerzaam voor jong en oud.'
Duidelijke uitleg, twee keer miste we uitlegbordjes. Mooi pand dichtbij centrum. Museum wordt aangegeven als stadsmuseum.
Parkeren op zondag eerste 2 uur gratis. Uiterst vriendelijk personeel. Leerzaam voor jong en oud.'
publish_time: '2025-05-28T18:25:14.490664Z'
- author_name: volcmar c c suijs
author_uri: https://www.google.com/maps/contrib/109959716600749885318/reviews
rating: 4
relative_time_description: 5 maanden geleden
text: Klein, overzichtelijk en vooral veel te beluisteren over Almelo's geschiedenis.
Gratis met Museumkaart.
text: Klein, overzichtelijk en vooral veel te beluisteren over Almelo's geschiedenis. Gratis met Museumkaart.
publish_time: '2025-06-21T06:27:04.798883011Z'
- author_name: Sao Diouani
author_uri: https://www.google.com/maps/contrib/115627664224976757597/reviews
rating: 5
relative_time_description: een jaar geleden
text: Naast een vaste collectie over de geschiedenis van Almelo is er momenteel
een tentoonstelling over de Barbie pop. Alle denkbare soorten Barbies zijn er,
van Dior tot Hollandse met muts en klompen. Een zaal van de vaste collectie
vertelt over de textielindustrie natuurlijk, met o.a. Ten Cate. Bij de balie
kunt u ook folders vinden met wandelingen door Almelo. De erfgoed wandeling
is een goed aansluiting op de vaste collectie. U loopt bijvoorbeeld langs de
voormalige villa's van rijke textielhandelaren en ziet op die manier hoe welvarende
de stad toen was.
text: Naast een vaste collectie over de geschiedenis van Almelo is er momenteel een tentoonstelling over de Barbie pop.
Alle denkbare soorten Barbies zijn er, van Dior tot Hollandse met muts en klompen. Een zaal van de vaste collectie vertelt
over de textielindustrie natuurlijk, met o.a. Ten Cate. Bij de balie kunt u ook folders vinden met wandelingen door
Almelo. De erfgoed wandeling is een goed aansluiting op de vaste collectie. U loopt bijvoorbeeld langs de voormalige
villa's van rijke textielhandelaren en ziet op die manier hoe welvarende de stad toen was.
publish_time: '2024-02-25T08:21:41.633952Z'
- author_name: Jasmijn Miltenburg
author_uri: https://www.google.com/maps/contrib/117352254742703945450/reviews
rating: 5
relative_time_description: een jaar geleden
text: Wij bezochten de Barbie expo en hebben ons ontzettend vermaakt. Veel te
zien, ook veel over de historie van Almelo. Mooie plek, het is een monument
dat op zich al de moeite waard is.
text: Wij bezochten de Barbie expo en hebben ons ontzettend vermaakt. Veel te zien, ook veel over de historie van Almelo.
Mooie plek, het is een monument dat op zich al de moeite waard is.
publish_time: '2024-04-16T11:49:31.277157Z'
- author_name: Ron Goedhart
author_uri: https://www.google.com/maps/contrib/108720794061507609148/reviews
rating: 4
relative_time_description: een jaar geleden
text: 'Leerzaam over de textiel nijverheid van weleer. En de textiel baronnen.
Ook video''s te zien over overstromingen die Almelo teisterden in t verleden
en hoe deze tot t verleden behoren.
text: 'Leerzaam over de textiel nijverheid van weleer. En de textiel baronnen. Ook video''s te zien over overstromingen
die Almelo teisterden in t verleden en hoe deze tot t verleden behoren.
Museum wat klein voor zijn enorme collectie zodat niet alles valt te bewonderen.
Maar ga gewoon naar binnen. Gratis met de museumkaart.'
Museum wat klein voor zijn enorme collectie zodat niet alles valt te bewonderen. Maar ga gewoon naar binnen. Gratis
met de museumkaart.'
publish_time: '2024-10-10T10:22:52.168674Z'
photo_urls:
- https://places.googleapis.com/v1/places/ChIJwcIEtyQGuEcRvbwIltCnJ-Q/photos/AWn5SU6dKCcj2aQjfXqspeemsMi7fUGEb8cIO9pH4vJ3u0_kdLVvKEblRGqqOWN9y5XRC0wCaUM1P1Or0lF5zJJzGnz-7tlcEHYkeoII-H7gw4QIMzLkiRhaqyog5h5k3gmBNcouOC2JPiCspL6wrkhLtBkDX3jgdO7yJnKe3kFQQk1ZEX6PzOxYgtgNBpcIIQh9J5cEVXrpvN0Gk8oEtl1E2XC7o_L6Qg4oFELkl691LkH4HyLsmaPsjUfEaXPOZC59Eq12Do5oooGiwhaBxkyXTBPkM0CGz0-W6iKDufE4x9wdKkgaXe8fMGI2ZsuLu8bpXAXoTTlyLrHiSfnWUtU3r6YvB-5XYHmYe1fO-F8G-4TeZWt99z3doB3KHkugzU-FoSUtFVdpevg6s1eOYNlgkh_Lb2xlBKy66thzks-8x0LBylW4/media?maxWidthPx=800&key=AIzaSyAHuazNth9ZvfRFYk5-v49CwXwhABH8Ri0
@ -554,8 +547,8 @@ digital_platform_v2:
platform_name: Stedelijk Museum Almelo | Het enige museum in Almelo Website
platform_url: https://www.stedelijkmuseumalmelo.nl/
platform_type: DISCOVERY_PORTAL
description: Gelegen in het hart van Almelo, het Stedelijk Museum Almelo. Biedt
een boeiende kijk op de lokale geschiedenis en cultuur.
description: Gelegen in het hart van Almelo, het Stedelijk Museum Almelo. Biedt een boeiende kijk op de lokale geschiedenis
en cultuur.
language: nl
og_image: null
favicon: https://www.stedelijkmuseumalmelo.nl/wp-content/uploads/2023/02/favicon-150x150.png
@ -594,16 +587,14 @@ timespan:
events:
- date: '1975-01-08'
type: founding
description: opgericht op 8 januari 1975 onder de naam Stichting Museum voor Heemkunde
Almelo
description: opgericht op 8 januari 1975 onder de naam Stichting Museum voor Heemkunde Almelo
timeline_enrichment:
timeline_events:
- event_type: FOUNDING
event_date: '1975-01-08'
date_precision: day
approximate: false
description: opgericht op 8 januari 1975 onder de naam Stichting Museum voor Heemkunde
Almelo
description: opgericht op 8 januari 1975 onder de naam Stichting Museum voor Heemkunde Almelo
source_urls:
- https://www.stedelijkmuseumalmelo.nl/geschiedenis/
- https://www.stedelijkmuseumalmelo.nl/tentoonstellingen/
@ -611,9 +602,8 @@ timeline_enrichment:
- https://www.openmonumentendag.nl/monument/stadsmuseum-almelo/
- https://www.fijnuit.nl/almelo/musea
linkup_query: '"Stedelijk Museum Almelo" Almelo opgericht OR gesticht OR sinds'
linkup_answer: Het Stedelijk Museum Almelo is opgericht op 8 januari 1975 onder
de naam Stichting Museum voor Heemkunde Almelo. Sinds 2021 draagt het de naam
Stedelijk Museum Almelo.
linkup_answer: Het Stedelijk Museum Almelo is opgericht op 8 januari 1975 onder de naam Stichting Museum voor Heemkunde
Almelo. Sinds 2021 draagt het de naam Stedelijk Museum Almelo.
fetch_timestamp: '2025-12-15T20:11:20.730267+00:00'
archive_path: web/0955/linkup/linkup_founding_20251215T201120Z.json
extraction_method: linkup_answer_regex
@ -662,8 +652,7 @@ web-enrichments:
layout_score: 0.0
pattern_score: 0.0
final_confidence: 1.0
- entity: Gelegen in het hart van Almelo, het Stedelijk Museum Almelo. Biedt een
boeiende kijk op de lokale geschiedenis
- entity: Gelegen in het hart van Almelo, het Stedelijk Museum Almelo. Biedt een boeiende kijk op de lokale geschiedenis
entity_type: APP.TTL
xpath: /html/head/meta[@name='description']/@content
base_confidence: 0.9
@ -678,9 +667,8 @@ logo_enrichment:
- claim_type: logo_url
claim_value: https://www.stedelijkmuseumalmelo.nl/wp-content/uploads/2024/08/logo.png
source_url: https://www.stedelijkmuseumalmelo.nl
css_selector: '[document] > html > body.home.wp-singular > header.elementor.elementor-25
> div.elementor-element.elementor-element-4c9a0d7 > div.e-con-inner > div.elementor-element.elementor-element-346f7ef
> div.elementor-widget-container > a > img.attachment-full.size-full'
css_selector: '[document] > html > body.home.wp-singular > header.elementor.elementor-25 > div.elementor-element.elementor-element-4c9a0d7
> div.e-con-inner > div.elementor-element.elementor-element-346f7ef > div.elementor-widget-container > a > img.attachment-full.size-full'
retrieved_on: '2025-12-22T10:05:47.206108+00:00'
extraction_method: crawl4ai_header_logo
detection_confidence: high
@ -699,3 +687,66 @@ logo_enrichment:
has_favicon: true
has_og_image: false
favicon_count: 2
mission_statement:
- statement_id: https://nde.nl/ontology/hc/mission/nl-ov-alm-m-sma/mission-2026
statement_type: mission
statement_text: 'Het Stedelijk Museum Almelo is een museum van en voor de stad Almelo, haar inwoners en bezoekers. Het brengt
de rijke geschiedenis en vele verhalen van de stad tot leven en geeft bezoekers inzicht in de identiteit van de stad.
Het museum legt een verband tussen geschiedenis, heden en toekomst en wil de bewoners van Almelo en omgeving met de stad
en elkaar verbinden.
Het cultureel erfgoed van de stad daagt bewoners uit om trots te zijn op Almelo als moderne innoverende stad en als stad
met een rijk verleden. Het Stedelijk Museum Almelo nodigt ook buitenstaanders van harte uit om het museum en Almelo
te leren kennen.'
statement_language: nl
extracted_verbatim: true
source_url: https://www.stedelijkmuseumalmelo.nl/missie
content_hash: sha256-owMq/ytk6qj2kcxg1GdVt/Pk0vA4SjahWBipA4CRrhk=
provenance:
statement_created_at: '2026-01-04T17:12:37.710324+00:00'
source_archived_at: '2026-01-04T17:12:18.433678+00:00'
retrieval_agent: linkup-api
extraction_agent: zai-glm/glm-4.7
extraction_confidence: 1.0
prov:wasDerivedFrom: https://www.stedelijkmuseumalmelo.nl/missie
prov:generatedAtTime: '2026-01-04T17:12:37.710324+00:00'
source_section: Missie en Visie
- statement_id: https://nde.nl/ontology/hc/mission/nl-ov-alm-m-sma/vision-2026
statement_type: vision
statement_text: Het Stedelijk Museum Almelo wil een onmisbare en bindende schakel zijn in het culturele en maatschappelijke
leven in Almelo. Het museum gelooft dat kunst en geschiedenis voor iedereen zijn en mensen van verschillende generaties
en achtergronden verbinden en een rijker leven geven. De tentoonstellingen en de activiteiten van het museum leveren een
bijdrage aan een sterkere gemeenschap. Daarbij wil het Stedelijk Museum Almelo een voortrekkersrol vervullen in de culturele
profilering van de stad Almelo en een relevante plaats innemen in het Twentse cultuurlandschap.
statement_language: nl
extracted_verbatim: true
source_url: https://www.stedelijkmuseumalmelo.nl/missie
content_hash: sha256-AoKifDxJtIgdUrwzsa/Fy+CettWFryeUjkJNW3mmvNA=
provenance:
statement_created_at: '2026-01-04T17:12:37.710352+00:00'
source_archived_at: '2026-01-04T17:12:18.433678+00:00'
retrieval_agent: linkup-api
extraction_agent: zai-glm/glm-4.7
extraction_confidence: 1.0
prov:wasDerivedFrom: https://www.stedelijkmuseumalmelo.nl/missie
prov:generatedAtTime: '2026-01-04T17:12:37.710352+00:00'
source_section: Missie en Visie
- statement_id: https://nde.nl/ontology/hc/mission/nl-ov-alm-m-sma/goal-2026
statement_type: goal
statement_text: Het Stedelijk Museum Almelo stelt zich als het enige geregistreerde museum van Almelo ten doel het erfgoed,
de geschiedenis en het DNA van de stad Almelo te beheren en toegankelijk te maken. Via presentaties, educatieve programmas
en activiteiten wil het museum bewoners en bezoekers van buiten de stad daarmee kennis laten maken.
statement_language: nl
extracted_verbatim: true
source_url: https://www.stedelijkmuseumalmelo.nl/missie
content_hash: sha256-1KVymcXXzrMlulrPTEpHbJPVMQLDo8vVukCpcc7/WDw=
provenance:
statement_created_at: '2026-01-04T17:12:37.710361+00:00'
source_archived_at: '2026-01-04T17:12:18.433678+00:00'
retrieval_agent: linkup-api
extraction_agent: zai-glm/glm-4.7
extraction_confidence: 1.0
prov:wasDerivedFrom: https://www.stedelijkmuseumalmelo.nl/missie
prov:generatedAtTime: '2026-01-04T17:12:37.710361+00:00'
source_section: Missie en Visie

View file

@ -693,3 +693,55 @@ logo_enrichment:
has_favicon: true
has_og_image: false
favicon_count: 1
mission_statement:
- statement_id: https://nde.nl/ontology/hc/mission/nl-ov-dev-l-mr/mission-2026
statement_type: mission
statement_text: Musidesk is de professionele partner voor de amateurmuziek in (Oost-)Nederland. Bladmuziek voor de blaasmuzieksector
beheren is onze expertise. We zorgen voor een muzikaal aanbod voor iedereen. Op elke muziekvraag een klinkend antwoord!
statement_language: nl
extracted_verbatim: true
source_url: https://www.musidesk.nl/over-ons
content_hash: sha256-e1Ngjm8FdzrWbGHSlkPZx5O7Umzt6pdmPw/2AuPBT0U=
provenance:
statement_created_at: '2026-01-04T15:23:16.620885+00:00'
source_archived_at: '2026-01-04T15:22:43.525173+00:00'
retrieval_agent: linkup-api
extraction_agent: zai-glm/glm-4.7
extraction_confidence: 0.95
prov:wasDerivedFrom: https://www.musidesk.nl/over-ons
prov:generatedAtTime: '2026-01-04T15:23:16.620885+00:00'
source_section: Over ons
- statement_id: https://nde.nl/ontology/hc/mission/nl-ov-dev-l-mr/vision-2026
statement_type: vision
statement_text: Muziek is van iedereen, vinden wij.
statement_language: nl
extracted_verbatim: true
source_url: https://www.musidesk.nl/over-ons
content_hash: sha256-Dxkz26nxYMW/Ts4R5CyHML9BAZrpF7o4hXSgBlbYhtw=
provenance:
statement_created_at: '2026-01-04T15:23:16.620909+00:00'
source_archived_at: '2026-01-04T15:22:43.525173+00:00'
retrieval_agent: linkup-api
extraction_agent: zai-glm/glm-4.7
extraction_confidence: 0.95
prov:wasDerivedFrom: https://www.musidesk.nl/over-ons
prov:generatedAtTime: '2026-01-04T15:23:16.620909+00:00'
source_section: Over ons
- statement_id: https://nde.nl/ontology/hc/mission/nl-ov-dev-l-mr/goal-2026
statement_type: goal
statement_text: 'Daarom stimuleren en faciliteren we muzikale creativiteit. Dat doen we door: bladmuziek voor de blaasmuzieksector
te beoordelen, te beheren en beschikbaar te stellen; te zorgen voor méér bladmuziek voor bibliotheken en die zichtbaarder
en vindbaarder te maken; innovatieve muzikale activiteiten en talenten te bevorderen.'
statement_language: nl
extracted_verbatim: true
source_url: https://www.musidesk.nl/over-ons
content_hash: sha256-yEG1WVMm4bu1hsYswqCr2I/vrp/sJ3rxh/a8PUAkKQ0=
provenance:
statement_created_at: '2026-01-04T15:23:16.620916+00:00'
source_archived_at: '2026-01-04T15:22:43.525173+00:00'
retrieval_agent: linkup-api
extraction_agent: zai-glm/glm-4.7
extraction_confidence: 0.95
prov:wasDerivedFrom: https://www.musidesk.nl/over-ons
prov:generatedAtTime: '2026-01-04T15:23:16.620916+00:00'
source_section: Over ons

View file

@ -198,23 +198,20 @@ google_maps_enrichment:
author_uri: https://www.google.com/maps/contrib/111914069246964135716/reviews
rating: 5
relative_time_description: een jaar geleden
text: Leuk klein museum. Wat weinig ruimte dus het is wel opletten. De vrijwilligers
die er werken zijn erg enthousiast en weten veel te vertellen. De krentenwegge
is er heerlijk. Zeker proberen.
text: Leuk klein museum. Wat weinig ruimte dus het is wel opletten. De vrijwilligers die er werken zijn erg enthousiast
en weten veel te vertellen. De krentenwegge is er heerlijk. Zeker proberen.
publish_time: '2024-08-21T19:42:14.315350Z'
- author_name: Krystel Vanmassenhove
author_uri: https://www.google.com/maps/contrib/116849813247984356429/reviews
rating: 5
relative_time_description: 3 jaar geleden
text: Leuke sympathieke vrijwilligers die je graag uitleggen hoe het er vroeger
aan toe ging,fijn om er heen te gaan
text: Leuke sympathieke vrijwilligers die je graag uitleggen hoe het er vroeger aan toe ging,fijn om er heen te gaan
publish_time: '2022-08-22T15:37:32.579662Z'
- author_name: Hermi ten Cate (Smedeke)
author_uri: https://www.google.com/maps/contrib/100919269784650777514/reviews
rating: 5
relative_time_description: 7 jaar geleden
text: De oudheidkamer .....een echt oud boerderijtje waar van alles te zien is
over vroeger met een ouderwets snoepwinkeltje....
text: De oudheidkamer .....een echt oud boerderijtje waar van alles te zien is over vroeger met een ouderwets snoepwinkeltje....
publish_time: '2018-08-11T13:18:40.680Z'
- author_name: Rob Wolters
author_uri: https://www.google.com/maps/contrib/115572497964937268394/reviews
@ -520,3 +517,53 @@ logo_enrichment:
has_favicon: true
has_og_image: false
favicon_count: 3
mission_statement:
- statement_id: https://nde.nl/ontology/hc/mission/nl-ov-ent-s-oee/mission-2026
statement_type: mission
statement_text: De Stichting Oudheidkamer Enter stelt zich ten doel het bewaren en aan jongere generaties overdragen van
al het culturele erfgoed van het dorp Enter.
statement_language: nl
extracted_verbatim: true
source_url: https://www.enterserfgoed.nl/over-ons
content_hash: sha256-hSR8huZ9ggy+GRhZ++r5ggfHHhgU8BYZadET1Tx8X4c=
provenance:
statement_created_at: '2026-01-04T16:30:06.119815+00:00'
source_archived_at: '2026-01-04T16:29:44.639845+00:00'
retrieval_agent: linkup-api
extraction_agent: zai-glm/glm-4.7
extraction_confidence: 1.0
prov:wasDerivedFrom: https://www.enterserfgoed.nl/over-ons
prov:generatedAtTime: '2026-01-04T16:30:06.119815+00:00'
source_section: Doelstelling
- statement_id: https://nde.nl/ontology/hc/mission/nl-ov-ent-s-oee/goal-2026
statement_type: goal
statement_text: '- Het opsporen, verzamelen en bewaren van voorwerpen die merkwaardig zijn en niet naar hun aard elders
bewaard horen te worden,
- Het zoveel mogelijk toegankelijk make van bovenbedoelde voorwerpen voor het publiek,
- Bevorderen van de studie van Enters verleden en eigen aard; middelen daartoe te verzamelen en te bewaren of te doen
vervaardigen en de aldus verkregen gegevens voor begunstigers en andere belangstellenden toegankelijk te maken,
- Het opsporen, verzamelen en bewaren van voorwerpen die van belang zijn voor het vormen van een beeld van Enters verleden,
- Het maken en laten maken van voorwerpen die het bovenbedoelde beeld helpen vormen,
- Het waken voor en het handelen tot behoud van het mooie- en goede dat uit vroegere tijd nog in Enter aanwezig is, waaronder
geestelijke verworvenheden in taal of geschrift en van oude benamingen,
- En voorts al hetgeen met een en ander rechtstreeks of zijdelings verband houdt of daartoe bevorderlijk kan zijn, alles
in de ruimste zin van het woord.'
statement_language: nl
extracted_verbatim: true
source_url: https://www.enterserfgoed.nl/over-ons
content_hash: sha256-PgsFuOl5A56qUtDwMLtBShR3quDEa54dK+fkA2HCMbk=
provenance:
statement_created_at: '2026-01-04T16:30:06.119839+00:00'
source_archived_at: '2026-01-04T16:29:44.639845+00:00'
retrieval_agent: linkup-api
extraction_agent: zai-glm/glm-4.7
extraction_confidence: 1.0
prov:wasDerivedFrom: https://www.enterserfgoed.nl/over-ons
prov:generatedAtTime: '2026-01-04T16:30:06.119839+00:00'
source_section: Doelstelling

View file

@ -714,3 +714,41 @@ logo_enrichment:
has_favicon: true
has_og_image: false
favicon_count: 1
mission_statement:
- statement_id: https://nde.nl/ontology/hc/mission/nl-ov-har-l-obh/mission-2026
statement_type: mission
statement_text: 'De bibliotheek is voor iedere burger in haar werkgebied een laagdrempelige, eigentijdse voorziening voor
informatie, educatie, cultuur, ontmoeting en ontspanning. De bibliotheek levert maatwerk voor iedere burger in haar werkgebied,
die informatie, educatie, cultuur, ontmoeting en ontspanning wil voor het nastreven van fundamentele menselijke waarden:
vrijheid, welvaart, ontplooiing van de samenleving en het individu, constructief deelnemen aan het maatschappelijk leven
en meewerken aan het vormgeven van democratie.'
statement_language: nl
extracted_verbatim: true
source_url: https://www.bibliotheekhardenberg.nl/over-ons
content_hash: sha256-+9Z7epOmpgnjaxF4BLQi2Kud2Ro/aS0sgkQAHPKRsc8=
provenance:
statement_created_at: '2026-01-04T15:55:00.130811+00:00'
source_archived_at: '2026-01-04T15:54:25.695673+00:00'
retrieval_agent: linkup-api
extraction_agent: zai-glm/glm-4.7
extraction_confidence: 1.0
prov:wasDerivedFrom: https://www.bibliotheekhardenberg.nl/over-ons
prov:generatedAtTime: '2026-01-04T15:55:00.130811+00:00'
source_section: Over ons
- statement_id: https://nde.nl/ontology/hc/mission/nl-ov-har-l-obh/goal-2026
statement_type: goal
statement_text: Het doel van de Stichting Openbare Bibliotheken Hardenberg is de openbare bibliotheekvoorziening in de gemeente
Hardenberg te bevorderen en in stand te houden, dit in de ruimste zin van het woord.
statement_language: nl
extracted_verbatim: true
source_url: https://www.bibliotheekhardenberg.nl/over-ons
content_hash: sha256-UmER0f9fZaFEFZ7U8FXbfmekFvQrARQUbfkUHcN6PYQ=
provenance:
statement_created_at: '2026-01-04T15:55:00.130823+00:00'
source_archived_at: '2026-01-04T15:54:25.695673+00:00'
retrieval_agent: linkup-api
extraction_agent: zai-glm/glm-4.7
extraction_confidence: 1.0
prov:wasDerivedFrom: https://www.bibliotheekhardenberg.nl/over-ons
prov:generatedAtTime: '2026-01-04T15:55:00.130823+00:00'
source_section: Over ons

View file

@ -390,8 +390,8 @@ genealogiewerkbalk_enrichment:
code: '168'
municipal_archive:
name: Gemeentearchief Losser
website: 'Het gemeentearchief Losser is nog niet online te vinden. De Historische
Kring Losser heeft wel een eigen archief: https://www.historischekringlosser.nl/archief/'
website: 'Het gemeentearchief Losser is nog niet online te vinden. De Historische Kring Losser heeft wel een eigen archief:
https://www.historischekringlosser.nl/archief/'
isil: null
isil_note: geenLo
province:
@ -518,12 +518,10 @@ timeline_enrichment:
- https://www.fundamentlosser.nl/historie/post-timeline/
- https://www.oorlogsbronnen.nl/bronnen?term=Gemeente+Losser
linkup_query: '"Gemeentearchief Losser" Losser opgericht OR gesticht OR sinds'
linkup_answer: Er is geen specifieke informatie gevonden over het oprichtingsjaar
of de stichting van een "Gemeentearchief Losser" in de beschikbare bronnen.
Wel is bekend dat de Historische Kring Losser, die zich inzet voor het behoud
van het cultuurhistorisch erfgoed van de gemeente Losser, is opgericht in 1969.
Het gemeentearchief zelf wordt genoemd in verband met het ontbreken van stukken
van vóór 1832, maar een exacte oprichtingsdatum van het gemeentearchief is niet
linkup_answer: Er is geen specifieke informatie gevonden over het oprichtingsjaar of de stichting van een "Gemeentearchief
Losser" in de beschikbare bronnen. Wel is bekend dat de Historische Kring Losser, die zich inzet voor het behoud van
het cultuurhistorisch erfgoed van de gemeente Losser, is opgericht in 1969. Het gemeentearchief zelf wordt genoemd in
verband met het ontbreken van stukken van vóór 1832, maar een exacte oprichtingsdatum van het gemeentearchief is niet
vermeld.
fetch_timestamp: '2025-12-15T21:07:32.914251+00:00'
archive_path: web/0859/linkup/linkup_founding_20251215T210732Z.json
@ -598,3 +596,23 @@ logo_enrichment:
has_favicon: true
has_og_image: true
favicon_count: 3
mission_statement:
- statement_id: https://nde.nl/ontology/hc/mission/nl-ov-los-a-gal/goal-2026
statement_type: goal
statement_text: De Historische Kring Losser zet zich sinds haar oprichting in 1969 in voor het behoud van het cultuur-historische
erfgoed van de gemeente Losser (met name van de dorpen Losser, Overdinkel en Glane), het vastleggen van deze informatie
in boeken en andere publicaties en het organiseren van lezingen en exposities. Hierdoor blijft de kennis van het verleden
actueel, toegankelijk gemaakt voor een breed publiek en bewaard voor het nageslacht.
statement_language: nl
extracted_verbatim: true
source_url: https://www.historischekringlosser.nl/over-ons
content_hash: sha256-7t3u987WJOXyHfAG+30+SP1/FobqoSOQ7gmB2EHOE7I=
provenance:
statement_created_at: '2026-01-04T15:59:36.067968+00:00'
source_archived_at: '2026-01-04T15:59:18.018510+00:00'
retrieval_agent: linkup-api
extraction_agent: zai-glm/glm-4.7
extraction_confidence: 1.0
prov:wasDerivedFrom: https://www.historischekringlosser.nl/over-ons
prov:generatedAtTime: '2026-01-04T15:59:36.067968+00:00'
source_section: Doelstelling Historische Kring Losser (HKL)

View file

@ -303,10 +303,14 @@ google_maps_enrichment:
author_uri: https://www.google.com/maps/contrib/115008355672684315625/reviews
rating: 4
relative_time_description: 2 jaar geleden
text: |-
Kleinschalig particulier uitziend museum wat zo zijn charme heeft alsof je bij iemand thuis een collectie verzamelde historische objecten mag bekijken.
Het museum bestaat uit meerdere panden waarbij diverse kamers en gangen voorzien zijn van informatie over uiteraard Steenwijk. Als je wilt kan je weer binnen een half uur buiten staan zoals wij maar dat is omdat wij niet uitgebreid stilstaan bij elk object.
Een prima aanvulling om een inpandig indruk van Steenwijk te krijgen naast onze stadswandeling.
text: 'Kleinschalig particulier uitziend museum wat zo zijn charme heeft alsof je bij iemand thuis een collectie verzamelde
historische objecten mag bekijken.
Het museum bestaat uit meerdere panden waarbij diverse kamers en gangen voorzien zijn van informatie over uiteraard
Steenwijk. Als je wilt kan je weer binnen een half uur buiten staan zoals wij maar dat is omdat wij niet uitgebreid
stilstaan bij elk object.
Een prima aanvulling om een inpandig indruk van Steenwijk te krijgen naast onze stadswandeling.'
publish_time: '2023-09-15T10:42:25.979401Z'
- author_name: Klaas-Jan Wieringa
author_uri: https://www.google.com/maps/contrib/111529634672742246936/reviews
@ -326,10 +330,11 @@ google_maps_enrichment:
author_uri: https://www.google.com/maps/contrib/106154407348737487060/reviews
rating: 2
relative_time_description: 3 jaar geleden
text: |-
Even niet zo slim om op de website te zetten dat u aan het inventariseren bent tot maart.
text: 'Even niet zo slim om op de website te zetten dat u aan het inventariseren bent tot maart.
Kwamen vandaag voor een gesloten deur.
Jammer.
Jammer.'
publish_time: '2022-02-10T13:12:40.139480Z'
- author_name: Noa Ovic
author_uri: https://www.google.com/maps/contrib/101634034544133597026/reviews
@ -621,3 +626,20 @@ timeline_enrichment:
extraction_method: linkup_answer_regex
extraction_timestamp: '2025-12-16T20:17:53.366534+00:00'
data_tier: TIER_4_INFERRED
mission_statement:
- statement_id: https://nde.nl/ontology/hc/mission/nl-ov-ste-m-sms/goal-2026
statement_type: goal
statement_text: Het Stadsmuseum Steenwijk heeft tot doel het verschaffen van inzicht in de geschiedenis en cultuur van Steenwijk.
statement_language: nl
extracted_verbatim: true
source_url: https://www.stadsmuseumsteenwijk.nl/
content_hash: sha256-otAVdRYSCyjW8O5K8+4GognuhR6CV4W9yvPGjXH6MuQ=
provenance:
statement_created_at: '2026-01-04T15:48:15.448298+00:00'
source_archived_at: '2026-01-04T15:47:47.769847+00:00'
retrieval_agent: linkup-api
extraction_agent: zai-glm/glm-4.7
extraction_confidence: 0.95
prov:wasDerivedFrom: https://www.stadsmuseumsteenwijk.nl/
prov:generatedAtTime: '2026-01-04T15:48:15.448298+00:00'
source_section: Algemeen

View file

@ -52,8 +52,7 @@ provenance:
linkup_timespan:
- source_type: linkup_web_search
fetch_timestamp: '2025-12-15T21:30:36.989419+00:00'
search_query: '"Historische Kring Breukelen" Breukelen opgericht OR gesticht
OR sinds'
search_query: '"Historische Kring Breukelen" Breukelen opgericht OR gesticht OR sinds'
source_urls:
- https://historischekringbreukelen.nl/
- https://www.historischekringbreukelen.nl/vereniging/over-ons/
@ -193,8 +192,7 @@ ghcid:
ghcid_numeric: 7197883274709595298
valid_from: '2025-12-02T14:56:45.615377+00:00'
valid_to: null
reason: GHCID regenerated with Google Maps locality fix (Dec 2025) - name suffix
added for collision
reason: GHCID regenerated with Google Maps locality fix (Dec 2025) - name suffix added for collision
location_resolution:
method: GOOGLE_MAPS_LOCALITY
google_maps_locality: Breukelen
@ -355,3 +353,22 @@ logo_enrichment:
has_favicon: true
has_og_image: false
favicon_count: 3
mission_statement:
- statement_id: https://nde.nl/ontology/hc/mission/nl-ut-bre-s-hkb/goal-2026
statement_type: goal
statement_text: De Historische Kring Breukelen houdt zich bezig met de geschiedenis van Breukelen en omgeving, inbegrepen
de cultuurhistorische waarden in dit gebied, en met die aspecten van de regionale, vaderlandse en algemene geschiedenis
die van belang zijn voor een goed begrip van de geschiedenis van de voormalige gemeente Breukelen.
statement_language: nl
extracted_verbatim: true
source_url: https://www.historischekringbreukelen.nl/over
content_hash: sha256-iQ7juo3H/0QVWEBzXq6UJlpRDXdv/HZv/4t/s/Jg2PM=
provenance:
statement_created_at: '2026-01-04T16:01:36.545003+00:00'
source_archived_at: '2026-01-04T16:01:06.412249+00:00'
retrieval_agent: linkup-api
extraction_agent: zai-glm/glm-4.7
extraction_confidence: 0.95
prov:wasDerivedFrom: https://www.historischekringbreukelen.nl/over
prov:generatedAtTime: '2026-01-04T16:01:36.545003+00:00'
source_section: Doelstelling

View file

@ -100,8 +100,7 @@ provenance:
notes:
- Provenance tracking added retroactively
- claim_level_provenance available in sources section
- Removed incorrect wikidata_enrichment on 2025-12-08T08:20:00.621671+00:00. Re-enrichment
required with proper matching.
- Removed incorrect wikidata_enrichment on 2025-12-08T08:20:00.621671+00:00. Re-enrichment required with proper matching.
- Canonical location added via normalize_custodian_files.py on 2025-12-08T23:19:39Z
- Canonical location added via normalize_custodian_files.py on 2025-12-09T07:10:36Z
qp_resolution_timestamp: '2025-11-27T20:16:14.624761+00:00'
@ -197,22 +196,18 @@ google_maps_enrichment:
author_uri: https://www.google.com/maps/contrib/113653845990574409933/reviews
rating: 5
relative_time_description: 3 weken geleden
text: We zijn hier in korte tijd twee keer geweest en ook twee keer een rondleiding
gehad. De dames die de rondleiding verzorgen werken wel voor het Zeeuws Archief
maar doen normaal gesproken iets heel anders. Daarom petje af voor alles wat
zij weten te vertellen en hoe zij de groepen weten te boeien. Gratis (lekkere)
koffie tijdens het wachten. En tijdens en na de rondleiding genoten van het
prachtige gebouw, zowel binnen als buiten.
text: We zijn hier in korte tijd twee keer geweest en ook twee keer een rondleiding gehad. De dames die de rondleiding
verzorgen werken wel voor het Zeeuws Archief maar doen normaal gesproken iets heel anders. Daarom petje af voor alles
wat zij weten te vertellen en hoe zij de groepen weten te boeien. Gratis (lekkere) koffie tijdens het wachten. En tijdens
en na de rondleiding genoten van het prachtige gebouw, zowel binnen als buiten.
publish_time: '2025-11-05T19:36:22.820190124Z'
- author_name: Peter van der Loos
author_uri: https://www.google.com/maps/contrib/113936371416422128241/reviews
rating: 5
relative_time_description: 5 jaar geleden
text: Super instelling ik was daar vanwege stamboom onderzoek van mijn Zeeuwse
voorvaderen. Er is heel veel bewaard in de archieven. Er zit een team van vrijwilligers
die je graag helpen en bijzonder vaardig zijn in het verstrekken van de benodigde
documenten. Ik was verbaasd vanwege sommige gedetailleerde informatie er voorhande
is.
text: Super instelling ik was daar vanwege stamboom onderzoek van mijn Zeeuwse voorvaderen. Er is heel veel bewaard in
de archieven. Er zit een team van vrijwilligers die je graag helpen en bijzonder vaardig zijn in het verstrekken van
de benodigde documenten. Ik was verbaasd vanwege sommige gedetailleerde informatie er voorhande is.
publish_time: '2020-01-09T16:11:24.588227Z'
- author_name: Jacob Theunisz
author_uri: https://www.google.com/maps/contrib/108222625790942478561/reviews
@ -224,38 +219,34 @@ google_maps_enrichment:
author_uri: https://www.google.com/maps/contrib/101198013055833452509/reviews
rating: 5
relative_time_description: een jaar geleden
text: 'Sinds ik stamboom onderzoek ben gaan doen, heb ik van meerdere archieven
gebruik gemaakt, het Zeeuws Archief heeft mij absoluut het beste geholpen.
text: 'Sinds ik stamboom onderzoek ben gaan doen, heb ik van meerdere archieven gebruik gemaakt, het Zeeuws Archief heeft
mij absoluut het beste geholpen.
Ten eerste omdat heel veel archiefstukken online te vinden zijn en het zoeken
op "Zeeuwen Gezocht'' heel makkelijk gaat. Ook hebben ze op de website veel
zoekgidsen, een ideale bron van informatie voor een beginnende familie geschiedenis
Ten eerste omdat heel veel archiefstukken online te vinden zijn en het zoeken op "Zeeuwen Gezocht'' heel makkelijk gaat.
Ook hebben ze op de website veel zoekgidsen, een ideale bron van informatie voor een beginnende familie geschiedenis
onderzoeker zoals ik.
Ten tweede omdat ze heel behulpzaam zijn via email, als je iets toch nog niet
kan vinden. Via directe links in de emails kwam ik precies waar ik zijn moest.
Ten tweede omdat ze heel behulpzaam zijn via email, als je iets toch nog niet kan vinden. Via directe links in de emails
kwam ik precies waar ik zijn moest.
Ten derde omdat je op verzoek stukken die nog niet digitaal zijn kan aanvragen
om te digitaliseren.
Ten derde omdat je op verzoek stukken die nog niet digitaal zijn kan aanvragen om te digitaliseren.
Je zou bijna denken dat ze niet willen dat je langs hoeft te komen. :)
Maar ten vierde: Als je dan toch langs komt om stukken te bekijken die te fragiel
zijn om te digitaliseren of beperkt openbaar, zijn ze heel vriendelijk, behulpzaam
en betrokken.
Maar ten vierde: Als je dan toch langs komt om stukken te bekijken die te fragiel zijn om te digitaliseren of beperkt
openbaar, zijn ze heel vriendelijk, behulpzaam en betrokken.
En als laatste: ze organiseren ook regelmatig lezingen en cursussen! Dus ik
pakte een lezing mee en werd ineens geïnterviewd door omroep Zeeland!
En als laatste: ze organiseren ook regelmatig lezingen en cursussen! Dus ik pakte een lezing mee en werd ineens geïnterviewd
door omroep Zeeland!
Tip: als je heel de dag in het archief wilt zitten zoals ik, je kunt niet echt
lunchen bij het archief zelf, maar een klein stukje lopen en je bent bij het
Zeeuws Museum waar je wel goed kunt lunchen.'
Tip: als je heel de dag in het archief wilt zitten zoals ik, je kunt niet echt lunchen bij het archief zelf, maar een
klein stukje lopen en je bent bij het Zeeuws Museum waar je wel goed kunt lunchen.'
publish_time: '2024-11-07T17:29:48.539523Z'
- author_name: Diana Peene
author_uri: https://www.google.com/maps/contrib/101209654898621092874/reviews
@ -474,9 +465,8 @@ digital_platform_v2:
platform_name: Zeeuws Archief Website
platform_url: https://www.zeeuwsarchief.nl/
platform_type: DISCOVERY_PORTAL
description: Het Zeeuws Archief is hét historisch centrum van Zeeland en beheert
en bewaart belangrijke bronnen over de Zeeuwse geschiedenis en maakt dit cultureel
erfgoed in samenwerking met anderen zichtbaar.
description: Het Zeeuws Archief is hét historisch centrum van Zeeland en beheert en bewaart belangrijke bronnen over de
Zeeuwse geschiedenis en maakt dit cultureel erfgoed in samenwerking met anderen zichtbaar.
language: nl
og_image: https://zeeuwsarchief-prod.imgix.net/za-social-media.png?auto=format&h=630&w=1200&s=4de4f50793ef9b15eaf50dd005744451
favicon: http://www.zeeuwsarchief.nl/favicons/apple-touch-icon.png
@ -619,3 +609,21 @@ logo_enrichment:
has_favicon: true
has_og_image: false
favicon_count: 5
mission_statement:
- statement_id: https://nde.nl/ontology/hc/mission/nl-ze-mid-a-gah/mission-2026
statement_type: mission
statement_text: Het Zeeuws Archief bewaart en beheert belangrijke bronnen over het verleden van Zeeland, en maakt die voor
iedereen toegankelijk.
statement_language: nl
extracted_verbatim: true
source_url: https://www.zeeuwsarchief.nl/over
content_hash: sha256-eS4argVTGzbVAYoNiM9detNcNZHgVlwViHWZZ3G6HNM=
provenance:
statement_created_at: '2026-01-04T15:52:39.235253+00:00'
source_archived_at: '2026-01-04T15:52:05.787338+00:00'
retrieval_agent: linkup-api
extraction_agent: zai-glm/glm-4.7
extraction_confidence: 0.85
prov:wasDerivedFrom: https://www.zeeuwsarchief.nl/over
prov:generatedAtTime: '2026-01-04T15:52:39.235253+00:00'
source_section: Introductie

View file

@ -735,3 +735,24 @@ logo_enrichment:
has_favicon: true
has_og_image: true
favicon_count: 1
mission_statement:
- statement_id: https://nde.nl/ontology/hc/mission/nl-ze-ter-l-bt/mission-2026
statement_type: mission
statement_text: Bibliotheek Zeeuws-Vlaanderen helpt inwoners om bewust, kritisch en actief deel te nemen aan de samenleving.
Dit doet de bibliotheek door toegang te geven tot betrouwbare kennis en informatie en door activiteiten te organiseren
op het gebied van taal, cultuur en maatschappij. We bieden dit zowel fysiek als digitaal aan, op een laagdrempelige wijze
en bij voorkeur in de nabije omgeving. De bibliotheek is voor iedereen een uitnodigende ontmoetingsplek, waar mensen graag
vertoeven, plezier hebben en waar vaardigheden aangereikt worden die ze nodig hebben om mee te kunnen doen.
statement_language: nl
extracted_verbatim: true
source_url: https://www.bibliotheekzeeuwsvlaanderen.nl/over-ons
content_hash: sha256-8KGXTOAjNIE0gLd11VwAQLcbYlFWUaRAaK5Vmr59eow=
provenance:
statement_created_at: '2026-01-04T16:42:35.973986+00:00'
source_archived_at: '2026-01-04T16:42:16.196183+00:00'
retrieval_agent: linkup-api
extraction_agent: zai-glm/glm-4.7
extraction_confidence: 1.0
prov:wasDerivedFrom: https://www.bibliotheekzeeuwsvlaanderen.nl/over-ons
prov:generatedAtTime: '2026-01-04T16:42:35.973986+00:00'
source_section: Over ons - Missie

View file

@ -42,8 +42,8 @@ wikidata_enrichment:
instance_of: &id001
- id: Q33506
label: museum
description: institution that holds artifacts and other objects of scientific,
artistic, cultural, historical, or other importance
description: institution that holds artifacts and other objects of scientific, artistic, cultural, historical, or other
importance
main_subject:
- id: Q313600
label: still camera
@ -260,29 +260,24 @@ google_maps_enrichment:
author_uri: https://www.google.com/maps/contrib/104111542778678304292/reviews
rating: 5
relative_time_description: 9 maanden geleden
text: Als je van analoge fotografie houdt en in Zierikzee bent, dan is dit zeker
een leuke plek om te bezoeken. Het museum is niet heel groot en je bent er met
een 30/60 minuten wel doorheen, maar de collectie (speciale) cameras en toebehoren
zijn leuk om te bekijken. Ze hebben ook een kleine bibliotheek met allerlei
oude boeken en folders van Kodak en noem maar op. Het museum wordt door vrijwilligers
in stand gehouden en je merkt dat ze de passie graag met je delen.
text: Als je van analoge fotografie houdt en in Zierikzee bent, dan is dit zeker een leuke plek om te bezoeken. Het museum
is niet heel groot en je bent er met een 30/60 minuten wel doorheen, maar de collectie (speciale) cameras en toebehoren
zijn leuk om te bekijken. Ze hebben ook een kleine bibliotheek met allerlei oude boeken en folders van Kodak en noem
maar op. Het museum wordt door vrijwilligers in stand gehouden en je merkt dat ze de passie graag met je delen.
publish_time: '2025-02-22T08:15:00.425282Z'
- author_name: Judith Augustijn
author_uri: https://www.google.com/maps/contrib/110602014227569907419/reviews
rating: 5
relative_time_description: 2 jaar geleden
text: Dit is zonder twijfel het meest bijzondere en spectaculaire museum van Zierikzee,
zelfs van heel Schouwen Duiveland! In de centrale hal wordt de nieuwsgierigheid
al snel gewekt en krijg je al een korte indruk van wat dit museum te bieden
heeft. Je kan niet wachten om te worden verder geleid in de volgende ruimten.
De hosts begeleiden je persoonlijk bij vragen of onduidelijkheden. De informatie
komt gaandeweg via al je zintuigen over je heen...De modernste technieken worden
gebruikt om de afgelopen 150 jaar van de fotografie te verduidelijken en inzichtelijk
te maken. Je wordt als door een magneet de Camera Obscura binnen getrokken en
de donkere kamer van Damocles ligt voor je open. We zijn op een regenachtige
middag uren zoet geweest in dit museum en nog hebben we niet alles kunnen ontdekken.
Een aanrader om voor naar Zierikzee af te reizen. En mocht je die plannen nog
niet hebben dan mag dit Cameramuseum niet op je bucketlist ontbreken
text: Dit is zonder twijfel het meest bijzondere en spectaculaire museum van Zierikzee, zelfs van heel Schouwen Duiveland!
In de centrale hal wordt de nieuwsgierigheid al snel gewekt en krijg je al een korte indruk van wat dit museum te bieden
heeft. Je kan niet wachten om te worden verder geleid in de volgende ruimten. De hosts begeleiden je persoonlijk bij
vragen of onduidelijkheden. De informatie komt gaandeweg via al je zintuigen over je heen...De modernste technieken
worden gebruikt om de afgelopen 150 jaar van de fotografie te verduidelijken en inzichtelijk te maken. Je wordt als
door een magneet de Camera Obscura binnen getrokken en de donkere kamer van Damocles ligt voor je open. We zijn op een
regenachtige middag uren zoet geweest in dit museum en nog hebben we niet alles kunnen ontdekken. Een aanrader om voor
naar Zierikzee af te reizen. En mocht je die plannen nog niet hebben dan mag dit Cameramuseum niet op je bucketlist
ontbreken
publish_time: '2023-10-26T15:24:43.839975Z'
- author_name: Andre S
author_uri: https://www.google.com/maps/contrib/106247360329088459508/reviews
@ -290,9 +285,8 @@ google_maps_enrichment:
relative_time_description: een jaar geleden
text: 'Niet heel groot maar zeker veel te zien.
Lijkt of de tijd hier stil heeft gestaan. De heer welke met ons mee door het
museum, en ons vol liefde over de camera''s wist te vertellen, was zeker kundig
en had zeker de nodige kennis.
Lijkt of de tijd hier stil heeft gestaan. De heer welke met ons mee door het museum, en ons vol liefde over de camera''s
wist te vertellen, was zeker kundig en had zeker de nodige kennis.
Dank en tot ziens. Groet André'
@ -301,16 +295,14 @@ google_maps_enrichment:
author_uri: https://www.google.com/maps/contrib/100267359245157298868/reviews
rating: 5
relative_time_description: een jaar geleden
text: Geweldig leuk museum over de geschiedenis van fotografie. Er is heel veel
te zien ook al is het niet zo groot. Aanrader!
text: Geweldig leuk museum over de geschiedenis van fotografie. Er is heel veel te zien ook al is het niet zo groot. Aanrader!
publish_time: '2024-07-07T13:49:54.715557Z'
- author_name: Maarten Thomassen
author_uri: https://www.google.com/maps/contrib/101216393859471857860/reviews
rating: 4
relative_time_description: 2 jaar geleden
text: Ze hebben leuke oude spullen, maar het is niet heel groot. Binnen 30 min
tot een uur heb je het wel gezien afhankelijk van hoe gedetailleerd je zelf
kijkt.
text: Ze hebben leuke oude spullen, maar het is niet heel groot. Binnen 30 min tot een uur heb je het wel gezien afhankelijk
van hoe gedetailleerd je zelf kijkt.
publish_time: '2023-08-06T10:12:30.715697Z'
photo_urls:
- https://places.googleapis.com/v1/places/ChIJIRF61WL1xEcRFqmZwqr_XbE/photos/AWn5SU6RO-fwAPJerZgmBecN8TGoC6Jw_KHkOkoQ0fFOpiw2ILa-5-alf-GbEKn5WY-rOhRX6z_-nJST11GMniN9V9tkOIXB_qO3BCuALLndDbjLNrl5x622BdUIMdk2bXifoHqvtaHmj1AxJY4ro4xzfAFWj8dwThoeJBF3jgRJDywQQcI8UxHNs49UTlu4xV6F4bu21i_4_N1pmTl11D6iWbZwAQSbsHP5rmhY42fEX4J1BfaqpteiWZUJwbpqxn7I00iNgRi8WkV2C0a8FCb3R0J3iRoyerngCpf1yyomW10LEg/media?maxWidthPx=800&key=AIzaSyAHuazNth9ZvfRFYk5-v49CwXwhABH8Ri0
@ -489,8 +481,7 @@ timespan:
end_of_the_end: null
sources:
- 'Wikidata P571 (inception): https://www.wikidata.org/wiki/Q134054379'
notes: Cameramuseum Zierikzee founded in 2012. Dedicated to the history of photography
and camera equipment.
notes: Cameramuseum Zierikzee founded in 2012. Dedicated to the history of photography and camera equipment.
location:
latitude: 51.649635200000006
longitude: 3.919208
@ -550,11 +541,10 @@ digital_platform_v2:
platform_name: Stichting Cameramuseum Ontdek alles over fotografie Website
platform_url: https://cameramuseum.nl/
platform_type: DISCOVERY_PORTAL
description: Het Cameramuseum vertelt het verhaal over de historie en het ontstaan
van de fotografie in al haar aspecten tot nu toe, een ontdekkingstocht voor
jong en oud. Ontdek meer over de Schouwse fotografen, donkere kamer, studio,
projectie en stereo. Natuurlijk komen ook veel cameras en allerlei toebehoren
aan bod. En dat alles wordt omlijst met levensechte taferelen.
description: Het Cameramuseum vertelt het verhaal over de historie en het ontstaan van de fotografie in al haar aspecten
tot nu toe, een ontdekkingstocht voor jong en oud. Ontdek meer over de Schouwse fotografen, donkere kamer, studio, projectie
en stereo. Natuurlijk komen ook veel cameras en allerlei toebehoren aan bod. En dat alles wordt omlijst met levensechte
taferelen.
language: nl
og_image: null
favicon: https://cameramuseum.nl/wp-content/uploads/2020/03/cropped-logo-cameramuseum-32x32.jpg
@ -596,3 +586,24 @@ logo_enrichment:
has_favicon: true
has_og_image: false
favicon_count: 3
mission_statement:
- statement_id: https://nde.nl/ontology/hc/mission/nl-ze-zie-m-cmz/mission-2026
statement_type: mission
statement_text: Het Cameramuseum vertelt het verhaal over de historie en het ontstaan van de fotografie in al haar facetten
tot nu toe, een ware ontdekkingstocht. Wat heeft een prisma met fotografie te maken, wanneer en hoe werd de eerste foto
gemaakt en wat is een camera obscura? Ontdek meer over de Schouwse fotografen, hoe een camera werkt en wat er allemaal
bij komt kijken voordat je een foto in je handen hebt. De donkere kamer, de studio, projectie, stereo en natuurlijk cameras
en allerlei toebehoren komen aan bod. En dat alles wordt omlijst en aangevuld met levensechte taferelen.
statement_language: nl
extracted_verbatim: true
source_url: https://www.cameramuseum.nl/over
content_hash: sha256-xV/WIgqKxHrlrZv0VNC2eEzlFI4btaggyRhJFva1+E4=
provenance:
statement_created_at: '2026-01-04T15:58:39.182031+00:00'
source_archived_at: '2026-01-04T15:58:13.910394+00:00'
retrieval_agent: linkup-api
extraction_agent: zai-glm/glm-4.7
extraction_confidence: 0.8
prov:wasDerivedFrom: https://www.cameramuseum.nl/over
prov:generatedAtTime: '2026-01-04T15:58:39.182031+00:00'
source_section: Over het museum

View file

@ -59,8 +59,8 @@ wikidata_enrichment:
instance_of: &id001
- id: Q33506
label: museum
description: institution that holds artifacts and other objects of scientific,
artistic, cultural, historical, or other importance
description: institution that holds artifacts and other objects of scientific, artistic, cultural, historical, or other
importance
wikidata_instance_of: *id001
wikidata_location:
country: &id003
@ -170,8 +170,7 @@ provenance:
linkup_timespan:
- source_type: linkup_web_search
fetch_timestamp: '2025-12-15T22:09:17.897364+00:00'
search_query: '"Stadhuismuseum Zierikzee" Zierikzee opgericht OR gesticht OR
sinds'
search_query: '"Stadhuismuseum Zierikzee" Zierikzee opgericht OR gesticht OR sinds'
source_urls:
- https://nl.wikipedia.org/wiki/Stadhuismuseum_Zierikzee
- https://www.stadhuismuseum.nl/collectie/
@ -326,19 +325,16 @@ google_maps_enrichment:
author_uri: https://www.google.com/maps/contrib/109070634128278285199/reviews
rating: 5
relative_time_description: 4 maanden geleden
text: Elk jaar komen we even naar de nieuwe tentoonstelling kijken als we hier
op vakantie zijn. Erg leuk om alle weetjes te horen van de dieren van het eiland.
Leuk verteld middels korte verhaaltjes rond de minuut. Vriendelijk personeel
en een flitsrondleiding gekregen zodat je later op je gemak alles nog rustig
kan bekijken.
text: Elk jaar komen we even naar de nieuwe tentoonstelling kijken als we hier op vakantie zijn. Erg leuk om alle weetjes
te horen van de dieren van het eiland. Leuk verteld middels korte verhaaltjes rond de minuut. Vriendelijk personeel
en een flitsrondleiding gekregen zodat je later op je gemak alles nog rustig kan bekijken.
publish_time: '2025-07-23T19:04:08.180892215Z'
- author_name: Camper Chronicles
author_uri: https://www.google.com/maps/contrib/112720421873142391245/reviews
rating: 3
relative_time_description: 5 maanden geleden
text: 'Het museum bevind zich in een mooi oud gebouw. Helaas stond het nog compleet
in de steigers. De collectie is niet heel erg spannend en viel een beetje tegen.
Interessant was het gedeelte over meekrapwortels waaruit een rode kleurstof
text: 'Het museum bevind zich in een mooi oud gebouw. Helaas stond het nog compleet in de steigers. De collectie is niet
heel erg spannend en viel een beetje tegen. Interessant was het gedeelte over meekrapwortels waaruit een rode kleurstof
werd gewonnen, weer eens wat anders dan suikerbieten.
Heel vriendelijk personeel/vrijwilligers.'
@ -347,35 +343,30 @@ google_maps_enrichment:
author_uri: https://www.google.com/maps/contrib/106891723662704496227/reviews
rating: 5
relative_time_description: 9 maanden geleden
text: 'Vandaag hebben we het Stadhuismuseum Zierikzee bezocht en we waren diep
onder de indruk. Het museum is prachtig verzorgd en biedt een zeer uitgebreide
en interessante eigen collectie. Daarnaast was de tijdelijke expositie van fotograaf
text: 'Vandaag hebben we het Stadhuismuseum Zierikzee bezocht en we waren diep onder de indruk. Het museum is prachtig
verzorgd en biedt een zeer uitgebreide en interessante eigen collectie. Daarnaast was de tijdelijke expositie van fotograaf
Withoos werkelijk schitterend.
Wat ons vooral opviel, was het enorme enthousiasme van de vrijwilligers die
het museum met zoveel passie runnen. Hun toewijding en kennis maakten het bezoek
extra bijzonder.
Wat ons vooral opviel, was het enorme enthousiasme van de vrijwilligers die het museum met zoveel passie runnen. Hun
toewijding en kennis maakten het bezoek extra bijzonder.
Een absolute aanrader voor iedereen die geïnteresseerd is in de geschiedenis
van Zierikzee en omgeving. Een bezoek aan dit museum is een absolute must!'
Een absolute aanrader voor iedereen die geïnteresseerd is in de geschiedenis van Zierikzee en omgeving. Een bezoek aan
dit museum is een absolute must!'
publish_time: '2025-02-28T18:34:01.409790Z'
- author_name: Eveline Steijn
author_uri: https://www.google.com/maps/contrib/104742799728920793726/reviews
rating: 5
relative_time_description: een jaar geleden
text: Geweldig mooi museum met een heel divers aanbod. De medewerkers gaven mij
een warm welkom en boden mij zelfs nog een rondleiding door het Gravensteen
aan. Dat is zeker een aanrader. De gids was vol passie en het is een zeer bijzonder
pand om te zien, vooral omdat het nog zo intact is. In het museum zelfs zijn
de iPads een groots pluspunt. De informatie is zeer volledig. Grote aanrader
om te bezoeken!
text: Geweldig mooi museum met een heel divers aanbod. De medewerkers gaven mij een warm welkom en boden mij zelfs nog
een rondleiding door het Gravensteen aan. Dat is zeker een aanrader. De gids was vol passie en het is een zeer bijzonder
pand om te zien, vooral omdat het nog zo intact is. In het museum zelfs zijn de iPads een groots pluspunt. De informatie
is zeer volledig. Grote aanrader om te bezoeken!
publish_time: '2024-06-26T16:56:56.815574Z'
- author_name: Jmc Lock
author_uri: https://www.google.com/maps/contrib/104094147127015950962/reviews
rating: 5
relative_time_description: 7 maanden geleden
text: Mooi museum. De buitenkant wordt momenteel gerestaureerd. Beetje jammer
maar noodzakelijk.
text: Mooi museum. De buitenkant wordt momenteel gerestaureerd. Beetje jammer maar noodzakelijk.
publish_time: '2025-04-22T17:51:50.130420Z'
photo_urls:
- https://places.googleapis.com/v1/places/ChIJqyl52Xz1xEcRXp3vLerUT6Y/photos/AWn5SU7-mtiT9zT_w24uuSIeNG5qeN6UiAkfA7rD0tFamXCEqujBlv0utNnvUiXZiDYV9b1uRyF0BbwD7VaSpoyqjYraBoJfJ11j6n94NQc8Amtq1oLNaVrhUFDDWeQDF2oYDgd5fAcUw__SVUAXpeRSPRc8gv2NmC3_7RnBAsb5Ix3jD0D4E0x1VtC5UDKGskeuh5QD8J0-NVWe2HbIjgeAUwjxr0H4B6hDmf4OfTYYad2sym9mSuv30zNF-krl8MURrOjmS8JJZsUll8u6aIqgjR0xMeuSdm4fGopdnWU_zP0EhkpX8TmiWlODHaqPAh-fS4-uef4P6AQ1Q6rhSHU-h941-Ddjlo2E15DUGGTmKNkaFDBywzR4iW8b_i1SX_ytGT3rGPBJM5RQxar-Hb2MdJfq3d7eXIKG7C2sW-ryh7k/media?maxWidthPx=800&key=AIzaSyAHuazNth9ZvfRFYk5-v49CwXwhABH8Ri0
@ -508,8 +499,8 @@ custodian_name:
name: Stadhuismuseum Zierikzee
score: 1.0
- source: web_h1_tag
name: Neptunus met drietand op de fraaie toren. Het Stadhuismuseum vertelt het
verhaal van monumentenstad Zierikzee en haar omgeving
name: Neptunus met drietand op de fraaie toren. Het Stadhuismuseum vertelt het verhaal van monumentenstad Zierikzee en
haar omgeving
score: 1.0
- source: web_title_tag
name: Stadhuismuseum
@ -521,24 +512,20 @@ custodian_name:
name: Het reilen en zeilen van het Stadhuismuseum Zierikzee. Puur teamwork
score: 0.79
- source: web_h1_tag
name: Kom ook met de hele klas naar het Stadhuismuseum en ga zelf op onderzoek
uit!
name: Kom ook met de hele klas naar het Stadhuismuseum en ga zelf op onderzoek uit!
score: 0.74
- source: web_h1_tag
name: Zeg ja in het Stadhuismuseum Zierikzee. Uw grote dag viert u hier in een
16e eeuwse trouwzaal
name: Zeg ja in het Stadhuismuseum Zierikzee. Uw grote dag viert u hier in een 16e eeuwse trouwzaal
score: 0.79
- source: web_h1_tag
name: Maatschappelijk en cultureel onmisbaar. Zet u in voor het Stadhuismuseum
Zierikzee
name: Maatschappelijk en cultureel onmisbaar. Zet u in voor het Stadhuismuseum Zierikzee
score: 1.0
- source: web_h1_tag
name: Talrijke mogelijkheden. Op maat voor u, leent het Stadhuismuseum zich uitermate
voor lezingen, recepties, exclusieve rondleidingen of vergaderingen
name: Talrijke mogelijkheden. Op maat voor u, leent het Stadhuismuseum zich uitermate voor lezingen, recepties, exclusieve
rondleidingen of vergaderingen
score: 0.75
- source: web_h1_tag
name: In het hart van het Stadhuismuseum kunt u genieten van een kopje koffie/thee,
Zeeuwse lekkernijen of complete lunches
name: In het hart van het Stadhuismuseum kunt u genieten van een kopje koffie/thee, Zeeuwse lekkernijen of complete lunches
score: 0.74
genealogiewerkbalk_enrichment:
source: Genealogiewerkbalk.nl Municipality Archives Registry
@ -623,9 +610,8 @@ digital_platform_v2:
platform_name: Stadhuismuseum Zierikzee Website
platform_url: https://www.stadhuismuseum.nl/
platform_type: DISCOVERY_PORTAL
description: Het Stadhuismuseum vertelt het verhaal van monumentenstad Zierikzee
en het eiland Schouwen-Duiveland en dankt zijn naam aan het gebouw waarin het
is gehuisvest, het voormalige stadhuis van Zierikzee.
description: Het Stadhuismuseum vertelt het verhaal van monumentenstad Zierikzee en het eiland Schouwen-Duiveland en dankt
zijn naam aan het gebouw waarin het is gehuisvest, het voormalige stadhuis van Zierikzee.
language: nl
og_image: null
favicon: https://www.stadhuismuseum.nl/wp-content/uploads/2015/12/favicon_stadhuismuseum_rev01-1.jpg
@ -667,9 +653,8 @@ timespan:
events:
- date: '1929'
type: founding
description: opgericht in 1911 (begin van de collectie) - Stadhuismuseum als enige
gebruiker van het stadhuis sinds 2002 Er is geen exacte oprichtingsdatum van
he
description: opgericht in 1911 (begin van de collectie) - Stadhuismuseum als enige gebruiker van het stadhuis sinds 2002
Er is geen exacte oprichtingsdatum van he
timeline_enrichment:
timeline_events:
- event_type: FOUNDING
@ -684,14 +669,11 @@ timeline_enrichment:
- https://www.zierikzee-monumentenstad.nl/het-ontstaan
- https://www.museum.nl/nl/stadhuismuseum-zierikzee/pronkstuk/neptunus-in-goud
linkup_query: '"Stadhuismuseum Zierikzee" Zierikzee opgericht OR gesticht OR sinds'
linkup_answer: "Het Stadhuismuseum Zierikzee is voortgekomen uit een oudheidkamer\
\ die in 1911 op de zolder van het toenmalige stadhuis van Zierikzee werd ingericht.\
\ In 1929 richtte de gemeenteraad deze zolder opnieuw in. Sinds 2002 is het\
\ Stadhuismuseum de enige gebruiker van het voormalige stadhuis van Zierikzee.\
\ \n\nSamengevat:\n- Oudheidkamer opgericht in 1911 (begin van de collectie)\n\
- Stadhuismuseum als enige gebruiker van het stadhuis sinds 2002\n\nEr is geen\
\ exacte oprichtingsdatum van het museum zelf vermeld, maar de oorsprong ligt\
\ in 1911."
linkup_answer: "Het Stadhuismuseum Zierikzee is voortgekomen uit een oudheidkamer die in 1911 op de zolder van het toenmalige\
\ stadhuis van Zierikzee werd ingericht. In 1929 richtte de gemeenteraad deze zolder opnieuw in. Sinds 2002 is het Stadhuismuseum\
\ de enige gebruiker van het voormalige stadhuis van Zierikzee. \n\nSamengevat:\n- Oudheidkamer opgericht in 1911 (begin\
\ van de collectie)\n- Stadhuismuseum als enige gebruiker van het stadhuis sinds 2002\n\nEr is geen exacte oprichtingsdatum\
\ van het museum zelf vermeld, maar de oorsprong ligt in 1911."
fetch_timestamp: '2025-12-15T22:09:17.890341+00:00'
archive_path: web/1134/linkup/linkup_founding_20251215T220917Z.json
extraction_method: linkup_answer_regex
@ -701,9 +683,8 @@ timeline_enrichment:
event_date: '1929'
date_precision: year
approximate: false
description: opgericht in 1911 (begin van de collectie) - Stadhuismuseum als enige
gebruiker van het stadhuis sinds 2002 Er is geen exacte oprichtingsdatum van
he
description: opgericht in 1911 (begin van de collectie) - Stadhuismuseum als enige gebruiker van het stadhuis sinds 2002
Er is geen exacte oprichtingsdatum van he
source_urls:
- https://nl.wikipedia.org/wiki/Stadhuismuseum_Zierikzee
- https://www.stadhuismuseum.nl/collectie/
@ -711,14 +692,11 @@ timeline_enrichment:
- https://www.zierikzee-monumentenstad.nl/het-ontstaan
- https://www.museum.nl/nl/stadhuismuseum-zierikzee/pronkstuk/neptunus-in-goud
linkup_query: '"Stadhuismuseum Zierikzee" Zierikzee opgericht OR gesticht OR sinds'
linkup_answer: "Het Stadhuismuseum Zierikzee is voortgekomen uit een oudheidkamer\
\ die in 1911 op de zolder van het toenmalige stadhuis van Zierikzee werd ingericht.\
\ In 1929 richtte de gemeenteraad deze zolder opnieuw in. Sinds 2002 is het\
\ Stadhuismuseum de enige gebruiker van het voormalige stadhuis van Zierikzee.\
\ \n\nSamengevat:\n- Oudheidkamer opgericht in 1911 (begin van de collectie)\n\
- Stadhuismuseum als enige gebruiker van het stadhuis sinds 2002\n\nEr is geen\
\ exacte oprichtingsdatum van het museum zelf vermeld, maar de oorsprong ligt\
\ in 1911."
linkup_answer: "Het Stadhuismuseum Zierikzee is voortgekomen uit een oudheidkamer die in 1911 op de zolder van het toenmalige\
\ stadhuis van Zierikzee werd ingericht. In 1929 richtte de gemeenteraad deze zolder opnieuw in. Sinds 2002 is het Stadhuismuseum\
\ de enige gebruiker van het voormalige stadhuis van Zierikzee. \n\nSamengevat:\n- Oudheidkamer opgericht in 1911 (begin\
\ van de collectie)\n- Stadhuismuseum als enige gebruiker van het stadhuis sinds 2002\n\nEr is geen exacte oprichtingsdatum\
\ van het museum zelf vermeld, maar de oorsprong ligt in 1911."
fetch_timestamp: '2025-12-15T22:09:17.890341+00:00'
archive_path: web/1134/linkup/linkup_founding_20251215T220917Z.json
extraction_method: linkup_answer_regex
@ -743,3 +721,22 @@ logo_enrichment:
has_favicon: true
has_og_image: false
favicon_count: 1
mission_statement:
- statement_id: https://nde.nl/ontology/hc/mission/nl-ze-zie-m-smz/goal-2026
statement_type: goal
statement_text: Het doel van de stichting is het registreren, bewaren, conserveren, verrijken, documenteren, publiceren,
onderzoeken, presenteren en vervreemden van de gemeentelijke kunstcollecties op het gebied van archeologie en beeldende
kunst.
statement_language: nl
extracted_verbatim: true
source_url: https://www.stadhuismuseum.nl/organisatie
content_hash: sha256-3FQcigvp18EUoHFgveZktOYrYzJ+lQfqapkNrUQyuh0=
provenance:
statement_created_at: '2026-01-04T16:49:38.067680+00:00'
source_archived_at: '2026-01-04T16:48:51.243185+00:00'
retrieval_agent: linkup-api
extraction_agent: zai-glm/glm-4.7
extraction_confidence: 0.9
prov:wasDerivedFrom: https://www.stadhuismuseum.nl/organisatie
prov:generatedAtTime: '2026-01-04T16:49:38.067680+00:00'
source_section: Organisatie

View file

@ -501,18 +501,25 @@ youtube_enrichment:
- video_id: mayL9tiuibM
video_url: https://www.youtube.com/watch?v=mayL9tiuibM
title: 'Begroting 2026: Stevige basis, met oog voor de toekomst'
description: |-
Delfland presenteert de concept begroting voor 2026: Stevige basis, met oog voor de toekomst. De begroting 2026 laat zien wat het hoogheemraadschap komend jaar gaat doen en wat daarvan de kosten zijn:
description: 'Delfland presenteert de concept begroting voor 2026: Stevige basis, met oog voor de toekomst. De begroting
2026 laat zien wat het hoogheemraadschap komend jaar gaat doen en wat daarvan de kosten zijn:
- We onderhouden onze dijken, kades en duinen
- We richten het gebied beter in en bouwen nieuwe gemalen om overtollig water beter af te voeren.
- We gaan onze afvalwaterzuiveringen verder verbeteren.
- We werken samen met verschillende bedrijven en organisatie voor een betere waterkwaliteit van het oppervlaktewater
- We kijken goed naar hoeveel geld we uitgeven, zonder in te leveren op de kwaliteit van ons werk.
Bekijk de concept begroting op hhdelfland.nl/begroting
#begroting #waterschap #delfland #waterveiligheid #waterkwaliteit #klimaatadaptatie #afvalwaterzuiveren #kostenbesparen
#begroting #waterschap #delfland #waterveiligheid #waterkwaliteit #klimaatadaptatie #afvalwaterzuiveren #kostenbesparen'
published_at: '2025-11-14T07:02:07Z'
duration: PT1M25S
definition: hd
@ -697,12 +704,13 @@ youtube_enrichment:
- video_id: ur1IYVwq9qY
video_url: https://www.youtube.com/watch?v=ur1IYVwq9qY
title: 'Ook ondernemend Delfland #Weerkrachtig | Ben jij het al? | Bereid je voor'
description: |-
👉 Kijk opklimaatkrachtig.nl
description: '👉 Kijk opklimaatkrachtig.nl
Ben jij al voorbereid op extreem weer. Weet wat er kan gebeuren en wat je dan doet. Samen maken we onze regio weerkrachtig.
#weerkrachtig #klimaatkrachtig #wateroverlast #delfland#weekvanonswater
#weerkrachtig #klimaatkrachtig #wateroverlast #delfland#weekvanonswater'
published_at: '2025-10-22T13:16:59Z'
duration: PT50S
definition: hd
@ -731,10 +739,11 @@ youtube_enrichment:
- video_id: SGM197xCjyE
video_url: https://www.youtube.com/watch?v=SGM197xCjyE
title: Werken bij Delfland - Rens Blenk
description: |-
“In 5 jaar tijd heb ik mooie stappen gemaakt binnen Delfland. De kansen voor ontwikkeling én de trots om bij te dragen aan mens en natuur maken dit werk bijzonder.” Rens, processpecialist bij Delfland
description: '“In 5 jaar tijd heb ik mooie stappen gemaakt binnen Delfland. De kansen voor ontwikkeling én de trots om
bij te dragen aan mens en natuur maken dit werk bijzonder.” Rens, processpecialist bij Delfland
👉 Ontdek jouw mogelijkheden bij Delfland en bekijk de vacatures op www.werkenbijdelfland.nl
👉 Ontdek jouw mogelijkheden bij Delfland en bekijk de vacatures op www.werkenbijdelfland.nl'
published_at: '2025-10-21T05:30:32Z'
duration: PT8S
definition: hd
@ -1020,10 +1029,12 @@ youtube_enrichment:
- video_id: KKRIbG1j8yQ
video_url: https://www.youtube.com/watch?v=KKRIbG1j8yQ
title: 'Zomerserie Delfland #7'
description: |-
Het werk van Delfland gaat altijd door. Ook in de zomer waken we 24/7 over het waterpeil, inspecteren we dijken, onderhouden we waternatuur en verbeteren we onze gemalen. Zo blijft jouw vertrouwde omgeving veilig en leefbaar, ook als jij van je vakantie geniet.
description: 'Het werk van Delfland gaat altijd door. Ook in de zomer waken we 24/7 over het waterpeil, inspecteren we
dijken, onderhouden we waternatuur en verbeteren we onze gemalen. Zo blijft jouw vertrouwde omgeving veilig en leefbaar,
ook als jij van je vakantie geniet.
In de picture in het zevende deel van de zomerserie Delfland werkt door, ook inde zomer: Onze projectmanagers
In de picture in het zevende deel van de zomerserie Delfland werkt door, ook inde zomer: Onze projectmanagers'
published_at: '2025-08-26T10:00:00Z'
duration: PT1M24S
definition: hd
@ -1378,10 +1389,12 @@ youtube_enrichment:
- video_id: j-0jo_zo1JM
video_url: https://www.youtube.com/watch?v=j-0jo_zo1JM
title: 'Zomerserie Delfland #2'
description: |-
Het werk van Delfland gaat altijd door. Ook in de zomer waken we 24/7 over het waterpeil, inspecteren we dijken, onderhouden we waternatuur en verbeteren we onze gemalen. Zo blijft jouw vertrouwde omgeving veilig en leefbaar, ook als jij van je vakantie geniet.
description: 'Het werk van Delfland gaat altijd door. Ook in de zomer waken we 24/7 over het waterpeil, inspecteren we
dijken, onderhouden we waternatuur en verbeteren we onze gemalen. Zo blijft jouw vertrouwde omgeving veilig en leefbaar,
ook als jij van je vakantie geniet.
Vandaag in de picture 📸: Onze handhavers
Vandaag in de picture 📸: Onze handhavers'
published_at: '2025-07-29T07:15:45Z'
duration: PT1M23S
definition: hd
@ -1410,12 +1423,15 @@ youtube_enrichment:
- video_id: 4Jsqg07pQBM
video_url: https://www.youtube.com/watch?v=4Jsqg07pQBM
title: 'Zomerserie Delfland #1'
description: |-
Het werk van Delfland gaat altijd door. Ook in de zomer waken we 24/7 over het waterpeil, inspecteren we dijken, onderhouden we waternatuur en verbeteren we onze gemalen. Zo blijft jouw vertrouwde omgeving veilig en leefbaar, ook als jij van je vakantie geniet.
description: 'Het werk van Delfland gaat altijd door. Ook in de zomer waken we 24/7 over het waterpeil, inspecteren we
dijken, onderhouden we waternatuur en verbeteren we onze gemalen. Zo blijft jouw vertrouwde omgeving veilig en leefbaar,
ook als jij van je vakantie geniet.
Vandaag in de picture 📸: ons Servicepunt
#zomerwerk #zomervakantie #delfland
#zomerwerk #zomervakantie #delfland'
published_at: '2025-07-22T07:28:29Z'
duration: PT1M11S
definition: hd
@ -1669,13 +1685,16 @@ youtube_enrichment:
- video_id: W_ngCC8cyA4
video_url: https://www.youtube.com/watch?v=W_ngCC8cyA4
title: Senior Procestechnoloog bij Delfland Maak impact in waterbeheer
description: |-
Ben jij de senior procestechnoloog die innovatie brengt in waterzuivering? Bij Delfland draag je elke dag bij aan schoon en veilig water. Jouw technische kennis en ervaring maken onze regio duurzaam en toekomstbestendig.
description: 'Ben jij de senior procestechnoloog die innovatie brengt in waterzuivering? Bij Delfland draag je elke dag
bij aan schoon en veilig water. Jouw technische kennis en ervaring maken onze regio duurzaam en toekomstbestendig.
Ontdek meer over deze uitdagende rol en solliciteer direct via:
👉 https://www.hhdelfland.nl/werken-bij-delfland/vacatures/senior-procestechnoloog/
#WerkenBijDelfland #SeniorProcestechnoloog #Vacature #Waterbeheer #Duurzaamheid #Procestechnologie
#WerkenBijDelfland #SeniorProcestechnoloog #Vacature #Waterbeheer #Duurzaamheid #Procestechnologie'
published_at: '2025-05-06T19:17:24Z'
duration: PT37S
definition: hd
@ -1814,13 +1833,16 @@ youtube_enrichment:
- video_id: lW0YOV9xxsw
video_url: https://www.youtube.com/watch?v=lW0YOV9xxsw
title: Werken bij Delfland - Wat jij doet, doet ertoe!
description: |-
Wat jij doet, doet ertoe! 🌊
Bij Delfland werk je aan schoon water, veilige dijken en een duurzame leefomgeving. Wil jij ook impact maken in jouw regio? Ontdek hoe jouw werk verschil kan maken. Bekijk onze vacatures en vind jouw plek bij Delfland!
description: 'Wat jij doet, doet ertoe! 🌊
Bij Delfland werk je aan schoon water, veilige dijken en een duurzame leefomgeving. Wil jij ook impact maken in jouw
regio? Ontdek hoe jouw werk verschil kan maken. Bekijk onze vacatures en vind jouw plek bij Delfland!
👉 Klik hier voor meer informatie: www.werkenbijdelfland.nl
#WerkenBijDelfland #DuurzameToekomst #Waterbeheer #VacaturesDelfland
#WerkenBijDelfland #DuurzameToekomst #Waterbeheer #VacaturesDelfland'
published_at: '2025-01-20T13:53:30Z'
duration: PT1M35S
definition: hd
@ -1849,14 +1871,22 @@ youtube_enrichment:
- video_id: DSWwbrLHFJY
video_url: https://www.youtube.com/watch?v=DSWwbrLHFJY
title: Wrap up video Delfland 735 jaar
description: |-
In 2024 bestond het Hoogheemraadschap van Delfland 735 jaar! Een heel jaar lang keken we samen met inwoners en partners terug op de eeuwen die achter ons liggen. We herbeleefden hoe we steeds opnieuw inspeelden op veranderingen in ons gebied, nieuwe technische mogelijkheden en belangrijke maatschappelijke ontwikkelingen. Zo zorgden we ervoor dat je in ons gebied veilig kon wonen.
description: 'In 2024 bestond het Hoogheemraadschap van Delfland 735 jaar! Een heel jaar lang keken we samen met inwoners
en partners terug op de eeuwen die achter ons liggen. We herbeleefden hoe we steeds opnieuw inspeelden op veranderingen
in ons gebied, nieuwe technische mogelijkheden en belangrijke maatschappelijke ontwikkelingen. Zo zorgden we ervoor
dat je in ons gebied veilig kon wonen.
Ook in de komende jaren blijven we dat doen. Dat wordt niet makkelijk, want onze uitdagingen zijn groter dan ooit. Zo moeten we bijvoorbeeld de kwaliteit van het water verder verbeteren. Daarnaast moeten we ons gebied aanpassen aan hevige regenbuien en lange periodes van droogte, die het gevolg zijn van ons veranderende klimaat.
Onze dijkgraaf, Piet-Hein Daverveldt, vertelt hoe we samen met inwoners, gemeenten, bedrijven en andere partijen aan deze uitdagingen willen werken. Hij sluit ons jubileumjaar af 👇
Ook in de komende jaren blijven we dat doen. Dat wordt niet makkelijk, want onze uitdagingen zijn groter dan ooit. Zo
moeten we bijvoorbeeld de kwaliteit van het water verder verbeteren. Daarnaast moeten we ons gebied aanpassen aan hevige
regenbuien en lange periodes van droogte, die het gevolg zijn van ons veranderende klimaat.
Wil je meer weten over de 735-jarige historie van Delfland? Dat kan via: https://lnkd.in/d_yD9hys
Onze dijkgraaf, Piet-Hein Daverveldt, vertelt hoe we samen met inwoners, gemeenten, bedrijven en andere partijen aan
deze uitdagingen willen werken. Hij sluit ons jubileumjaar af 👇
Wil je meer weten over de 735-jarige historie van Delfland? Dat kan via: https://lnkd.in/d_yD9hys'
published_at: '2024-12-19T08:25:50Z'
duration: PT2M12S
definition: hd
@ -1979,11 +2009,14 @@ youtube_enrichment:
- video_id: Y1GaQ6A02PU
video_url: https://www.youtube.com/watch?v=Y1GaQ6A02PU
title: 'Werken bij Delfland: Juridisch adviseur Henriëtte'
description: |-
Henriëtte is enthousiast over haar baan bij HH Delfland: De ene dag adviseer ik een vergunningverlener, de andere dag werk ik met een omgevingsmanager. Ik werk zowel op kantoor als thuis. We maken goede afspraken met elkaar over het op afstand werken. Daardoor is het goed te combineren met mijn gezinsleven.
description: 'Henriëtte is enthousiast over haar baan bij HH Delfland: De ene dag adviseer ik een vergunningverlener,
de andere dag werk ik met een omgevingsmanager. Ik werk zowel op kantoor als thuis. We maken goede afspraken met elkaar
over het op afstand werken. Daardoor is het goed te combineren met mijn gezinsleven.
www.werkenbijdelfland.nl
#werkenbijdelfland #juristen #juridischevacature
#werkenbijdelfland #juristen #juridischevacature'
published_at: '2024-10-22T14:51:37Z'
duration: PT31S
definition: hd
@ -2012,11 +2045,14 @@ youtube_enrichment:
- video_id: i4Cq6N973hw
video_url: https://www.youtube.com/watch?v=i4Cq6N973hw
title: 'Werken bij Delfland: Senior juridisch adviseur Tine'
description: |-
In deze video vertelt Tine over haar werk als jurist bij HH Delfland: Ik vind het fijn om maatschappelijk relevant bezig te zijn als jurist. En om interessant werk te doen waar ik elke dag wat van leer. En dat op een prachtige werkplek.
description: 'In deze video vertelt Tine over haar werk als jurist bij HH Delfland: Ik vind het fijn om maatschappelijk
relevant bezig te zijn als jurist. En om interessant werk te doen waar ik elke dag wat van leer. En dat op een prachtige
werkplek.
www.werkenbijdelfland.nl
#werkenbijdelfland #juristen #juridischevacature
#werkenbijdelfland #juristen #juridischevacature'
published_at: '2024-10-22T14:48:50Z'
duration: PT31S
definition: hd
@ -2262,13 +2298,18 @@ youtube_enrichment:
- video_id: X9EE54FC7Uc
video_url: https://www.youtube.com/watch?v=X9EE54FC7Uc
title: 'Delfand Wrapped 2023 | #wrapped #shorts'
description: |-
Wat doet een waterschap eigenlijk zoal? Ontdek het in onze Delfland Wrapped 2023 🤩
description: 'Wat doet een waterschap eigenlijk zoal? Ontdek het in onze Delfland Wrapped 2023 🤩
Van het werken aan droge voeten en stevige dijken, tot het netjes houden van sloten en vaarten en het uitwerken van duurzame oplossingen. We verzamelden indrukwekkende cijfers van het werk dat we zoal gedaan hebben in het afgelopen jaar. En dat is nogal wat. 💪
Bekijk de volledige Delfland Wrapped 2023, met nog meer info en interessante linkjes, in onze Highlight op Instagram ✨
👉 https://www.instagram.com/stories/highlights/17866192263039979/
Van het werken aan droge voeten en stevige dijken, tot het netjes houden van sloten en vaarten en het uitwerken van
duurzame oplossingen. We verzamelden indrukwekkende cijfers van het werk dat we zoal gedaan hebben in het afgelopen
jaar. En dat is nogal wat. 💪
Bekijk de volledige Delfland Wrapped 2023, met nog meer info en interessante linkjes, in onze Highlight op Instagram
👉 https://www.instagram.com/stories/highlights/17866192263039979/'
published_at: '2023-12-22T09:00:31Z'
duration: PT59S
definition: hd
@ -2468,10 +2509,13 @@ youtube_enrichment:
- video_id: eyOpy-Qsn5Y
video_url: https://www.youtube.com/watch?v=eyOpy-Qsn5Y
title: Wat een water! 🌊 | Hoogwater in Delfland na hevige regenval
description: |-
In de nacht van 2 op 3 november 2023 is er ruim 50mm regenwater gevallen. Hierdoor kwam het water in sloten en watergangen erg hoog te staan.
description: 'In de nacht van 2 op 3 november 2023 is er ruim 50mm regenwater gevallen. Hierdoor kwam het water in sloten
en watergangen erg hoog te staan.
Onze gebiedsbeheerders, peilbeheerders en handhavers werkten vrijdag 3 november 2023 hard om het water weg te pompen of om het tijdelijk in waterbergingen te laten stromen. Zo maken we in grote vaarten ruimte voor al het regenwater dat we uit lager gebied via die vaarten weg willen pompen. De kans op wateroverlast wordt hiermee verkleind.
Onze gebiedsbeheerders, peilbeheerders en handhavers werkten vrijdag 3 november 2023 hard om het water weg te pompen
of om het tijdelijk in waterbergingen te laten stromen. Zo maken we in grote vaarten ruimte voor al het regenwater dat
we uit lager gebied via die vaarten weg willen pompen. De kans op wateroverlast wordt hiermee verkleind.'
published_at: '2023-11-03T16:22:08Z'
duration: PT41S
definition: hd
@ -2743,11 +2787,14 @@ youtube_enrichment:
- video_id: zaxYyT3mKtQ
video_url: https://www.youtube.com/watch?v=zaxYyT3mKtQ
title: Het Grote Delfland Waterschapsverkiezingsdebat 2023
description: |-
In samenwerking met Omroep West organiseert het Hoogheemraadschap van Delfland op 7 maart 2023 het Grote Delfland Waterschapsverkiezingsdebat. Alle twaalf partijen die deelnemen aan de waterschapsverkiezingen bij Delfland, debatteren deze avond over thema's en dilemma's die kiezers bezighouden. Er valt wat te kiezen!
description: 'In samenwerking met Omroep West organiseert het Hoogheemraadschap van Delfland op 7 maart 2023 het Grote
Delfland Waterschapsverkiezingsdebat. Alle twaalf partijen die deelnemen aan de waterschapsverkiezingen bij Delfland,
debatteren deze avond over thema''s en dilemma''s die kiezers bezighouden. Er valt wat te kiezen!
Kijk vanaf 11 maart het waterschapsverkiezingsdebat terug bij Omroep West
#delflandkiest #wsv2023 #waterschapsverkiezingen2023
#delflandkiest #wsv2023 #waterschapsverkiezingen2023'
published_at: '2023-03-08T10:46:15Z'
duration: PT41S
definition: hd
@ -2776,18 +2823,23 @@ youtube_enrichment:
- video_id: RiVxdz0wEXA
video_url: https://www.youtube.com/watch?v=RiVxdz0wEXA
title: 'Willem Goedknegt: Hergebruik technische installatiedelen ⚙️'
description: |-
❓ Wist je dat we technische installatiedelen hergebruiken?
description: '❓ Wist je dat we technische installatiedelen hergebruiken?
🔩 Zo herstellen we bijvoorbeeld defecte pompsnelheidsregelaars.
Wij benaderen andere waterschappen zodat reservedelen die bij ons overbodig geworden zijn hergebruikt kunnen worden.
♻️ Dankzij levensduur verlengend onderhoud begint de overbodig geraakte Warmte Kracht installatie van de Nieuwe Waterweg straks aan een 3e levenscyclus.'
♻️ Dankzij levensduur verlengend onderhoud begint de overbodig geraakte Warmte Kracht installatie van de Nieuwe Waterweg
straks aan een 3e levenscyclus.''
Lees meer over onze circulaire projecten: https://lnkd.in/eY_KRjFs
#WeekVanDeCirculaireEconomie
#WeekVanDeCirculaireEconomie'
published_at: '2023-02-09T11:45:43Z'
duration: PT41S
definition: hd
@ -3468,9 +3520,12 @@ youtube_enrichment:
- video_id: 0SyNLe0EudQ
video_url: https://www.youtube.com/watch?v=0SyNLe0EudQ
title: Schoon water voor iedereen. Door iedereen.
description: |-
Delfland werkt elke dag aan het verbeteren van de waterkwaliteit. En dat blijven we doen. Maar… we kunnen het niet alleen. Iedereen in ons gebied kan en moet helpen om ons zoete oppervlaktewater schoon, gezond en levend te houden. Tuinders, vissers, wandelaars, boeren, zwemmers, booteigenaren, natuurgenieters en inwoners kunnen met kleine en grote acties helpen. Een supper, hondeneigenaar en ecoloog tonen wat zij doen om de waterkwaliteit te verbeteren.
www.hhdelfland.nl/schoonwater
description: 'Delfland werkt elke dag aan het verbeteren van de waterkwaliteit. En dat blijven we doen. Maar… we kunnen
het niet alleen. Iedereen in ons gebied kan en moet helpen om ons zoete oppervlaktewater schoon, gezond en levend te
houden. Tuinders, vissers, wandelaars, boeren, zwemmers, booteigenaren, natuurgenieters en inwoners kunnen met kleine
en grote acties helpen. Een supper, hondeneigenaar en ecoloog tonen wat zij doen om de waterkwaliteit te verbeteren.
www.hhdelfland.nl/schoonwater'
published_at: '2022-09-06T07:27:57Z'
duration: PT49S
definition: hd
@ -3563,9 +3618,11 @@ youtube_enrichment:
- video_id: AvXEff3F4lQ
video_url: https://www.youtube.com/watch?v=AvXEff3F4lQ
title: De Small Five van Delfland
description: |-
Als het goed gaat met de Small Five van Delfland gaat het goed met de #biodiversiteit in ons gebied. Samen met het @Deltaplan Biodiversiteitsherstel en 80+ aangesloten partners zetten wij ons structureel in voor #biodiversiteitsherstel in Nederland.
Wil je weten wat jij kan doen om te vergroenen💚? Kijk op www.maakgrijsgroener.nl en doe de biodiversiteitswijzer.
description: 'Als het goed gaat met de Small Five van Delfland gaat het goed met de #biodiversiteit in ons gebied. Samen
met het @Deltaplan Biodiversiteitsherstel en 80+ aangesloten partners zetten wij ons structureel in voor #biodiversiteitsherstel
in Nederland.
Wil je weten wat jij kan doen om te vergroenen💚? Kijk op www.maakgrijsgroener.nl en doe de biodiversiteitswijzer.'
published_at: '2022-05-22T11:51:01Z'
duration: PT2M28S
definition: hd
@ -3698,15 +3755,22 @@ youtube_enrichment:
- video_id: IHj8mC8f1ag
video_url: https://www.youtube.com/watch?v=IHj8mC8f1ag
title: 'Webinar: hoe werkt een afvalwaterzuivering?'
description: |-
In deze webinar krijg je een kijkje achter de schermen bij de afvalwaterzuivering. Specialist Mariska Ronteltap vertelt:
description: 'In deze webinar krijg je een kijkje achter de schermen bij de afvalwaterzuivering. Specialist Mariska Ronteltap
vertelt:
- hoe het water bij de zuivering komt;
- wat er allemaal in het afvalwater zit;
- waarom een goed werkend riool zo belangrijk is;
- wat er allemaal komt kijken bij het zuiveren van afvalwater;
- de toekomst van het afvalwater
- en hoe duurzaamheid een steeds grotere rol speelt.
Een interessant kijkje achter de schermen van een wereld die voor velen onbekend is, maar ontzettend belangrijk is!
Een interessant kijkje achter de schermen van een wereld die voor velen onbekend is, maar ontzettend belangrijk is!'
published_at: '2022-02-17T09:11:59Z'
duration: PT44M23S
definition: hd
@ -3735,9 +3799,10 @@ youtube_enrichment:
- video_id: tc222yAeS7U
video_url: https://www.youtube.com/watch?v=tc222yAeS7U
title: Maak ruimte voor water
description: |-
Hitte, droogte, hevige regen; het weer verandert sterk. Water is daarom niet voor later. Water speelt vandaag. Maak ruimte voor water. Wij werken daarin graag samen. Lees hoe je dat met ons kunt doen.
#Maakruimtevoorwater
description: 'Hitte, droogte, hevige regen; het weer verandert sterk. Water is daarom niet voor later. Water speelt vandaag.
Maak ruimte voor water. Wij werken daarin graag samen. Lees hoe je dat met ons kunt doen.
#Maakruimtevoorwater'
published_at: '2022-02-07T10:05:00Z'
duration: PT1M58S
definition: hd
@ -3878,9 +3943,11 @@ youtube_enrichment:
- video_id: yebhqiCSIks
video_url: https://www.youtube.com/watch?v=yebhqiCSIks
title: Challenge voor verbetering waterkwaliteit glastuinbouwgebieden
description: |-
Het samenwerkingsverband Emissieloze Kas stelt € 45.000,- beschikbaar voor innovatieve en praktische oplossingen voor het tegengaan van lekkages van gewasbeschermingsmiddelen en voedingsstoffen naar het water in de glastuinbouwgebieden Oostland en Westland.
Je idee indienen kan tot 31 januari 2021 en op 15 maart 2022 worden de winnaar(s) bekend gemaakt.
description: 'Het samenwerkingsverband Emissieloze Kas stelt € 45.000,- beschikbaar voor innovatieve en praktische oplossingen
voor het tegengaan van lekkages van gewasbeschermingsmiddelen en voedingsstoffen naar het water in de glastuinbouwgebieden
Oostland en Westland.
Je idee indienen kan tot 31 januari 2021 en op 15 maart 2022 worden de winnaar(s) bekend gemaakt.'
published_at: '2021-12-16T17:08:31Z'
duration: PT1M54S
definition: hd
@ -4012,9 +4079,9 @@ youtube_enrichment:
- video_id: NrTsUltjEE8
video_url: https://www.youtube.com/watch?v=NrTsUltjEE8
title: De Kracht van het water
description: |-
Virtuele tentoonstelling Sint Elisabethsvloed, 600 jaar geleden
Beleef het: https://sint-elisabethsvloed.theimagineers.com/tour
description: 'Virtuele tentoonstelling Sint Elisabethsvloed, 600 jaar geleden
Beleef het: https://sint-elisabethsvloed.theimagineers.com/tour'
published_at: '2021-10-19T10:39:36Z'
duration: PT1M49S
definition: hd
@ -4139,10 +4206,15 @@ youtube_enrichment:
- video_id: DdHcuZ2dV7A
video_url: https://www.youtube.com/watch?v=DdHcuZ2dV7A
title: 'Ontdek de Small Five van Delfland: de Rugstreeppad 🐸'
description: |-
De rugstreeppad is één van de small five van Delfland: de icoonsoorten waarop wij ons richten bij onze inspanningen voor het biodiversiteitsherstel. Als het goed gaat met de small five, gaat het goed met de biodiversiteit in ons gebied.
description: 'De rugstreeppad is één van de small five van Delfland: de icoonsoorten waarop wij ons richten bij onze inspanningen
voor het biodiversiteitsherstel. Als het goed gaat met de small five, gaat het goed met de biodiversiteit in ons gebied.
De rugstreeppad is een middelgrote lichtbruine pad met een kenmerkende gele streep op zijn rug. Hij kent in Nederland drie belangrijke verspreidingskernen: de duinen, het rivierengebied en polders in West-Nederland en de Noordoostpolder. Voor de voortplanting is de rugstreeppad afhankelijk van ondiepe wateren, die vrij snel opwarmen. De rugstreeppad staat op de rode lijst van amfibieën en wordt aangemerkt als gevoelig. Hij heeft baat bij onze inspanningen voor gezonde, dynamische duinen met schoon duinwater.
De rugstreeppad is een middelgrote lichtbruine pad met een kenmerkende gele streep op zijn rug. Hij kent in Nederland
drie belangrijke verspreidingskernen: de duinen, het rivierengebied en polders in West-Nederland en de Noordoostpolder.
Voor de voortplanting is de rugstreeppad afhankelijk van ondiepe wateren, die vrij snel opwarmen. De rugstreeppad staat
op de rode lijst van amfibieën en wordt aangemerkt als gevoelig. Hij heeft baat bij onze inspanningen voor gezonde,
dynamische duinen met schoon duinwater.'
published_at: '2021-09-28T14:17:10Z'
duration: PT3M46S
definition: hd
@ -4171,17 +4243,29 @@ youtube_enrichment:
- video_id: gR1YSXzphCg
video_url: https://www.youtube.com/watch?v=gR1YSXzphCg
title: Win een zeilles van olympisch kampioen Marit Bouwmeester
description: |-
Laat net als olympische zeilkampioen Marit Bouwmeester en dijkgraaf Piet-Hein Daverveldt zien dat jij een Waterbaas bent. Schep mee voor schoon water of vergroen je tuin of wijk voor droge voeten. Plaats jouw Waterbazenfoto of -video op Facebook of Instagram met #WaterbaasDelfland.
description: 'Laat net als olympische zeilkampioen Marit Bouwmeester en dijkgraaf Piet-Hein Daverveldt zien dat jij een
Waterbaas bent. Schep mee voor schoon water of vergroen je tuin of wijk voor droge voeten. Plaats jouw Waterbazenfoto
of -video op Facebook of Instagram met #WaterbaasDelfland.
Deel hoe jij de sloot of zwemplas schoonhoudt door zwerfafval op te ruimen. Of laat zien op welke manier jij regenwater
opvangt en zo de kans op wateroverlast vermindert. Wie weet heb je een ander idee, en ben jij een Waterbaas door de
veiligheid van onze dijken in de gaten te houden.
Deel hoe jij de sloot of zwemplas schoonhoudt door zwerfafval op te ruimen. Of laat zien op welke manier jij regenwater opvangt en zo de kans op wateroverlast vermindert. Wie weet heb je een ander idee, en ben jij een Waterbaas door de veiligheid van onze dijken in de gaten te houden.
Doe dat op een originele, gekke, spannende (en veilige!) manier en maak daar een foto of video van.
De vier opvallendste inzendingen die laten zien dat zij een echte Waterbaas zijn, winnen een zeilles van olympisch kampioen Marit. Opvallen doe je door meeste likes te verzamelen of met een originele, creatieve actie of inzending.
Marit Bouwmeester woont in Scheveningen en nam driemaal deel aan de Olympische Spelen. Ze won achtereenvolgens zilver (2012) en goud (2016), en bij de Olympische Spelen van 2021 in Tokyo behaalde ze een bronzen medaille! Wat een Waterbaas! Marit is waterambassadeur van Dutch Wavemakers. Met haar passie voor water stimuleert ze anderen ook zorgvuldig om te gaan met water.
De vier opvallendste inzendingen die laten zien dat zij een echte Waterbaas zijn, winnen een zeilles van olympisch kampioen
Marit. Opvallen doe je door meeste likes te verzamelen of met een originele, creatieve actie of inzending.
* Bekijk de actievoorwaarden op www.hhdelfland.nl/waterbazen *
Marit Bouwmeester woont in Scheveningen en nam driemaal deel aan de Olympische Spelen. Ze won achtereenvolgens zilver
(2012) en goud (2016), en bij de Olympische Spelen van 2021 in Tokyo behaalde ze een bronzen medaille! Wat een Waterbaas!
Marit is waterambassadeur van Dutch Wavemakers. Met haar passie voor water stimuleert ze anderen ook zorgvuldig om te
gaan met water.
* Bekijk de actievoorwaarden op www.hhdelfland.nl/waterbazen *'
published_at: '2021-09-18T07:20:59Z'
duration: PT1M44S
definition: hd
@ -4210,10 +4294,13 @@ youtube_enrichment:
- video_id: aa1zbZ9q0vE
video_url: https://www.youtube.com/watch?v=aa1zbZ9q0vE
title: 'Ontdek de Small Five van Delfland: de Glassnijder'
description: |-
De glassnijder is één van de small five van Delfland: de icoonsoorten waarop wij ons richten bij onze inspanningen voor het biodiversiteitsherstel. Als het goed gaat met de small five, gaat het goed met de biodiversiteit in ons gebied.
description: 'De glassnijder is één van de small five van Delfland: de icoonsoorten waarop wij ons richten bij onze inspanningen
voor het biodiversiteitsherstel. Als het goed gaat met de small five, gaat het goed met de biodiversiteit in ons gebied.
De glassnijder is een vrij kleine libel die in Zuid-Holland voorkomt in schone, heldere wateren met een goed ontwikkelde oevervegetatie. Zijn leefgebied kenmerkt zich door voldoende waterkwaliteit, rijkelijk begroeide natuurvriendelijke oevers en veel onderwaterplanten. Hij is daarmee typisch het symbool voor onze inspanningen voor een natuurlijk watersysteem.
De glassnijder is een vrij kleine libel die in Zuid-Holland voorkomt in schone, heldere wateren met een goed ontwikkelde
oevervegetatie. Zijn leefgebied kenmerkt zich door voldoende waterkwaliteit, rijkelijk begroeide natuurvriendelijke
oevers en veel onderwaterplanten. Hij is daarmee typisch het symbool voor onze inspanningen voor een natuurlijk watersysteem.'
published_at: '2021-08-25T07:58:10Z'
duration: PT3M44S
definition: hd
@ -4273,10 +4360,12 @@ youtube_enrichment:
- video_id: 0PBPQ8pLjXU
video_url: https://www.youtube.com/watch?v=0PBPQ8pLjXU
title: AWZI Houtrust is de duurzaamste zuivering van Delfland. De Waterslagtoren krijgt iconische print.
description: |-
Het Hoogheemraadschap van Delfland en Delfluent Services BV werkten de afgelopen maanden hard aan het verduurzamen van AWZI Houtrust in Den Haag. Het project is nu afgerond. Hiermee is Houtrust de meest duurzame zuivering van Delfland. Om dit te vieren is de waterslagtoren aan de Houtrustweg beschilderd door het kunstenaarsduo Karski&Beyond van MooieMuur.nl.
description: 'Het Hoogheemraadschap van Delfland en Delfluent Services BV werkten de afgelopen maanden hard aan het verduurzamen
van AWZI Houtrust in Den Haag. Het project is nu afgerond. Hiermee is Houtrust de meest duurzame zuivering van Delfland.
Om dit te vieren is de waterslagtoren aan de Houtrustweg beschilderd door het kunstenaarsduo Karski&Beyond van MooieMuur.nl.
www.hhdelfland.nl/awzihoutrust
www.hhdelfland.nl/awzihoutrust'
published_at: '2021-07-29T09:58:49Z'
duration: PT1M24S
definition: hd
@ -4753,14 +4842,23 @@ youtube_enrichment:
- video_id: 0XdPImr2gIg
video_url: https://www.youtube.com/watch?v=0XdPImr2gIg
title: Plasticvangers in de Schie
description: |-
In de Schie liggen sinds kort drie plasticvangers die het drijfvuil in de Keilehaven en de Schie opvangen. De plasticvangers zorgen ervoor dat plastic niet kan doorstromen naar de Noordzee 🌊. Het opgevangen plastic wordt gebruikt om nieuwe duurzame producten te maken ♻️.
description: 'In de Schie liggen sinds kort drie plasticvangers die het drijfvuil in de Keilehaven en de Schie opvangen.
De plasticvangers zorgen ervoor dat plastic niet kan doorstromen naar de Noordzee 🌊. Het opgevangen plastic wordt gebruikt
om nieuwe duurzame producten te maken ♻️.
Ramon Knoester: “De plasticvangers vangen het drijfvuil op door gebruik te maken van de stroming van het water en de meest voorkomende windrichting. We verwachten per maand 150 kg drijfvuil uit het water te halen. Al het vuil wordt gesorteerd om zoveel mogelijk te #recyclen. Ook organisch materiaal.”
De drie plasticvangers zijn onderdeel van een bredere aanpak tegen zwerf- en drijfafval. Want inzet op het verwijderen van rivierafval is maar een onderdeel van de oplossing: voorkomen is beter dan genezen. Ook daar wordt de aankomende periode in Rotterdam aan gewerkt.
Ramon Knoester: “De plasticvangers vangen het drijfvuil op door gebruik te maken van de stroming van het water en de
meest voorkomende windrichting. We verwachten per maand 150 kg drijfvuil uit het water te halen. Al het vuil wordt gesorteerd
om zoveel mogelijk te #recyclen. Ook organisch materiaal.”
Het plaatsen van de plasticvangers is mogelijk gemaakt door CLEAR RIVERS in samenwerking met de Gemeente Rotterdam, Rotterdam Circulair, Cargill en HEBO Maritiemservice B.V.
De drie plasticvangers zijn onderdeel van een bredere aanpak tegen zwerf- en drijfafval. Want inzet op het verwijderen
van rivierafval is maar een onderdeel van de oplossing: voorkomen is beter dan genezen. Ook daar wordt de aankomende
periode in Rotterdam aan gewerkt.
Het plaatsen van de plasticvangers is mogelijk gemaakt door CLEAR RIVERS in samenwerking met de Gemeente Rotterdam,
Rotterdam Circulair, Cargill en HEBO Maritiemservice B.V.'
published_at: '2021-04-08T07:41:30Z'
duration: PT4M14S
definition: hd
@ -4877,9 +4975,11 @@ youtube_enrichment:
- video_id: 2T2VPo-o9pY
video_url: https://www.youtube.com/watch?v=2T2VPo-o9pY
title: '#WatWaterschappenWillen, Dijkgraaf Piet-Hein Daverveldt roept kabinet op water centraal te stellen.'
description: |-
Onze dijkgraaf Piet-Hein Daverveldt vraagt het nieuwe kabinet water écht centraal te stellen bij de ruimtelijke inrichting. Meer middelen zijn nodig om onze delta aan te passen aan het veranderende klimaat. #WatWaterschappenWillen #Wereldwaterdag
#WatWaterschappenWillen #WereldWaterdag
description: 'Onze dijkgraaf Piet-Hein Daverveldt vraagt het nieuwe kabinet water écht centraal te stellen bij de ruimtelijke
inrichting. Meer middelen zijn nodig om onze delta aan te passen aan het veranderende klimaat. #WatWaterschappenWillen
#Wereldwaterdag
#WatWaterschappenWillen #WereldWaterdag'
published_at: '2021-03-22T09:23:25Z'
duration: PT1M42S
definition: hd
@ -4942,10 +5042,15 @@ youtube_enrichment:
- video_id: lPpReG6xX5k
video_url: https://www.youtube.com/watch?v=lPpReG6xX5k
title: Groen licht voor Delfland
description: |-
Afgelopen week zijn op het dak van het Gemeenlandshuis aan de Phoenixstraat zonnepanelen geplaatst ☀️. Samen leveren deze 24.000kWh per jaar op en dat is voldoende om de verlichting in het hoofdkantoor van het Hoogheemraadschap van Delfland #klimaatneutraal te laten branden 💡🌍. De zonnepanelen brengen de CO2-uitstoot van #Delfland verder omlaag met 9 ton per jaar.
description: 'Afgelopen week zijn op het dak van het Gemeenlandshuis aan de Phoenixstraat zonnepanelen geplaatst ☀️. Samen
leveren deze 24.000kWh per jaar op en dat is voldoende om de verlichting in het hoofdkantoor van het Hoogheemraadschap
van Delfland #klimaatneutraal te laten branden 💡🌍. De zonnepanelen brengen de CO2-uitstoot van #Delfland verder omlaag
met 9 ton per jaar.
Hoogheemraad Ruud Egas: ”Delfland wil in 2025 #energieneutraal zijn en in 2050 klimaatneutraal. Daaraan werken wij op veel manieren. Door zuinig om te springen met #energie en #grondstoffen, door op onze zuiveringen groen gas te maken, #duurzaam in te kopen en door zoveel mogelijk #circulair te werken.''
Hoogheemraad Ruud Egas: ”Delfland wil in 2025 #energieneutraal zijn en in 2050 klimaatneutraal. Daaraan werken wij op
veel manieren. Door zuinig om te springen met #energie en #grondstoffen, door op onze zuiveringen groen gas te maken,
#duurzaam in te kopen en door zoveel mogelijk #circulair te werken.'''''
published_at: '2021-03-05T10:19:08Z'
duration: PT1M1S
definition: hd
@ -5003,14 +5108,27 @@ youtube_enrichment:
- video_id: 9BYhOoqwgTg
video_url: https://www.youtube.com/watch?v=9BYhOoqwgTg
title: Verkenning AWZI De Groote Lucht
description: |-
AWZI De Groote Lucht in Vlaardingen gaat op de schop. Het einde van de levensduur van deze zuivering is in zicht. Het Hoogheemraadschap van Delfland wil weten wat het beste is: grootschalige renovatie op de huidige locatie aan de Maassluissedijk of nieuwbouw op het terrein aan de overkant van de weg.
description: 'AWZI De Groote Lucht in Vlaardingen gaat op de schop. Het einde van de levensduur van deze zuivering is
in zicht. Het Hoogheemraadschap van Delfland wil weten wat het beste is: grootschalige renovatie op de huidige locatie
aan de Maassluissedijk of nieuwbouw op het terrein aan de overkant van de weg.
In 2028 moet in Vlaardingen een zuivering staan die weer zo'n 40 jaar mee kan. Een zuivering die het afvalwater van alle inwoners en bedrijven uit de omgeving goed schoonmaakt, voldoet aan alle wet- en regelgeving en die duurzaam is. En natuurlijk moet de zuivering passen in de omgeving.
Wij onderzoeken technische en onmogelijkheden van renovatie en van nieuwbouw en welke kosten en effecten dat met zich meebrengt. Daarnaast brengen we ook in beeld wat voor de omgeving de voors en tegens zijn van zowel nieuwbouw als renovatie en of nieuwbouw mogelijk is op de locatie aan de overzijde. Wij gaan daarover ook het gesprek aan met de belanghebbenden in de directe omgeving van beide terreinen. De belangen van de omgeving worden meegewogen in het besluit dat het algemeen bestuur van Delfland neemt over renovatie of nieuwbouw.
In 2028 moet in Vlaardingen een zuivering staan die weer zo''n 40 jaar mee kan. Een zuivering die het afvalwater van
alle inwoners en bedrijven uit de omgeving goed schoonmaakt, voldoet aan alle wet- en regelgeving en die duurzaam is.
En natuurlijk moet de zuivering passen in de omgeving.
Op AWZI De Groote Lucht maakt Delfland het afvalwater schoon van de inwoners en bedrijven in Vlaardingen, Schiedam, Maassluis en De Lier. Dat is belangrijk voor de volksgezondheid en de waterkwaliteit in het gebied. Om dat ook in de toekomst goed te blijven doen, werken wij nu de plannen uit voor een nieuwe of gerenoveerde zuivering. In 2021 neemt het algemeen bestuur van Delfland hiervoor de eerste benodigde besluiten.
Wij onderzoeken technische en onmogelijkheden van renovatie en van nieuwbouw en welke kosten en effecten dat met zich
meebrengt. Daarnaast brengen we ook in beeld wat voor de omgeving de voors en tegens zijn van zowel nieuwbouw als renovatie
en of nieuwbouw mogelijk is op de locatie aan de overzijde. Wij gaan daarover ook het gesprek aan met de belanghebbenden
in de directe omgeving van beide terreinen. De belangen van de omgeving worden meegewogen in het besluit dat het algemeen
bestuur van Delfland neemt over renovatie of nieuwbouw.
Op AWZI De Groote Lucht maakt Delfland het afvalwater schoon van de inwoners en bedrijven in Vlaardingen, Schiedam,
Maassluis en De Lier. Dat is belangrijk voor de volksgezondheid en de waterkwaliteit in het gebied. Om dat ook in de
toekomst goed te blijven doen, werken wij nu de plannen uit voor een nieuwe of gerenoveerde zuivering. In 2021 neemt
het algemeen bestuur van Delfland hiervoor de eerste benodigde besluiten.'
published_at: '2021-02-08T15:41:53Z'
duration: PT3M27S
definition: hd
@ -5266,10 +5384,14 @@ youtube_enrichment:
- video_id: T5RHf2wa4t8
video_url: https://www.youtube.com/watch?v=T5RHf2wa4t8
title: Gooi na het bakken of frituren je vet niet in het toilet of de gootsteen
description: |-
Wisten jullie dat er in december meer gefrituurd en gebakken wordt dan in de andere maanden? Hierbij wordt veel vet gebruikt. Dat zien de gemeenten en wij Delfland terug in het rioolstelsel, de rioolgemalen en op onze zuiveringen. Vet hoopt zich op en dat leidt tot verstoppingen en storingen in de rioolgemalen en in de afvalwaterzuiveringsinstallaties.
description: 'Wisten jullie dat er in december meer gefrituurd en gebakken wordt dan in de andere maanden? Hierbij wordt
veel vet gebruikt. Dat zien de gemeenten en wij Delfland terug in het rioolstelsel, de rioolgemalen en op onze zuiveringen.
Vet hoopt zich op en dat leidt tot verstoppingen en storingen in de rioolgemalen en in de afvalwaterzuiveringsinstallaties.
Hoogheemraad Ruud Egas roept daarom iedereen op het vet dat vrijkomt bij het bakken tijdens de feestdagen niet door de gootsteen of toilet te gooien, maar dit apart te houden en weg te gooien in de vuilnisbak of in te leveren. Dit deed hij terwijl hij bij een lokale horeca ondernemers langsging om te kijken hoe het vet daar wordt gescheiden.
Hoogheemraad Ruud Egas roept daarom iedereen op het vet dat vrijkomt bij het bakken tijdens de feestdagen niet door
de gootsteen of toilet te gooien, maar dit apart te houden en weg te gooien in de vuilnisbak of in te leveren. Dit deed
hij terwijl hij bij een lokale horeca ondernemers langsging om te kijken hoe het vet daar wordt gescheiden.'
published_at: '2020-12-16T15:12:22Z'
duration: PT1M39S
definition: hd
@ -5840,14 +5962,25 @@ youtube_enrichment:
- video_id: IQrWOCtJ48Y
video_url: https://www.youtube.com/watch?v=IQrWOCtJ48Y
title: Interreg NW Europe project BE-GOOD challenge SWWIM (Smart Waste Water Informative Management)
description: |-
As a regional water authority, one goal is to have sufficient and clean #surfacewater. To achieve this, we must take care of the transport and treatment of #wastewater. In doing so, we are strongly connected to the #municipalities, where all governmental departments have their own span of control and controlling systems are divided. There is a need of actual and verified information.
description: 'As a regional water authority, one goal is to have sufficient and clean #surfacewater. To achieve this,
we must take care of the transport and treatment of #wastewater. In doing so, we are strongly connected to the #municipalities,
where all governmental departments have their own span of control and controlling systems are divided. There is a need
of actual and verified information.
With our Interreg NW Europe project BE-GOOD challenge SWWIM (Smart Waste Water Informative Management), Delfland, the municipalities off The Hague and Vlaardingen and Hydrologic developed a data-centred solution that can help us improve the water system.
The SWIMM solution demonstrates that, once stakeholders start to regularly share data on a daily base, existing solutions provided by SMEs can quickly be “configured” to better solve complex urgent issues e.g. handling of waste water, effective decisions in times of water shortage or extreme rainfall. Once data from all water cycle partners is shared, we can start adapting available platforms for smarter water management.
With our Interreg NW Europe project BE-GOOD challenge SWWIM (Smart Waste Water Informative Management), Delfland, the
municipalities off The Hague and Vlaardingen and Hydrologic developed a data-centred solution that can help us improve
the water system.
It is our common goal to come to a single water cycle, so we need all organisations to join our effort to further build this integral information system.
The SWIMM solution demonstrates that, once stakeholders start to regularly share data on a daily base, existing solutions
provided by SMEs can quickly be “configured” to better solve complex urgent issues e.g. handling of waste water, effective
decisions in times of water shortage or extreme rainfall. Once data from all water cycle partners is shared, we can
start adapting available platforms for smarter water management.
It is our common goal to come to a single water cycle, so we need all organisations to join our effort to further build
this integral information system.'
published_at: '2020-09-21T13:32:07Z'
duration: PT2M16S
definition: hd
@ -6026,11 +6159,13 @@ youtube_enrichment:
- video_id: ze44KH7Xtbw
video_url: https://www.youtube.com/watch?v=ze44KH7Xtbw
title: Helga van Leur over de Delfland Klimaatquiz
description: |-
"Duurzaamheid, klimaatadaptatie, afkoppelen, verharding, grindkoffer, hydroblob..."
description: '"Duurzaamheid, klimaatadaptatie, afkoppelen, verharding, grindkoffer, hydroblob..."
Leuk al die klimaatwoorden, maar wat betekenen ze nu eigenlijk? 🤔
Tijd voor duidelijke taal! 💡
Test jouw kennis 👉 https://bit.ly/klimaatwoorden
Test jouw kennis 👉 https://bit.ly/klimaatwoorden'
published_at: '2020-07-23T12:17:54Z'
duration: PT34S
definition: hd
@ -6059,12 +6194,18 @@ youtube_enrichment:
- video_id: DQ0Gs03ApPE
video_url: https://www.youtube.com/watch?v=DQ0Gs03ApPE
title: Hoogheemraad Ruud Egas en Katja Kruit geven uitleg over brandstoffen, groen gas en groene waterstof
description: |-
Wij streven ernaar om in 2025 energieneutraal te zijn. We hebben al mooie stappen gezet door op onze afvalwaterzuiveringsinstallaties (AWZI) De Groote Lucht en Harnaschpolder biogas om te zetten in groen gas. Op AWZI Houtrust nemen wij eind dit jaar ook een groengasinstallatie in gebruik.
description: 'Wij streven ernaar om in 2025 energieneutraal te zijn. We hebben al mooie stappen gezet door op onze afvalwaterzuiveringsinstallaties
(AWZI) De Groote Lucht en Harnaschpolder biogas om te zetten in groen gas. Op AWZI Houtrust nemen wij eind dit jaar
ook een groengasinstallatie in gebruik.
De komende jaren werken wij voor onze energievoorziening aan méér groen gas, zonnecellen, aquathermie en wind- en zonne-energie op onze terreinen en gebouwen.
Wij werken intensief samen met de regio. Dat doen we door deel te nemen aan de regionale energiestrategie (RES) regio Rotterdam Den Haag. In deze video van RES Rotterdam Den Haag geven Ruud Egas en Katja Kruit van CE Delft uitleg over brandstoffen, groen gas en groene waterstof.
De komende jaren werken wij voor onze energievoorziening aan méér groen gas, zonnecellen, aquathermie en wind- en zonne-energie
op onze terreinen en gebouwen.
Wij werken intensief samen met de regio. Dat doen we door deel te nemen aan de regionale energiestrategie (RES) regio
Rotterdam Den Haag. In deze video van RES Rotterdam Den Haag geven Ruud Egas en Katja Kruit van CE Delft uitleg over
brandstoffen, groen gas en groene waterstof.'
published_at: '2020-07-21T13:29:42Z'
duration: PT2M56S
definition: hd
@ -6518,9 +6659,11 @@ youtube_enrichment:
- video_id: iFZU9qhSHGg
video_url: https://www.youtube.com/watch?v=iFZU9qhSHGg
title: red bull racing bij dijkmolen
description: |-
Onze Dijkmolen in Maasland was op zaterdag 25 januari decor bij opnames van @redbullracing voor de formule1 in Zandvoort. De dijk waar de racewagens op voorbij scheuren is een van de sterke dijken waarmee we wateroverlast tegengaan. Meer info
https://www.hhdelfland.nl/inwoner/wonen-aan-water/maaien-van-de-dijken
description: 'Onze Dijkmolen in Maasland was op zaterdag 25 januari decor bij opnames van @redbullracing voor de formule1
in Zandvoort. De dijk waar de racewagens op voorbij scheuren is een van de sterke dijken waarmee we wateroverlast tegengaan.
Meer info
https://www.hhdelfland.nl/inwoner/wonen-aan-water/maaien-van-de-dijken'
published_at: '2020-01-27T13:06:34Z'
duration: PT31S
definition: hd
@ -6604,17 +6747,23 @@ youtube_enrichment:
- video_id: IKXpBGKbxpQ
video_url: https://www.youtube.com/watch?v=IKXpBGKbxpQ
title: Open monumentendag 2019
description: |-
Wil je ook eens gluren achter de deuren? Kom dan langs bij de volgende monumenten tijdens @Open Monumentendag.
description: 'Wil je ook eens gluren achter de deuren? Kom dan langs bij de volgende monumenten tijdens @Open Monumentendag.
Het @Gemeenlandshuis van Delfland (Huyterhuis), Oude Delft 167, Delft is geopend op zaterdag 14 september van 10.00-16.30
uur en zondag 15 september van 11.00-16.30 uur.
Het @Gemeenlandshuis van Delfland (Huyterhuis), Oude Delft 167, Delft is geopend op zaterdag 14 september van 10.00-16.30 uur en zondag 15 september van 11.00-16.30 uur.
De volgende gemalen zijn zaterdag 14 september geopend van 11.00-16.00 uur:
- Gemaal Schaapwei en Plaspoel, Jaagpad 6, Rijswijk
- Gemaal Oude -en Nieuwe Broekpolder, Zwet, Kwintsheul
- Groeneveldsche Molen bestaat 300 jaar, Woudseweg 186, Schipluiden.
Tot ziens bij onze monumenten tijdens @Open Monumentenweekend 2019.
Tot ziens bij onze monumenten tijdens @Open Monumentenweekend 2019.'
published_at: '2019-09-09T12:09:03Z'
duration: PT38S
definition: hd
@ -7657,10 +7806,16 @@ youtube_enrichment:
- video_id: aVGJJ0Ab9gw
video_url: https://www.youtube.com/watch?v=aVGJJ0Ab9gw
title: Urban Waterbuffer - Spangen Rotterdam
description: |-
Stedelijke gebieden hebben steeds vaker te maken met wateroverlast door intense neerslag en watertekorten door langere droogte. Huidige oplossingen zijn gericht op afvoer en aanvoer en zijn vaak kostbaar en niet duurzaam. Hoe kunnen we regenwater in het stedelijke gebied langer en effectiever vasthouden in de ondergrond? En kunnen we het dan later weer nuttig inzetten? Dit onderzoeken we met verschillende waterbeheerders, bedrijven en instituten in het project Urban Waterbuffer.
description: 'Stedelijke gebieden hebben steeds vaker te maken met wateroverlast door intense neerslag en watertekorten
door langere droogte. Huidige oplossingen zijn gericht op afvoer en aanvoer en zijn vaak kostbaar en niet duurzaam.
Hoe kunnen we regenwater in het stedelijke gebied langer en effectiever vasthouden in de ondergrond? En kunnen we het
dan later weer nuttig inzetten? Dit onderzoeken we met verschillende waterbeheerders, bedrijven en instituten in het
project Urban Waterbuffer.
De Urban Waterbuffer is gerealiseerd door gemeente Rotterdam, het Hoogheemraadschap van Delfland en het TKI-consortium Urban Waterbuffer in samenwerking met de Cruyff Foundation, Evides Waterbedrijf, Stichting de Betrokken Spartaan, Sparta en bewonersinitiatief Natuurlijk Spangen.
De Urban Waterbuffer is gerealiseerd door gemeente Rotterdam, het Hoogheemraadschap van Delfland en het TKI-consortium
Urban Waterbuffer in samenwerking met de Cruyff Foundation, Evides Waterbedrijf, Stichting de Betrokken Spartaan, Sparta
en bewonersinitiatief Natuurlijk Spangen.'
published_at: '2018-06-21T11:48:33Z'
duration: PT1M53S
definition: hd
@ -7831,10 +7986,12 @@ youtube_enrichment:
- video_id: Th-AKGMORD4
video_url: https://www.youtube.com/watch?v=Th-AKGMORD4
title: Livestream verenigde vergadering van het Hoogheemraadschap van Delfland
description: |-
Op 19 november neemt de verenigde vergadering van Delfland een besluit over het versoberen van de kwijtschelding. Met de nieuwe regeling wordt de mogelijkheid om voor kwijtschelding van de zuiveringsheffing in aanmerking te komen in twee jaar tijd afgebouwd. De kwijtschelding van de watersysteemheffing blijft gehandhaafd.
description: 'Op 19 november neemt de verenigde vergadering van Delfland een besluit over het versoberen van de kwijtschelding.
Met de nieuwe regeling wordt de mogelijkheid om voor kwijtschelding van de zuiveringsheffing in aanmerking te komen
in twee jaar tijd afgebouwd. De kwijtschelding van de watersysteemheffing blijft gehandhaafd.
De vergadering start om 13:00 uur en is via deze livestream te bekijken.
De vergadering start om 13:00 uur en is via deze livestream te bekijken.'
published_at: '2018-05-30T10:52:12Z'
duration: P0D
definition: sd
@ -8052,10 +8209,13 @@ youtube_enrichment:
- video_id: JJy_8bkvFfs
video_url: https://www.youtube.com/watch?v=JJy_8bkvFfs
title: Maarten v.d. Weijden & Ingrid ter Woorst over start buitenzwemseizoen!
description: |-
Op 1 mei is het weer zover: dan start het buitenzwemseizoen! Dat betekent lekker buiten zwemmen op de 14 officiële zwemlocaties in ons gebied, die door Delfland worden gecontroleerd op waterkwaliteit.
description: 'Op 1 mei is het weer zover: dan start het buitenzwemseizoen! Dat betekent lekker buiten zwemmen op de 14
officiële zwemlocaties in ons gebied, die door Delfland worden gecontroleerd op waterkwaliteit.
Voor dit feestelijke moment gingen we langs bij niemand minder dan Olympisch Kampioen openwaterzwemmen Maarten van der Weijden en hoogheemraad Ingrid ter Woorst. Zij vertellen waarom het zo belangrijk is dat de kwaliteit van het zwemwater wordt gecontroleerd.
Voor dit feestelijke moment gingen we langs bij niemand minder dan Olympisch Kampioen openwaterzwemmen Maarten van der
Weijden en hoogheemraad Ingrid ter Woorst. Zij vertellen waarom het zo belangrijk is dat de kwaliteit van het zwemwater
wordt gecontroleerd.'
published_at: '2018-05-01T10:57:40Z'
duration: PT1M38S
definition: hd
@ -8081,10 +8241,13 @@ youtube_enrichment:
- video_id: Dc0qeTiuEhI
video_url: https://www.youtube.com/watch?v=Dc0qeTiuEhI
title: Maarten van der Weijden over start buitenzwemseizoen!
description: |-
Op 1 mei is het weer zover: dan start het buitenzwemseizoen! Dat betekent lekker buiten zwemmen op de 14 officiële zwemlocaties in ons gebied, die door Delfland worden gecontroleerd op waterkwaliteit.
description: 'Op 1 mei is het weer zover: dan start het buitenzwemseizoen! Dat betekent lekker buiten zwemmen op de 14
officiële zwemlocaties in ons gebied, die door Delfland worden gecontroleerd op waterkwaliteit.
Voor dit feestelijke moment gingen we langs bij niemand minder dan Olympisch Kampioen openwaterzwemmen Maarten van der Weijden. Hij vertelt wat zwemmen in natuurwater zo leuk maakt én waarom het zo belangrijk is dat de kwaliteit van het zwemwater wordt gecontroleerd. Tot slot heeft Maarten nog een speciale oproep voor jou!
Voor dit feestelijke moment gingen we langs bij niemand minder dan Olympisch Kampioen openwaterzwemmen Maarten van der
Weijden. Hij vertelt wat zwemmen in natuurwater zo leuk maakt én waarom het zo belangrijk is dat de kwaliteit van het
zwemwater wordt gecontroleerd. Tot slot heeft Maarten nog een speciale oproep voor jou!'
published_at: '2018-04-30T11:16:29Z'
duration: PT1M33S
definition: hd
@ -8211,14 +8374,30 @@ youtube_enrichment:
- video_id: UgMD--UTAh8
video_url: https://www.youtube.com/watch?v=UgMD--UTAh8
title: 'Primeur: eerste klimaatbestendige tramhalte van Nederland'
description: |-
De gemeente Delft heeft een primeur met de eerste klimaatbestendige tramhalte, direct tegenover station Delft CS. De tramhalte is met instemming van de regionale vervoersautoriteit en HTM zo gebouwd, dat op het dak water opgevangen kan worden. Het water wordt vervolgens langs dubbelwandige glasplaten langzaam afgevoerd in plantenbakken.
description: 'De gemeente Delft heeft een primeur met de eerste klimaatbestendige tramhalte, direct tegenover station
Delft CS. De tramhalte is met instemming van de regionale vervoersautoriteit en HTM zo gebouwd, dat op het dak water
opgevangen kan worden. Het water wordt vervolgens langs dubbelwandige glasplaten langzaam afgevoerd in plantenbakken.
Op dinsdag 3 april openden dijkgraaf Michiel van Haersma Buma en wethouder Stephan Brandligt deze speciale tramhalte. De halte staat symbool voor de noodzaak van een andere manier van inrichten van de openbare ruimte. Met deze speciale tramhalte wil het hoogheemraadschap van Delfland ideeën hiervoor onder de aandacht brengen van politieke partijen, die nu besprekingen voeren over de plannen van gemeenten voor de komende jaren.
Het gaat nu nog om een voorbeeld van hoe mooi je water kunt gebruiken in de openbare ruimte, waarmee water ook weer een zichtbare plek krijgt. In de nabije toekomst gaan we meer van dit soort oplossingen zien, als het aan hoogheemraadschap van Delfland ligt. De openbare ruimte gaat in de komende decennia namelijk ingrijpend veranderen. Dijkgraaf Michiel van Haersma Buma: “Daar zijn gemeenten, waterschappen en provincies het over eens. Zij hebben zich dan ook verbonden aan de ambitie om vanaf 2020 klimaat adaptief te handelen, zodat in 2050 het stedelijk gebied in Nederland klimaatbestendig, water- en hitte robuust ingericht is en beheerd wordt. Voorbeelden hiervan zijn het aanleggen van waterdoorlaatbare bestrating, meer groen en groenblauwe schoolpleinen. Met de klimaatbestendige tramhalte denkt Delfland dus al een stapje verder.”
Op dinsdag 3 april openden dijkgraaf Michiel van Haersma Buma en wethouder Stephan Brandligt deze speciale tramhalte.
De halte staat symbool voor de noodzaak van een andere manier van inrichten van de openbare ruimte. Met deze speciale
tramhalte wil het hoogheemraadschap van Delfland ideeën hiervoor onder de aandacht brengen van politieke partijen, die
nu besprekingen voeren over de plannen van gemeenten voor de komende jaren.
Het idee voor de klimaatbestendige tramhalte is ontstaan tijdens de Sustainable Business Challenge, waaraan Delfland afgelopen najaar meedeed. Jonge talenten studenten en pas afgestudeerden - wonnen deze wedstrijd met het idee voor een duurzaam bushokje.
Het gaat nu nog om een voorbeeld van hoe mooi je water kunt gebruiken in de openbare ruimte, waarmee water ook weer
een zichtbare plek krijgt. In de nabije toekomst gaan we meer van dit soort oplossingen zien, als het aan hoogheemraadschap
van Delfland ligt. De openbare ruimte gaat in de komende decennia namelijk ingrijpend veranderen. Dijkgraaf Michiel
van Haersma Buma: “Daar zijn gemeenten, waterschappen en provincies het over eens. Zij hebben zich dan ook verbonden
aan de ambitie om vanaf 2020 klimaat adaptief te handelen, zodat in 2050 het stedelijk gebied in Nederland klimaatbestendig,
water- en hitte robuust ingericht is en beheerd wordt. Voorbeelden hiervan zijn het aanleggen van waterdoorlaatbare
bestrating, meer groen en groenblauwe schoolpleinen. Met de klimaatbestendige tramhalte denkt Delfland dus al een stapje
verder.”
Het idee voor de klimaatbestendige tramhalte is ontstaan tijdens de Sustainable Business Challenge, waaraan Delfland
afgelopen najaar meedeed. Jonge talenten studenten en pas afgestudeerden - wonnen deze wedstrijd met het idee voor
een duurzaam bushokje.'
published_at: '2018-04-04T13:19:19Z'
duration: PT1M18S
definition: hd
@ -8247,10 +8426,16 @@ youtube_enrichment:
- video_id: _LyruJcA7RQ
video_url: https://www.youtube.com/watch?v=_LyruJcA7RQ
title: Oproep Michiel Buma voor cursus waterschapsbestuur Delfland
description: |-
Hoogheemraadschap van Delfland organiseert dit voorjaar een gratis introductiecursus voor mensen die interesse hebben in een bestuurlijke functie bij het Hoogheemraadschap. Belangstellenden kunnen zich tot en met 9 april 2018 aanmelden door een e-mail te sturen naar aanmelden@hhdelfland.nl. De cursus is ontwikkeld door ProDemos (het Huis van de Nederlandse democratie) in samenwerking met de Unie van Waterschappen en Hoogheemraadschap van Delfland.
description: 'Hoogheemraadschap van Delfland organiseert dit voorjaar een gratis introductiecursus voor mensen die interesse
hebben in een bestuurlijke functie bij het Hoogheemraadschap. Belangstellenden kunnen zich tot en met 9 april 2018 aanmelden
door een e-mail te sturen naar aanmelden@hhdelfland.nl. De cursus is ontwikkeld door ProDemos (het Huis van de Nederlandse
democratie) in samenwerking met de Unie van Waterschappen en Hoogheemraadschap van Delfland.
De cursusavonden staan gepland op 19 en 26 april, 17 en 24 mei en als laatste 19 juni, met een bezoek aan een commissievergadering. Tijdens de cursusavonden komen de positie van het waterschap, de rol van het algemeen bestuur en het thema effectief vergaderen aan de orde. De cursus is gratis en bedoeld voor inwoners van Delfland van 18 jaar en ouder die interesse hebben in het waterschapsbestuur. Lidmaatschap van een politieke partij is niet verplicht.
De cursusavonden staan gepland op 19 en 26 april, 17 en 24 mei en als laatste 19 juni, met een bezoek aan een commissievergadering.
Tijdens de cursusavonden komen de positie van het waterschap, de rol van het algemeen bestuur en het thema effectief
vergaderen aan de orde. De cursus is gratis en bedoeld voor inwoners van Delfland van 18 jaar en ouder die interesse
hebben in het waterschapsbestuur. Lidmaatschap van een politieke partij is niet verplicht.'
published_at: '2018-03-07T11:06:45Z'
duration: PT19S
definition: hd
@ -8531,10 +8716,13 @@ youtube_enrichment:
- video_id: eTkKyDUZZts
video_url: https://www.youtube.com/watch?v=eTkKyDUZZts
title: Corporate film Hoogheemraadschap van Delfland - English
description: |-
Delfland is one of our country's twenty-two water authorities. The area in which Delfland operates is bordered by the North Sea, the Nieuwe Waterweg and the Berkel en Rodenrijs line, Zoetermeer and Wassenaar.
description: 'Delfland is one of our country''s twenty-two water authorities. The area in which Delfland operates is bordered
by the North Sea, the Nieuwe Waterweg and the Berkel en Rodenrijs line, Zoetermeer and Wassenaar.
On an area of 41,000 hectares, about 1.4 million people live and work, and approximately 40,000 businesses are established. This makes the Delfland region one of the most densely populated and most highly industrialized areas of the Netherlands. The region is furthermore renowned for its intensive glasshouse horticulture.
On an area of 41,000 hectares, about 1.4 million people live and work, and approximately 40,000 businesses are established.
This makes the Delfland region one of the most densely populated and most highly industrialized areas of the Netherlands.
The region is furthermore renowned for its intensive glasshouse horticulture.'
published_at: '2017-09-01T12:35:21Z'
duration: PT5M53S
definition: hd
@ -8600,9 +8788,10 @@ youtube_enrichment:
- comment_id: UgwC0fd1acJgmTXTQt14AaABAg
author_display_name: '@daangoedbloed'
author_channel_url: http://www.youtube.com/@daangoedbloed
text: |-
Maar wat gebeurd er met dat jongetje dat in het water duikt? Komt ie nog boven, red de visser in het bootje hem of....??
Zie animatie 4:33
text: 'Maar wat gebeurd er met dat jongetje dat in het water duikt? Komt ie nog boven, red de visser in het bootje hem
of....??
Zie animatie 4:33'
like_count: 0
published_at: '2017-09-07T14:20:08Z'
updated_at: '2017-09-07T14:20:08Z'
@ -8740,9 +8929,9 @@ youtube_enrichment:
- comment_id: UggDk9o1noPjcXgCoAEC
author_display_name: '@richardvanmonsjou2841'
author_channel_url: http://www.youtube.com/@richardvanmonsjou2841
text: |-
Mooie video Rob en goede uitleg 👍
PS mooie kleur die helm bij jou cpi jas haha :-)
text: 'Mooie video Rob en goede uitleg 👍
PS mooie kleur die helm bij jou cpi jas haha :-)'
like_count: 1
published_at: '2017-05-29T15:01:20Z'
updated_at: '2017-05-29T15:01:20Z'
@ -8750,9 +8939,10 @@ youtube_enrichment:
- comment_id: UgyAPbkZp5L_x-lViGl4AaABAg
author_display_name: '@austinhilux8378'
author_channel_url: http://www.youtube.com/@austinhilux8378
text: |-
Maar dat gemaal geeft toch zeker wel een seintje naar de omliggende wijkgemalen om te stoppen als er wat loos is aan de Provinciale weg?
Je hebt geen "internet of things" nodig om smart te wezen.
text: 'Maar dat gemaal geeft toch zeker wel een seintje naar de omliggende wijkgemalen om te stoppen als er wat loos
is aan de Provinciale weg?
Je hebt geen "internet of things" nodig om smart te wezen.'
like_count: 0
published_at: '2017-08-04T15:12:01Z'
updated_at: '2017-08-04T15:12:01Z'
@ -8824,9 +9014,15 @@ youtube_enrichment:
- video_id: WN5u7Z5hxV4
video_url: https://www.youtube.com/watch?v=WN5u7Z5hxV4
title: 'S.C.H.O.O.N.: winnaar Waterinnovatieprijs 2016, categorie schoon water'
description: |-
S.C.H.O.O.N. (Schoonmaken effluent en Hergebruik voor Oppervlaktewater Op Natuurlijke wijze)
Project Schoon omvat de aanleg van een zoetwaterfabriek bij de AWZI De Groote Lucht in Vlaardingen met aansluitend een waterharmonica. De Zoetwaterfabriek is een innovatie waarin Delfland een nieuwe manier van afvalwater zuiveren test. Zo wordt onderzocht hoe medicijnresten, bestrijdingsmiddelen, hormoonverstorende stoffen en andere verontreinigingen effectief uit afvalwater kunnen worden gehaald. In de Zoetwaterfabriek werkt Delfland samen met Stowa, Deltafonds, Evides en Waterschap Vallei en Veluwe. Daarnaast is het project onderdeel van het Kwaliteitsprogramma Blankenburgverbinding van Rijkswaterstaat. SCHOON levert binnen en buiten het programma een belangrijke impuls voor de leefbaarheid, natuurwaarde en recreatieve waarde van het gebied.
description: 'S.C.H.O.O.N. (Schoonmaken effluent en Hergebruik voor Oppervlaktewater Op Natuurlijke wijze)
Project Schoon omvat de aanleg van een zoetwaterfabriek bij de AWZI De Groote Lucht in Vlaardingen met aansluitend een
waterharmonica. De Zoetwaterfabriek is een innovatie waarin Delfland een nieuwe manier van afvalwater zuiveren test.
Zo wordt onderzocht hoe medicijnresten, bestrijdingsmiddelen, hormoonverstorende stoffen en andere verontreinigingen
effectief uit afvalwater kunnen worden gehaald. In de Zoetwaterfabriek werkt Delfland samen met Stowa, Deltafonds, Evides
en Waterschap Vallei en Veluwe. Daarnaast is het project onderdeel van het Kwaliteitsprogramma Blankenburgverbinding
van Rijkswaterstaat. SCHOON levert binnen en buiten het programma een belangrijke impuls voor de leefbaarheid, natuurwaarde
en recreatieve waarde van het gebied.'
published_at: '2016-11-18T10:16:35Z'
duration: PT1M45S
definition: hd
@ -8856,12 +9052,19 @@ youtube_enrichment:
- video_id: SajWP0T3vKE
video_url: https://www.youtube.com/watch?v=SajWP0T3vKE
title: Battle of the Beach in Kijkduin
description: |-
Op het strand van Kijkduin (Den Haag) streden maandag 4 juli 2016 ruim 200 leerlingen tegen de zee en tegen elkaar. Battle of the Beach laat kinderen ervaren hoe belangrijk de strijd tegen het water is. Door de combinatie van gastlessen in de klas en het evenement leren kinderen wat het betekent om veilig te leven onder zeeniveau.
description: 'Op het strand van Kijkduin (Den Haag) streden maandag 4 juli 2016 ruim 200 leerlingen tegen de zee en tegen
elkaar. Battle of the Beach laat kinderen ervaren hoe belangrijk de strijd tegen het water is. Door de combinatie van
gastlessen in de klas en het evenement leren kinderen wat het betekent om veilig te leven onder zeeniveau.
Ruim 1.000 leerlingen bouwden op verschillende plekken langs de kust zandkastelen. De Battle of the Beach wordt gesponsord door internationale waterbouwer Van Oord en georganiseerd door een groot aantal partners van de publiekscampagne Ons Water: Hoogheemraadschap Amstel, Gooi en Vecht, Hoogheemraadschap van Rijnland, Hoogheemraadschap Hollands Noorderkwartier, Hoogheemraadschap van Delfland, waterschap Scheldestromen, Wetterskip Fryslân, provincie Zuid-Holland, Van Oord, Nationaal Watertraineeship, Unie van Waterschappen, ministerie van Infrastructuur en Milieu en Rijkswaterstaat.
www.onswater.nl
Ruim 1.000 leerlingen bouwden op verschillende plekken langs de kust zandkastelen. De Battle of the Beach wordt gesponsord
door internationale waterbouwer Van Oord en georganiseerd door een groot aantal partners van de publiekscampagne Ons
Water: Hoogheemraadschap Amstel, Gooi en Vecht, Hoogheemraadschap van Rijnland, Hoogheemraadschap Hollands Noorderkwartier,
Hoogheemraadschap van Delfland, waterschap Scheldestromen, Wetterskip Fryslân, provincie Zuid-Holland, Van Oord, Nationaal
Watertraineeship, Unie van Waterschappen, ministerie van Infrastructuur en Milieu en Rijkswaterstaat.
www.onswater.nl'
published_at: '2016-07-12T10:01:17Z'
duration: PT2M50S
definition: hd
@ -11247,3 +11450,21 @@ web-enrichments:
layout_score: 0.0
pattern_score: 0.0
final_confidence: 0.75
mission_statement:
- statement_id: https://nde.nl/ontology/hc/mission/nl-zh-del-a-hd/mission-2026
statement_type: mission
statement_text: Bij het Hoogheemraadschap van Delfland nemen we de zorg voor het water op ons. Zodat jij samen met alle
inwoners van ons gebied fijn kunt wonen, werken én ontspannen in deze prachtige waterrijke omgeving.
statement_language: nl
extracted_verbatim: true
source_url: https://www.hhdelfland.nl/over-ons
content_hash: sha256-2yG6YnJzk4E1lunJvK0TloUaiv71sHvtZYcJ/mDWfhs=
provenance:
statement_created_at: '2026-01-04T15:02:18.431859+00:00'
source_archived_at: '2026-01-04T15:01:43.917346+00:00'
retrieval_agent: linkup-api
extraction_agent: zai-glm/glm-4.7
extraction_confidence: 0.75
prov:wasDerivedFrom: https://www.hhdelfland.nl/over-ons
prov:generatedAtTime: '2026-01-04T15:02:18.431859+00:00'
source_section: Over ons

View file

@ -72,8 +72,8 @@ wikidata_enrichment:
instance_of: &id001
- id: Q33506
label: museum
description: institution that holds artifacts and other objects of scientific,
artistic, cultural, historical, or other importance
description: institution that holds artifacts and other objects of scientific, artistic, cultural, historical, or other
importance
heritage_designation:
- id: Q916333
label: Rijksmonument
@ -319,18 +319,15 @@ google_maps_enrichment:
author_uri: https://www.google.com/maps/contrib/112174981720198511674/reviews
rating: 5
relative_time_description: 4 maanden geleden
text: 'Mooie locatie. Netjes ontvangen met duidelijke uitleg. Prachtige indrukwekkende
tentoonstelling ''Ons Land''. Heel mooi hoe persoonlijke ervaringen van een
aantal families in de tijd werden gezet. Mooi vormgegeven mbv multimedia. Ik
was er met mijn vriendin. We hebben meer dan 3 uur vertoefd in het museum. Ik
heb ook alles beluisterd en gekeken. Mijn vader is Moluks dus mijn persoonlijke
interesse was groot. Het raakte me heel erg. Er tevens een winkel met leuke
hebbedingetjes en boeken. We hebben natuurlijk ook een kleine pauze ingelast
met een kop thee en een lemper en pasteitje. Er is een ruime keuze aan Indonesische
snacks.
text: 'Mooie locatie. Netjes ontvangen met duidelijke uitleg. Prachtige indrukwekkende tentoonstelling ''Ons Land''. Heel
mooi hoe persoonlijke ervaringen van een aantal families in de tijd werden gezet. Mooi vormgegeven mbv multimedia. Ik
was er met mijn vriendin. We hebben meer dan 3 uur vertoefd in het museum. Ik heb ook alles beluisterd en gekeken. Mijn
vader is Moluks dus mijn persoonlijke interesse was groot. Het raakte me heel erg. Er tevens een winkel met leuke hebbedingetjes
en boeken. We hebben natuurlijk ook een kleine pauze ingelast met een kop thee en een lemper en pasteitje. Er is een
ruime keuze aan Indonesische snacks.
In het kenniscentrum kwam ik erachter dat ik met familie oogcontact had zonder
te weten dat ze familie waren. Zo bijzonder en ik geloof niet in toeval...'
In het kenniscentrum kwam ik erachter dat ik met familie oogcontact had zonder te weten dat ze familie waren. Zo bijzonder
en ik geloof niet in toeval...'
publish_time: '2025-07-12T08:31:33.945002310Z'
- author_name: Audrye Ganzevles
author_uri: https://www.google.com/maps/contrib/100815273555983134151/reviews
@ -344,59 +341,48 @@ google_maps_enrichment:
author_uri: https://www.google.com/maps/contrib/107953911161980384887/reviews
rating: 4
relative_time_description: een jaar geleden
text: 'Interessant museum over een belangrijk maar onderbelicht deel van de geschiedenis.
Vriendelijk en behulpzaam personeel. Een groot deel van de expositie draait
om filmpjes die met behulp van een audiotour beluisterd kunnen worden. Het enige
minpuntje vond ik dat er weinig zitplaatsen zijn: de audiofragmenten zijn erg
interessant, maar vrij lang. Voor mij werkt het dan beter als ik kan zitten.'
text: 'Interessant museum over een belangrijk maar onderbelicht deel van de geschiedenis. Vriendelijk en behulpzaam personeel.
Een groot deel van de expositie draait om filmpjes die met behulp van een audiotour beluisterd kunnen worden. Het enige
minpuntje vond ik dat er weinig zitplaatsen zijn: de audiofragmenten zijn erg interessant, maar vrij lang. Voor mij
werkt het dan beter als ik kan zitten.'
publish_time: '2024-07-21T11:42:17.305484Z'
- author_name: Rick Gaspersz
author_uri: https://www.google.com/maps/contrib/110820953279903510168/reviews
rating: 1
relative_time_description: 2 jaar geleden
text: 'Vandaag met (Nederlandse) schoondochter, ter voorbereiding op een reis
naar Ambon, naar het museum geweest.
text: 'Vandaag met (Nederlandse) schoondochter, ter voorbereiding op een reis naar Ambon, naar het museum geweest.
Mijn conclusie: De naam van het museum is zeer misleidend.
Wanneer een museum Museum Maluku of Moluks Historisch Museum heet, verwacht
ik dat de belangrijkste onderwerpen van de (permanente) expositie zich richten
op de Molukse Historie.
Wanneer een museum Museum Maluku of Moluks Historisch Museum heet, verwacht ik dat de belangrijkste onderwerpen
van de (permanente) expositie zich richten op de Molukse Historie.
Vanaf het verhaal van Nunusaku via de kolonisatie door de Portugezen en Nederlanders,
naar de tweede wereldoorlog, het uitroepen van de soevereiniteit van Indonesië,
de oprichting van de RMS tot en met de situatie op de Molukken nu…
Vanaf het verhaal van Nunusaku via de kolonisatie door de Portugezen en Nederlanders, naar de tweede wereldoorlog, het
uitroepen van de soevereiniteit van Indonesië, de oprichting van de RMS tot en met de situatie op de Molukken nu…
En parallel aan het verhaal hoe het op de Molukken is gegaan na de soevereiniteitsoverdracht,
het verhaal van wat er met de Molukkers in KNIL-dienst is gebeurd, tot en met
de derde/vierde generatie Molukse Nederlanders….
En parallel aan het verhaal hoe het op de Molukken is gegaan na de soevereiniteitsoverdracht, het verhaal van wat er
met de Molukkers in KNIL-dienst is gebeurd, tot en met de derde/vierde generatie Molukse Nederlanders….
Wat het museum nu biedt is een mengelmoes van verhalen van uit Indië (terug)
naar Nederland gemigreerde families, met verschillende etnische achtergronden
waarvan minder dan de helft van de besproken families een Molukse achtergrond
heeft.
Wat het museum nu biedt is een mengelmoes van verhalen van uit Indië (terug) naar Nederland gemigreerde families, met
verschillende etnische achtergronden waarvan minder dan de helft van de besproken families een Molukse achtergrond heeft.
Waar is het historisch verhaal van de Molukken en Molukkers in dit Moluks Historisch
Museum?
Waar is het historisch verhaal van de Molukken en Molukkers in dit Moluks Historisch Museum?
Waar zie ik uitleg over de adat, de familieband (b.v.uitleg over het belang
van de oyang, over papa en mama tua en bongso), pelaschap en andere typisch
Molukse cultuur eigenschappen?
Waar zie ik uitleg over de adat, de familieband (b.v.uitleg over het belang van de oyang, over papa en mama tua en bongso),
pelaschap en andere typisch Molukse cultuur eigenschappen?
Een gemiste kans om mijn Nederlandse schoondochter het Molukse verhaal te vertellen,
we kregen verhalen voorgeschoteld die je op de eerste de beste Pasar Malam kunt
horen van willekeurige Indos…
Een gemiste kans om mijn Nederlandse schoondochter het Molukse verhaal te vertellen, we kregen verhalen voorgeschoteld
die je op de eerste de beste Pasar Malam kunt horen van willekeurige Indos…
Het is dat wij relatief dichtbij Den Haag wonen, daarmee is het voor ons bij
een zeer teleurstellende ervaring gebleven.
Het is dat wij relatief dichtbij Den Haag wonen, daarmee is het voor ons bij een zeer teleurstellende ervaring gebleven.
Als ik vanuit Assen of Venlo voor deze expositie naar Den Haag had moeten komen,
was ik niet alleen teleurgesteld maar ook boos geweest.'
Als ik vanuit Assen of Venlo voor deze expositie naar Den Haag had moeten komen, was ik niet alleen teleurgesteld maar
ook boos geweest.'
publish_time: '2023-08-07T20:50:57.126218Z'
- author_name: Ken Laureys
author_uri: https://www.google.com/maps/contrib/117868212610098118223/reviews
@ -566,8 +552,8 @@ timespan:
end_of_the_end: null
sources:
- 'Wikidata P571 (inception): https://www.wikidata.org/wiki/Q2356434'
notes: Museum Maluku established in 1986 to preserve and present the history and
culture of the Moluccas (Maluku) and the Moluccan community in the Netherlands.
notes: Museum Maluku established in 1986 to preserve and present the history and culture of the Moluccas (Maluku) and the
Moluccan community in the Netherlands.
location:
latitude: 52.0870515
longitude: 4.3060727
@ -602,8 +588,8 @@ digital_platform_v2:
platform_name: Welkom - Museum Maluku Website
platform_url: https://museum-maluku.nl/
platform_type: DISCOVERY_PORTAL
description: 'Welkom bij Museum Maluku: de plek waar jij op een interactieve en
verrassende manier de Molukse perspectieven op de geschiedenis kan beleven.'
description: 'Welkom bij Museum Maluku: de plek waar jij op een interactieve en verrassende manier de Molukse perspectieven
op de geschiedenis kan beleven.'
language: nl
og_image: https://museum-maluku.nl/wp-content/uploads/2022/03/beta-disini.jpg
favicon: http://www.museum-maluku.nl/wp-content/uploads/2020/02/favicon.png
@ -702,3 +688,39 @@ logo_enrichment:
has_favicon: true
has_og_image: true
favicon_count: 5
mission_statement:
- statement_id: https://nde.nl/ontology/hc/mission/nl-zh-dha-d-mmmhm/mission-2026
statement_type: mission
statement_text: Stichting Moluks Historisch Museum maakt kennis over de geschiedenis, kunst, cultuur en ontwikkeling van
Molukkers (het Molukse Verhaal) toegankelijk voor een zon breed mogelijk publiek in en buiten Nederland.
statement_language: nl
extracted_verbatim: true
source_url: https://www.museum-maluku.nl/missie
content_hash: sha256-ZUb/3KHmW5PXCsUYmJ+a9gyXdV79wNgzWLGsdIMo7c4=
provenance:
statement_created_at: '2026-01-04T12:20:11.223964+00:00'
source_archived_at: '2026-01-04T12:19:54.631082+00:00'
retrieval_agent: linkup-api
extraction_agent: zai-glm/glm-4.7
extraction_confidence: 1.0
prov:wasDerivedFrom: https://www.museum-maluku.nl/missie
prov:generatedAtTime: '2026-01-04T12:20:11.223964+00:00'
source_section: Missie, Visie
- statement_id: https://nde.nl/ontology/hc/mission/nl-zh-dha-d-mmmhm/vision-2026
statement_type: vision
statement_text: Stichting Moluks Historisch Museum geeft vorm aan een eigentijdse erfgoedinstelling die collecties beheert,
programmas en projecten ontwikkelt en samenwerkingsverbanden aangaat met diverse partners. Stichting Moluks Historisch
Museum stimuleert daarmee de participatie van de Molukse gemeenschap en de samenlevingsopbouw van Nederland.
statement_language: nl
extracted_verbatim: true
source_url: https://www.museum-maluku.nl/missie
content_hash: sha256-3y1V/pLLl7gBiF9IuHy5PLCiiLwFdIU1kQoOAG+2SXA=
provenance:
statement_created_at: '2026-01-04T12:20:11.223988+00:00'
source_archived_at: '2026-01-04T12:19:54.631082+00:00'
retrieval_agent: linkup-api
extraction_agent: zai-glm/glm-4.7
extraction_confidence: 1.0
prov:wasDerivedFrom: https://www.museum-maluku.nl/missie
prov:generatedAtTime: '2026-01-04T12:20:11.223988+00:00'
source_section: Missie, Visie

View file

@ -752,11 +752,14 @@ youtube_enrichment:
- video_id: AOYved4CcdY
video_url: https://www.youtube.com/watch?v=AOYved4CcdY
title: 'Het rariteitenkabinet van Albertus Seba: een schatkamer vol natuur'
description: "Fotograaf Theo de Nooij en conservator Esther van Gelder nemen je mee in het digitaliseringsproject van\
\ een van de mooiste topstukken uit de collectie van de KB nationale bibliotheek: het Schatryke kabinet der voornaamste\
\ seldzaamheden der natuur van Albertus Seba.\nDit achttiende-eeuwse meesterwerk toont in vier rijk geïllustreerde delen\
\ een indrukwekkende verzameling van schelpen, stenen, vogels en exotische dieren: in kopergravures die met de hand\
\ werden ingekleurd.\nIn deze video zie je hoe "
description: 'Fotograaf Theo de Nooij en conservator Esther van Gelder nemen je mee in het digitaliseringsproject van
een van de mooiste topstukken uit de collectie van de KB nationale bibliotheek: het Schatryke kabinet der voornaamste
seldzaamheden der natuur van Albertus Seba.
Dit achttiende-eeuwse meesterwerk toont in vier rijk geïllustreerde delen een indrukwekkende verzameling van schelpen,
stenen, vogels en exotische dieren: in kopergravures die met de hand werden ingekleurd.
In deze video zie je hoe '
published_at: '2025-11-25T08:00:22Z'
duration: PT4M8S
view_count: 194
@ -767,10 +770,13 @@ youtube_enrichment:
- video_id: wQW0evR48wQ
video_url: https://www.youtube.com/watch?v=wQW0evR48wQ
title: Splinter Chabot is presentator van On the spot | KB nationale bibliotheek
description: |-
Auteur, politicoloog en programmamaker, én iemand die precies weet hoe je een goed gesprek voert. Elke maand leidt @splinterchabot een gesprek met een bijzondere gast én het publiek over een urgent en actueel thema.
📚 On the spot is een maandelijkse avond in de KB nationale bibliotheek, waar je samen de diepte in gaat. Geen standaard lezing, maar een eerlijk gesprek met iemand die het thema van binnenuit kent.
Lees meer via www.kb.nl/onthespot
description: 'Auteur, politicoloog en programmamaker, én iemand die precies weet hoe je een goed gesprek voert. Elke maand
leidt @splinterchabot een gesprek met een bijzondere gast én het publiek over een urgent en actueel thema.
📚 On the spot is een maandelijkse avond in de KB nationale bibliotheek, waar je samen de diepte in gaat. Geen standaard
lezing, maar een eerlijk gesprek met iemand die het thema van binnenuit kent.
Lees meer via www.kb.nl/onthespot'
published_at: '2025-11-03T14:19:21Z'
duration: PT55S
view_count: 272
@ -781,9 +787,12 @@ youtube_enrichment:
- video_id: LpgaOQXb2m8
video_url: https://www.youtube.com/watch?v=LpgaOQXb2m8
title: 6. Raadplegen | De reis van een middeleeuws handschrift | KB nationale bibliotheek
description: |-
In deze video vertelt Victor Olivier, medewerker publieksdiensten bij de KB, over het raadplegen van de werken die we hebben. Je zult Victor vaak aantreffen achter de balie, waar hij klanten verwelkomt en helpt, en de uitgifte van de boeken verzorgt die klanten aangevraagd hebben. Je kunt eenvoudig boeken aanvragen via de KB website (met een lidmaatschap) of werken inzien via onze website.
De collectie van de KB groeit wekelijks met 10 meter boeken (achter elkaar gezet). In deze videoserie late
description: 'In deze video vertelt Victor Olivier, medewerker publieksdiensten bij de KB, over het raadplegen van de
werken die we hebben. Je zult Victor vaak aantreffen achter de balie, waar hij klanten verwelkomt en helpt, en de uitgifte
van de boeken verzorgt die klanten aangevraagd hebben. Je kunt eenvoudig boeken aanvragen via de KB website (met een
lidmaatschap) of werken inzien via onze website.
De collectie van de KB groeit wekelijks met 10 meter boeken (achter elkaar gezet). In deze videoserie late'
published_at: '2025-11-01T11:38:28Z'
duration: PT1M56S
view_count: 165
@ -794,11 +803,16 @@ youtube_enrichment:
- video_id: 4i919Gr27UQ
video_url: https://www.youtube.com/watch?v=4i919Gr27UQ
title: 'Astrologie: hoe de stand van de sterren eeuwenlang onze toekomst voorspelde'
description: |-
In dit mini-college neemt Jeroen Vandommele, conservator Na-middeleeuwse en moderne handschriften bij de KB nationale bibliotheek, je mee in de wereld van astrologie.
Eeuwenlang keken mensen naar de hemel op zoek naar antwoorden. De stand van de sterren en planeten zou iets zeggen over gezondheid, oorlog, liefde en zelfs het weer. 🔭
Astrologie werd serieus bestudeerd door geleerden en artsen, en dankzij de drukpers verspreidden voorspellingen zich razendsnel door Europa.
In de collectie van de
description: 'In dit mini-college neemt Jeroen Vandommele, conservator Na-middeleeuwse en moderne handschriften bij de
KB nationale bibliotheek, je mee in de wereld van astrologie.
Eeuwenlang keken mensen naar de hemel op zoek naar antwoorden. De stand van de sterren en planeten zou iets zeggen over
gezondheid, oorlog, liefde en zelfs het weer. 🔭
Astrologie werd serieus bestudeerd door geleerden en artsen, en dankzij de drukpers verspreidden voorspellingen zich
razendsnel door Europa.
In de collectie van de'
published_at: '2025-10-16T14:13:43Z'
duration: PT10M9S
view_count: 109
@ -809,10 +823,14 @@ youtube_enrichment:
- video_id: U1g7fdeE5kU
video_url: https://www.youtube.com/watch?v=U1g7fdeE5kU
title: Dit was Museumnacht Den Haag 2025 in de KB 🕺🏼🪩
description: |-
Wat een nacht! 🌙 Tijdens Museumnacht Den Haag 2025 opende de KB nationale bibliotheek haar deuren voor een avond vol verhalen, erfgoed en bijzondere ontmoetingen.
Bezoekers ontdekten originele stukken uit onze collectie, doken in de wereld van boeken en kennis, en genoten van de unieke sfeer van de bibliotheek bij nacht. 📚✨ Meer evenementen op KB.nl/evenementen
museumnacht den haag 2025, kb nationale bibliotheek, museumnacht aftermovie, den haag musea, haagse museumnacht, kb event, bibliotheek
description: 'Wat een nacht! 🌙 Tijdens Museumnacht Den Haag 2025 opende de KB nationale bibliotheek haar deuren voor een
avond vol verhalen, erfgoed en bijzondere ontmoetingen.
Bezoekers ontdekten originele stukken uit onze collectie, doken in de wereld van boeken en kennis, en genoten van de
unieke sfeer van de bibliotheek bij nacht. 📚✨ Meer evenementen op KB.nl/evenementen
museumnacht den haag 2025, kb nationale bibliotheek, museumnacht aftermovie, den haag musea, haagse museumnacht, kb
event, bibliotheek'
published_at: '2025-10-14T14:00:33Z'
duration: PT2M1S
view_count: 53
@ -823,10 +841,14 @@ youtube_enrichment:
- video_id: OPtZimCd7Xw
video_url: https://www.youtube.com/watch?v=OPtZimCd7Xw
title: Zo zie je de KB-campagne Toekomstbeelden terug in Den Haag (én in de bibliotheek zelf!)
description: |-
De campagne Toekomstbeelden van de KB nationale bibliotheek is niet alleen online te zien — maar ook midden in het straatbeeld van Den Haag! 🚋
In deze video zie je hoe tram 3 door de stad rijdt in de campagnestijl, hoe verschillende uitingen opduiken op schermen en abris, én hoe zelfs een nis in de bibliotheek is bekleed in het thema.
🔍 Meer weten over Toekomstbeelden en de verhalen achter deze campagne? Bekijk alle mini-colleges, verhalen en video's op KB.nl/toekomstbeelden
description: 'De campagne Toekomstbeelden van de KB nationale bibliotheek is niet alleen online te zien — maar ook midden
in het straatbeeld van Den Haag! 🚋
In deze video zie je hoe tram 3 door de stad rijdt in de campagnestijl, hoe verschillende uitingen opduiken op schermen
en abris, én hoe zelfs een nis in de bibliotheek is bekleed in het thema.
🔍 Meer weten over Toekomstbeelden en de verhalen achter deze campagne? Bekijk alle mini-colleges, verhalen en video''s
op KB.nl/toekomstbeelden'
published_at: '2025-10-09T09:38:20Z'
duration: PT1M48S
view_count: 69
@ -837,9 +859,11 @@ youtube_enrichment:
- video_id: adartC5oMss
video_url: https://www.youtube.com/watch?v=adartC5oMss
title: 'Wat als alles zou crashen op 1 januari 2000? 💻 | KB nationale bibliotheek #shorts'
description: |-
Misschien weet je het nog: rond de eeuwwisseling was iedereen in paniek. Zouden computers stoppen met werken? Zouden vliegtuigen uit de lucht vallen? Banken failliet? In deze teaser krijg je een korte blik in de verwarring rond de Millennium-bug.
Bekijk de volledige video op ons kanaal: een mini-college in de reeks Toekomstbeelden, van de KB nationale bibliotheek.
description: 'Misschien weet je het nog: rond de eeuwwisseling was iedereen in paniek. Zouden computers stoppen met werken?
Zouden vliegtuigen uit de lucht vallen? Banken failliet? In deze teaser krijg je een korte blik in de verwarring rond
de Millennium-bug.
Bekijk de volledige video op ons kanaal: een mini-college in de reeks Toekomstbeelden, van de KB nationale bibliotheek.'
published_at: '2025-10-06T10:53:01Z'
duration: PT1M15S
view_count: 172
@ -850,11 +874,12 @@ youtube_enrichment:
- video_id: wadxd3W-Mbs
video_url: https://www.youtube.com/watch?v=wadxd3W-Mbs
title: 'Millenniumbug: angst voor een digitale wereldramp die met een sisser afliep'
description: "In deze video neemt Sophie Ham, conservator Digitale Collecties bij de KB, je mee terug naar het jaar 2000\
\ en de paniek die daaraan voorafging. Zou de millenniumbug zorgen voor een wereldwijde digitale black-out? In kranten,\
\ tijdschriften en websites uit de KB-collectie is de opbouw van deze wereldwijde angst perfect te volgen.\nWas het\
\ massale hamsteren van kaarsen, water en voedsel overdreven? Of juist een verstandige voorzorgsmaatregel? Kijk mee\
\ en ontdek hoe een klein stukje code uitgroeide "
description: 'In deze video neemt Sophie Ham, conservator Digitale Collecties bij de KB, je mee terug naar het jaar 2000
en de paniek die daaraan voorafging. Zou de millenniumbug zorgen voor een wereldwijde digitale black-out? In kranten,
tijdschriften en websites uit de KB-collectie is de opbouw van deze wereldwijde angst perfect te volgen.
Was het massale hamsteren van kaarsen, water en voedsel overdreven? Of juist een verstandige voorzorgsmaatregel? Kijk
mee en ontdek hoe een klein stukje code uitgroeide '
published_at: '2025-10-02T10:01:51Z'
duration: PT5M44S
view_count: 298
@ -865,9 +890,11 @@ youtube_enrichment:
- video_id: 4oUcq-jwQSk
video_url: https://www.youtube.com/watch?v=4oUcq-jwQSk
title: Kettingboek
description: |-
Heb jij wel eens van een kettingboek gehoord? Conservator Erik vertelt meer over dit zeldzame exemplaar, het enige kettingboek in de KB waar de ketting nog aan vast zit.
Have you ever heard of a chained library? Curator Erik explains more about this rare copy, the only chained book in the KB's collection that still has its chain.
description: 'Heb jij wel eens van een kettingboek gehoord? Conservator Erik vertelt meer over dit zeldzame exemplaar,
het enige kettingboek in de KB waar de ketting nog aan vast zit.
Have you ever heard of a chained library? Curator Erik explains more about this rare copy, the only chained book in
the KB''s collection that still has its chain.'
published_at: '2025-09-29T09:34:41Z'
duration: PT1M24S
view_count: 498
@ -890,11 +917,12 @@ youtube_enrichment:
- video_id: xMwuuuw5lqc
video_url: https://www.youtube.com/watch?v=xMwuuuw5lqc
title: Op reis door Nederland om 280 Middeleeuwse handschriften te digitaliseren | KB nationale bibliotheek
description: "Twee jaar lang reisden Annelynn Koenders en Janou Munnik door heel Nederland om maar liefst 280 middeleeuwse\
\ handschriften te digitaliseren. Van Maastricht tot Leeuwarden, van stadbibliotheken tot kloostercollecties — overal\
\ gingen ze op zoek naar kwetsbare, eeuwenoude manuscripten.\nIn deze video zie je hun allerlaatste werkdag in de Athenaeumbibliotheek\
\ in Deventer. Hoe werkt het digitaliseren van een middeleeuws handschrift? Wat neem je mee op locatie? En waarom is\
\ het zo belangrijk dat deze "
description: 'Twee jaar lang reisden Annelynn Koenders en Janou Munnik door heel Nederland om maar liefst 280 middeleeuwse
handschriften te digitaliseren. Van Maastricht tot Leeuwarden, van stadbibliotheken tot kloostercollecties — overal
gingen ze op zoek naar kwetsbare, eeuwenoude manuscripten.
In deze video zie je hun allerlaatste werkdag in de Athenaeumbibliotheek in Deventer. Hoe werkt het digitaliseren van
een middeleeuws handschrift? Wat neem je mee op locatie? En waarom is het zo belangrijk dat deze '
published_at: '2025-09-01T12:34:05Z'
duration: PT3M30S
view_count: 636
@ -905,9 +933,10 @@ youtube_enrichment:
- video_id: rKQ95ojjpKQ
video_url: https://www.youtube.com/watch?v=rKQ95ojjpKQ
title: 'Kwetsbare boeken? Zo pakken wij dat aan voor het nieuwe boekenmagazijn | KB #shorts'
description: |-
📚 Sommige boeken zijn als nationale bibliotheek te kwetsbaar om zomaar te verhuizen.
Daarom onderzoeken restauratoren van de KB elk collectiestuk zorgvuldig: moet het gerestaureerd worden? Of krijgt het een beschermende doos op maat? In deze short zie je een glimp van dat proces.
description: '📚 Sommige boeken zijn als nationale bibliotheek te kwetsbaar om zomaar te verhuizen.
Daarom onderzoeken restauratoren van de KB elk collectiestuk zorgvuldig: moet het gerestaureerd worden? Of krijgt het
een beschermende doos op maat? In deze short zie je een glimp van dat proces.'
published_at: '2025-07-09T06:00:47Z'
duration: PT1M30S
view_count: 1146
@ -918,10 +947,14 @@ youtube_enrichment:
- video_id: hzBxbFo5_SQ
video_url: https://www.youtube.com/watch?v=hzBxbFo5_SQ
title: 6. Hoe bescherm je kwetsbare boeken? Zo doen wij dat bij de KB | KB nationale bibliotheek
description: |-
Hoe bescherm je kwetsbare boeken als je 120 kilometer collectie gaat verhuizen?
In deze aflevering duiken we in het werk van de restauratoren van de KB. Ze beoordelen elk boek: is het kwetsbaar, beschadigd, of zeldzaam? Dan krijgt het speciale zorg — en soms zelfs een op maat gemaakte doos. Zo zorgen we ervoor dat alles veilig aankomt in het nieuwe magazijn.
Als nationale bibliotheek willen we zoveel mogelijk bewaren van wat er in en over Nederland is geschreven. De komende jaren verhuizen we o
description: 'Hoe bescherm je kwetsbare boeken als je 120 kilometer collectie gaat verhuizen?
In deze aflevering duiken we in het werk van de restauratoren van de KB. Ze beoordelen elk boek: is het kwetsbaar, beschadigd,
of zeldzaam? Dan krijgt het speciale zorg — en soms zelfs een op maat gemaakte doos. Zo zorgen we ervoor dat alles veilig
aankomt in het nieuwe magazijn.
Als nationale bibliotheek willen we zoveel mogelijk bewaren van wat er in en over Nederland is geschreven. De komende
jaren verhuizen we o'
published_at: '2025-07-08T05:30:23Z'
duration: PT5M3S
view_count: 711
@ -932,11 +965,14 @@ youtube_enrichment:
- video_id: yjVkpYR9oC0
video_url: https://www.youtube.com/watch?v=yjVkpYR9oC0
title: Erasmus en zijn radicale pleidooi voor vrede in oorlogstijd
description: |-
In een wereld vol godsdienstoorlogen schreef Erasmus iets ongekends: een pacifistisch pamflet. In Querela pacis (1517) laat hij de godin Vrede aan het woord, die zich afvraagt waarom ze overal wordt verjaagd.
description: 'In een wereld vol godsdienstoorlogen schreef Erasmus iets ongekends: een pacifistisch pamflet. In Querela
pacis (1517) laat hij de godin Vrede aan het woord, die zich afvraagt waarom ze overal wordt verjaagd.
Erasmus riep machthebbers op tot samenwerking, redelijkheid en vrede in een tijd waarin de zwaarden al getrokken waren.
📚 Bekijk de volledige video op KB.nl/tegengeluiden
🎥 Een productie van de KB nationale bibliotheek
🎥 Een productie van de KB nationale bibliotheek'
published_at: '2025-07-04T05:01:16Z'
duration: PT39S
view_count: 1764
@ -947,11 +983,15 @@ youtube_enrichment:
- video_id: 3Gs2m_8AGi0
video_url: https://www.youtube.com/watch?v=3Gs2m_8AGi0
title: Annie M.G. Schmidt riep kinderen op om lekker stout te zijn
description: |-
“Mag jij weleens stout zijn?” In 1954 schreef Annie M.G. Schmidt het gedicht Ik ben lekker stout. Niet braaf, wel eerlijk. Niet gehoorzaam, wel grappig. Het gedicht liet zien dat je als kind ook gewoon jezelf mocht zijn ook als dat even niet netjes is.
description: '“Mag jij weleens stout zijn?” In 1954 schreef Annie M.G. Schmidt het gedicht Ik ben lekker stout. Niet braaf,
wel eerlijk. Niet gehoorzaam, wel grappig. Het gedicht liet zien dat je als kind ook gewoon jezelf mocht zijn ook
als dat even niet netjes is.
Een ode aan eigenzinnigheid, met een boodschap die nog steeds raakt.
📚 Ontdek meer literaire tegengeluiden op KB.nl/tegengeluiden
🎥 Uit de collectie van de KB nationale bibliotheek
🎥 Uit de collectie van de KB nationale bibliotheek'
published_at: '2025-07-03T05:00:04Z'
duration: PT47S
view_count: 367
@ -962,10 +1002,12 @@ youtube_enrichment:
- video_id: Wif6uzAeCv0
video_url: https://www.youtube.com/watch?v=Wif6uzAeCv0
title: 'Geert Grote: de man die zich tegen de kerk keerde in de 14e eeuw'
description: |-
Geert Grote predikte tegen de macht van de kerk in de 14e eeuw. Het leverde hem een predikverbod op, maar ook blijvende invloed.
description: 'Geert Grote predikte tegen de macht van de kerk in de 14e eeuw. Het leverde hem een predikverbod op, maar
ook blijvende invloed.
📚 Bekijk de hele video over deze middeleeuwse dwarsdenker op ons kanaal of op KB.nl/tegengeluiden
#GeertGrote #Middeleeuwen #Tegengeluid #KB #Geschiedenis
#GeertGrote #Middeleeuwen #Tegengeluid #KB #Geschiedenis'
published_at: '2025-07-02T11:46:39Z'
duration: PT38S
view_count: 202
@ -976,10 +1018,14 @@ youtube_enrichment:
- video_id: BDHrycFG5eQ
video_url: https://www.youtube.com/watch?v=BDHrycFG5eQ
title: De bouw van het nieuwe boekenmagazijn is gestart! | Een nieuw boekenmagazijn voor de KB
description: |-
De bouw van het nieuwe boekenmagazijn van de KB is begonnen! 📚 Op 3 juni 2025 sloegen we in de Harnaschpolder feestelijk de eerste paal. In deze video zie je hoe we deze bijzondere mijlpaal vierden met genodigden, sprekers en een symbolisch startmoment.
Met het innovatieve, gerobotiseerde magazijn zorgen we ervoor dat de 120 kilometer aan collectie van de KB — het geschreven erfgoed van en over Nederland — veilig en duurzaam bewaard blijft.
👉 Wil je meer weten over het nieuwe boekenmagazijn en
description: 'De bouw van het nieuwe boekenmagazijn van de KB is begonnen! 📚 Op 3 juni 2025 sloegen we in de Harnaschpolder
feestelijk de eerste paal. In deze video zie je hoe we deze bijzondere mijlpaal vierden met genodigden, sprekers en
een symbolisch startmoment.
Met het innovatieve, gerobotiseerde magazijn zorgen we ervoor dat de 120 kilometer aan collectie van de KB — het geschreven
erfgoed van en over Nederland — veilig en duurzaam bewaard blijft.
👉 Wil je meer weten over het nieuwe boekenmagazijn en'
published_at: '2025-07-01T07:56:54Z'
duration: PT1M27S
view_count: 199
@ -990,11 +1036,12 @@ youtube_enrichment:
- video_id: j4mB-uP2jNY
video_url: https://www.youtube.com/watch?v=j4mB-uP2jNY
title: 'Dossier Dwarsdenkers: Annie M.G. Schmidt een oproep aan kinderen om lekker stout te zijn'
description: "In 1954 schreef Annie M.G. Schmidt een gedicht dat ouders liet fronsen en kinderen deed glimmen van plezier:\
\ Ik ben lekker stout. Met brutale zinnen en een knipoog naar autoriteit werd het een vrolijk protest tegen braafheid\
\ en een bevrijdende oproep aan kinderen om hun eigen wil te volgen.\nIn dit mini-college vertelt Paul van Capelleveen,\
\ conservator Moderne bijzondere gedrukte werken en Boekgeschiedenis bij de KB nationale bibliotheek, hoe Ik ben lekker\
\ stout een literair tegengeluid werd. "
description: 'In 1954 schreef Annie M.G. Schmidt een gedicht dat ouders liet fronsen en kinderen deed glimmen van plezier:
Ik ben lekker stout. Met brutale zinnen en een knipoog naar autoriteit werd het een vrolijk protest tegen braafheid
en een bevrijdende oproep aan kinderen om hun eigen wil te volgen.
In dit mini-college vertelt Paul van Capelleveen, conservator Moderne bijzondere gedrukte werken en Boekgeschiedenis
bij de KB nationale bibliotheek, hoe Ik ben lekker stout een literair tegengeluid werd. '
published_at: '2025-06-12T09:25:00Z'
duration: PT5M12S
view_count: 235
@ -1005,9 +1052,12 @@ youtube_enrichment:
- video_id: V6ClKe3WjSU
video_url: https://www.youtube.com/watch?v=V6ClKe3WjSU
title: 'Dossier Dwarsdenkers: Erasmus een pleidooi voor vrede in tijden van oorlog'
description: |-
Erasmus leefde in een tijd vol religieuze spanningen en oorlogen. Juist toen koos hij radicaal voor vrede. In Querela pacis (1517), oftewel Klacht van de Vrede, laat hij de godin Vrede spreken: waarom wordt zij overal verjaagd, terwijl oorlog telkens opnieuw wordt omarmd?
In dit mini-college vertelt Esther van Gelder, conservator Oude Drukken bij de KB nationale bibliotheek, over Erasmus als dwarsdenker. Waarom ging hij met woorden de strijd aan tegen oorlogsgeweld en waarom is zijn oproep to
description: 'Erasmus leefde in een tijd vol religieuze spanningen en oorlogen. Juist toen koos hij radicaal voor vrede.
In Querela pacis (1517), oftewel Klacht van de Vrede, laat hij de godin Vrede spreken: waarom wordt zij overal verjaagd,
terwijl oorlog telkens opnieuw wordt omarmd?
In dit mini-college vertelt Esther van Gelder, conservator Oude Drukken bij de KB nationale bibliotheek, over Erasmus
als dwarsdenker. Waarom ging hij met woorden de strijd aan tegen oorlogsgeweld en waarom is zijn oproep to'
published_at: '2025-06-12T09:24:56Z'
duration: PT5M33S
view_count: 239
@ -1044,9 +1094,12 @@ youtube_enrichment:
- video_id: VysvN84XEro
video_url: https://www.youtube.com/watch?v=VysvN84XEro
title: Zo digitaliseren we middeleeuwse handschriften | Aflevering 2 | KB nationale bibliotheek
description: |-
Terwijl onze Digital Manuscript Nomads het land doortrekken om middeleeuwse handschriften te digitaliseren, hebben we ook een projectteam dat dit in het KB-gebouw doet. Tamara en Dirk zijn onderdeel van dit team. 📷📖
Het doel van het project is om in twee jaar ruim 1.200 handschriften te digitaliseren. Elke dag maken ze ongeveer 700-800 fotos van de handschriften - dat zijn gemiddeld twee of drie boeken. Maar hoe vervoeren ze die boeken nou door de KB? Tamara laat het je zien.
description: 'Terwijl onze Digital Manuscript Nomads het land doortrekken om middeleeuwse handschriften te digitaliseren,
hebben we ook een projectteam dat dit in het KB-gebouw doet. Tamara en Dirk zijn onderdeel van dit team. 📷📖
Het doel van het project is om in twee jaar ruim 1.200 handschriften te digitaliseren. Elke dag maken ze ongeveer 700-800
fotos van de handschriften - dat zijn gemiddeld twee of drie boeken. Maar hoe vervoeren ze die boeken nou door de KB?
Tamara laat het je zien.'
published_at: '2025-05-21T10:23:59Z'
duration: PT53S
view_count: 379
@ -1057,9 +1110,12 @@ youtube_enrichment:
- video_id: IllfqRCuO9Q
video_url: https://www.youtube.com/watch?v=IllfqRCuO9Q
title: 'Alles over Willem Oltmans: 1.413 dagboeken in de KB collectie | KB nationale bibliotheek'
description: |-
Willem Oltmans (1925-2004) was 1 van Nederlands meest beruchte journalisten uit de 20e eeuw. Willem Oltmans begon al jong met het bijhouden van dagboeken. In de dagboeken hield hij nauwkeurig zijn bezigheden bij, zowel op professioneel als persoonlijk vlak. Ook zijn eigen brieven horen bij de collectie. Willem Oltmans gaf de collectie in 1992 zelf aan de KB. Pas in 2004, nadat hij overleed, kwamen de laatste dagboeken naar de KB.
💻 Ben je benieuwd geworden naar Willem Oltmans? Bekijk de collect
description: 'Willem Oltmans (1925-2004) was 1 van Nederlands meest beruchte journalisten uit de 20e eeuw. Willem Oltmans
begon al jong met het bijhouden van dagboeken. In de dagboeken hield hij nauwkeurig zijn bezigheden bij, zowel op professioneel
als persoonlijk vlak. Ook zijn eigen brieven horen bij de collectie. Willem Oltmans gaf de collectie in 1992 zelf aan
de KB. Pas in 2004, nadat hij overleed, kwamen de laatste dagboeken naar de KB.
💻 Ben je benieuwd geworden naar Willem Oltmans? Bekijk de collect'
published_at: '2025-05-15T09:02:14Z'
duration: PT3M34S
view_count: 662
@ -1070,9 +1126,11 @@ youtube_enrichment:
- video_id: _kRLFIp9dwU
video_url: https://www.youtube.com/watch?v=_kRLFIp9dwU
title: Zo digitaliseren we middeleeuwse handschriften | KB nationale bibliotheek
description: |-
Terwijl onze Digital Manuscript Nomads het land doortrekken om middeleeuwse handschriften te digitaliseren, hebben we ook een projectteam dat dit in het KB-gebouw doet. Tamara en Dirk zijn onderdeel van dit team. 📷📖
Het doel van het project is om in twee jaar ruim 1.200 handschriften te digitaliseren. Elke dag maken ze ongeveer 700-800 fotos van de handschriften (dat zijn twee of drie boeken). In deze reel laat Dirk je zien hoe ze dit doen!👆
description: 'Terwijl onze Digital Manuscript Nomads het land doortrekken om middeleeuwse handschriften te digitaliseren,
hebben we ook een projectteam dat dit in het KB-gebouw doet. Tamara en Dirk zijn onderdeel van dit team. 📷📖
Het doel van het project is om in twee jaar ruim 1.200 handschriften te digitaliseren. Elke dag maken ze ongeveer 700-800
fotos van de handschriften (dat zijn twee of drie boeken). In deze reel laat Dirk je zien hoe ze dit doen!👆'
published_at: '2025-05-15T07:48:47Z'
duration: PT1M23S
view_count: 837
@ -1083,9 +1141,12 @@ youtube_enrichment:
- video_id: ez76TEH71_Q
video_url: https://www.youtube.com/watch?v=ez76TEH71_Q
title: Maria Sibylla Merian | KB nationale bibliotheek
description: |-
Heb jij ooit gehoord van Maria Sibylla Merian? Misschien wel door de nieuwe film Metamorfose van filmmaker Pim Zwier. In de KB liggen verschillende collectiestukken van deze indrukwekkende vrouw. 🦋
Haar observaties en tekeningen van de metamorfose van rupsen tot vlinders zijn heel belangrijk geweest in de entomologie (de studie van insecten). 🐛 Ze gaf verschillende, prachtig geïllustreerde boeken uit over Europese insecten. Ook maakte ze een boek over Surinaamse insecten, waarvan wij een zeld
description: 'Heb jij ooit gehoord van Maria Sibylla Merian? Misschien wel door de nieuwe film Metamorfose van filmmaker
Pim Zwier. In de KB liggen verschillende collectiestukken van deze indrukwekkende vrouw. 🦋
Haar observaties en tekeningen van de metamorfose van rupsen tot vlinders zijn heel belangrijk geweest in de entomologie
(de studie van insecten). 🐛 Ze gaf verschillende, prachtig geïllustreerde boeken uit over Europese insecten. Ook maakte
ze een boek over Surinaamse insecten, waarvan wij een zeld'
published_at: '2025-04-09T12:55:49Z'
duration: PT1M10S
view_count: 501
@ -1096,9 +1157,12 @@ youtube_enrichment:
- video_id: PSxkR8Ml9eM
video_url: https://www.youtube.com/watch?v=PSxkR8Ml9eM
title: 5. Vondsten | Een nieuw boekenmagazijn voor de KB | KB nationale bibliotheek
description: |-
Als je miljoenen boeken verhuist wil je natuurlijk wel zeker weten dat je ze daarna nog kunt vinden. Daarom zijn onze magazijncollegas bijvoorbeeld druk bezig om onze collectiestukken te voorzien van barcodes. En onze standplaatscontroleurs controleren alles op schade en vindbaarheid. Daarbij komt ook wel eens een verrassing langs. Zo vonden we iets heel bijzonders in een oude atlas.
Als nationale bibliotheek streven we ernaar om zoveel mogelijk te bewaren van wat er in of over Nederland gesch
description: 'Als je miljoenen boeken verhuist wil je natuurlijk wel zeker weten dat je ze daarna nog kunt vinden. Daarom
zijn onze magazijncollegas bijvoorbeeld druk bezig om onze collectiestukken te voorzien van barcodes. En onze standplaatscontroleurs
controleren alles op schade en vindbaarheid. Daarbij komt ook wel eens een verrassing langs. Zo vonden we iets heel
bijzonders in een oude atlas.
Als nationale bibliotheek streven we ernaar om zoveel mogelijk te bewaren van wat er in of over Nederland gesch'
published_at: '2025-03-25T14:32:13Z'
duration: PT3M36S
view_count: 400
@ -1123,9 +1187,12 @@ youtube_enrichment:
- video_id: Q7WUtatSwYE
video_url: https://www.youtube.com/watch?v=Q7WUtatSwYE
title: 4. Klimaatbeheersing | Een nieuw boekenmagazijn voor de KB | KB nationale bibliotheek
description: |-
Om boeken en kranten te bewaren moet je zorgen dat het klimaat goed is: niet te warm of koud, maar ook niet te droog of vochtig. Nu doen we dit met enorme klimaatinstallaties, maar ons nieuwe magazijn wordt zo gebouwd dat dat allemaal niet nodig is. Marco Martens, adviseur conservering bij de KB, legt uit hoe dat mogelijk is.
Als nationale bibliotheek streven we ernaar om zoveel mogelijk te bewaren van wat er in of over Nederland geschreven wordt. De komende jaren verhuizen we deze enorme fysie
description: 'Om boeken en kranten te bewaren moet je zorgen dat het klimaat goed is: niet te warm of koud, maar ook niet
te droog of vochtig. Nu doen we dit met enorme klimaatinstallaties, maar ons nieuwe magazijn wordt zo gebouwd dat dat
allemaal niet nodig is. Marco Martens, adviseur conservering bij de KB, legt uit hoe dat mogelijk is.
Als nationale bibliotheek streven we ernaar om zoveel mogelijk te bewaren van wat er in of over Nederland geschreven
wordt. De komende jaren verhuizen we deze enorme fysie'
published_at: '2025-02-18T10:40:11Z'
duration: PT3M17S
view_count: 248
@ -1136,9 +1203,11 @@ youtube_enrichment:
- video_id: 2dnjMd2Rs3U
video_url: https://www.youtube.com/watch?v=2dnjMd2Rs3U
title: Wilma ontdekt de KB - Trailer | KB nationale bibliotheek
description: |-
In deze reeks maakt de nieuwe Algemeen directeur Wilma van Wezenbeek kennis met de KB. Achter de schermen leert ze werknemers kennen die belangrijk werk verrichten dat niet altijd bij iedereen bekend is. Vaak op indrukwekkende schaal.
#KB #nationalebibliotheek #directeur #WilmavanWezenbeek #erfgoed #werknemers
description: 'In deze reeks maakt de nieuwe Algemeen directeur Wilma van Wezenbeek kennis met de KB. Achter de schermen
leert ze werknemers kennen die belangrijk werk verrichten dat niet altijd bij iedereen bekend is. Vaak op indrukwekkende
schaal.
#KB #nationalebibliotheek #directeur #WilmavanWezenbeek #erfgoed #werknemers'
published_at: '2025-02-03T10:34:25Z'
duration: PT37S
view_count: 118
@ -1164,9 +1233,11 @@ youtube_enrichment:
- video_id: 8YUcQlxOGuU
video_url: https://www.youtube.com/watch?v=8YUcQlxOGuU
title: 'Wilma ontdekt: 96 bibliotheekorganisaties met activiteiten rond digitaal burgerschap | KB'
description: |-
In deze reeks maakt de nieuwe Algemeen directeur Wilma van Wezenbeek kennis met de KB. Achter de schermen leert ze werknemers kennen die belangrijk werk verrichten dat niet altijd bij iedereen bekend is. Vaak op indrukwekkende schaal. Vandaag: Marjolein Oomes, Programmamanager digitaal burgerschap.
#bibliotheken #digitaalburgerschap #kb #werknemers #wilmavanwezenbeek
description: 'In deze reeks maakt de nieuwe Algemeen directeur Wilma van Wezenbeek kennis met de KB. Achter de schermen
leert ze werknemers kennen die belangrijk werk verrichten dat niet altijd bij iedereen bekend is. Vaak op indrukwekkende
schaal. Vandaag: Marjolein Oomes, Programmamanager digitaal burgerschap.
#bibliotheken #digitaalburgerschap #kb #werknemers #wilmavanwezenbeek'
published_at: '2024-12-23T09:30:04Z'
duration: PT2M40S
view_count: 104
@ -1177,9 +1248,11 @@ youtube_enrichment:
- video_id: TvjFfttoags
video_url: https://www.youtube.com/watch?v=TvjFfttoags
title: 'Wilma ontdekt: 7,2 miljoen unieke bezoeken DBNL | KB nationale bibliotheek'
description: |-
In deze reeks maakt de nieuwe Algemeen directeur Wilma van Wezenbeek kennis met de KB. Achter de schermen leert ze werknemers kennen die belangrijk werk verrichten dat niet altijd bij iedereen bekend is. Vaak op indrukwekkende schaal. Vandaag: Frank Heinen, Functioneel beheerder digitalisering.
#dbnl #KB #nationalebibliotheek #werknemers #achterdeschermen #wilmavanwezenbeek
description: 'In deze reeks maakt de nieuwe Algemeen directeur Wilma van Wezenbeek kennis met de KB. Achter de schermen
leert ze werknemers kennen die belangrijk werk verrichten dat niet altijd bij iedereen bekend is. Vaak op indrukwekkende
schaal. Vandaag: Frank Heinen, Functioneel beheerder digitalisering.
#dbnl #KB #nationalebibliotheek #werknemers #achterdeschermen #wilmavanwezenbeek'
published_at: '2024-12-09T07:24:20Z'
duration: PT2M20S
view_count: 98
@ -1190,9 +1263,11 @@ youtube_enrichment:
- video_id: wxlnPYbplqA
video_url: https://www.youtube.com/watch?v=wxlnPYbplqA
title: 'Wilma ontdekt: 781 IBL-aanvragen per maand | KB nationale bibliotheek'
description: |-
In deze reeks maakt de nieuwe Algemeen directeur Wilma van Wezenbeek kennis met de KB. Achter de schermen leert ze werknemers kennen die belangrijk werk verrichten dat niet altijd bij iedereen bekend is. Vaak op indrukwekkende schaal. Vandaag: senior informatiespecialist Karijn Dillmann.
#kb #nationalebibliotheek #achterdeschermen #wilmaontdekt #directeur #IBL-aanvragen
description: 'In deze reeks maakt de nieuwe Algemeen directeur Wilma van Wezenbeek kennis met de KB. Achter de schermen
leert ze werknemers kennen die belangrijk werk verrichten dat niet altijd bij iedereen bekend is. Vaak op indrukwekkende
schaal. Vandaag: senior informatiespecialist Karijn Dillmann.
#kb #nationalebibliotheek #achterdeschermen #wilmaontdekt #directeur #IBL-aanvragen'
published_at: '2024-11-11T16:14:15Z'
duration: PT2M30S
view_count: 113
@ -1203,9 +1278,11 @@ youtube_enrichment:
- video_id: GF5up4b963o
video_url: https://www.youtube.com/watch?v=GF5up4b963o
title: 'Wilma ontdekt: 500 luchtkiemgetalmetingen | KB nationale bibliotheek'
description: |-
In deze reeks maakt de nieuwe Algemeen directeur Wilma van Wezenbeek kennis met de KB. Achter de schermen leert ze werknemers kennen die belangrijk werk verrichten dat niet altijd bij iedereen bekend is. Vaak op indrukwekkende schaal. Vandaag: behoudsmedewerker Aicha Hockx.
#kb #collectiebehoud #erfgoed #behoudsmedewerker #directeur
description: 'In deze reeks maakt de nieuwe Algemeen directeur Wilma van Wezenbeek kennis met de KB. Achter de schermen
leert ze werknemers kennen die belangrijk werk verrichten dat niet altijd bij iedereen bekend is. Vaak op indrukwekkende
schaal. Vandaag: behoudsmedewerker Aicha Hockx.
#kb #collectiebehoud #erfgoed #behoudsmedewerker #directeur'
published_at: '2024-10-28T12:29:04Z'
duration: PT2M3S
view_count: 144
@ -1216,9 +1293,11 @@ youtube_enrichment:
- video_id: 5hpeLwWEEeU
video_url: https://www.youtube.com/watch?v=5hpeLwWEEeU
title: 'Wilma ontdekt: 2 miljard digitale bestanden | KB nationale bibliotheek'
description: |-
In deze reeks maakt de nieuwe Algemeen directeur Wilma van Wezenbeek kennis met de KB. Achter de schermen leert ze werknemers kennen die belangrijk werk verrichten dat niet altijd bij iedereen bekend is. Vaak op indrukwekkende schaal. Vandaag: hoofd van de afdeling Digitale Duurzame Toegang, Jeffrey van der Hoeven.
#nationalebibliotheek #kb #digitalebestanden #erfgoed #kennismaking
description: 'In deze reeks maakt de nieuwe Algemeen directeur Wilma van Wezenbeek kennis met de KB. Achter de schermen
leert ze werknemers kennen die belangrijk werk verrichten dat niet altijd bij iedereen bekend is. Vaak op indrukwekkende
schaal. Vandaag: hoofd van de afdeling Digitale Duurzame Toegang, Jeffrey van der Hoeven.
#nationalebibliotheek #kb #digitalebestanden #erfgoed #kennismaking'
published_at: '2024-10-18T11:25:15Z'
duration: PT2M13S
view_count: 213
@ -1229,9 +1308,11 @@ youtube_enrichment:
- video_id: Gv8RRnoSq6I
video_url: https://www.youtube.com/watch?v=Gv8RRnoSq6I
title: 'Wilma ontdekt: 50.000 boeken, kranten en tijdschriften per jaar | KB nationale bibliotheek'
description: |-
In deze reeks maakt de nieuwe Algemeen directeur Wilma van Wezenbeek kennis met de KB. Achter de schermen leert ze werknemers kennen die belangrijk werk verrichten dat niet altijd bij iedereen bekend is. Vaak op indrukwekkende schaal. Vandaag: metadateren, met metadataspecialist Júlia Kemendi.
#kb #nationalebibliotheek #wilmaontdekt #collectie #metadata #erfgoed
description: 'In deze reeks maakt de nieuwe Algemeen directeur Wilma van Wezenbeek kennis met de KB. Achter de schermen
leert ze werknemers kennen die belangrijk werk verrichten dat niet altijd bij iedereen bekend is. Vaak op indrukwekkende
schaal. Vandaag: metadateren, met metadataspecialist Júlia Kemendi.
#kb #nationalebibliotheek #wilmaontdekt #collectie #metadata #erfgoed'
published_at: '2024-10-01T13:22:38Z'
duration: PT2M18S
view_count: 404
@ -1242,9 +1323,10 @@ youtube_enrichment:
- video_id: 4j090xY0-Ic
video_url: https://www.youtube.com/watch?v=4j090xY0-Ic
title: 14 directeuren in 225 jaar | Start Wilma van Wezenbeek, nieuwe Algemeen directeur KB
description: |-
👩‍🎓 Op maandag 2 september 2024 begon Wilma Van Wezenbeek als Algemeen directeur van de KB. Ze volgde Lily Knibbeler op, die na 10 jaar directeurschap afscheid nam.
⏯️ Van Wezenbeek is de 14e directeur in 225 jaar tijd. Wie haar voorgangers waren? Dat zie je in de video. 🎥
description: '👩‍🎓 Op maandag 2 september 2024 begon Wilma Van Wezenbeek als Algemeen directeur van de KB. Ze volgde Lily
Knibbeler op, die na 10 jaar directeurschap afscheid nam.
⏯️ Van Wezenbeek is de 14e directeur in 225 jaar tijd. Wie haar voorgangers waren? Dat zie je in de video. 🎥'
published_at: '2024-09-05T07:02:04Z'
duration: PT34S
view_count: 235
@ -1334,10 +1416,14 @@ youtube_enrichment:
- video_id: 473lv_7lzZc
video_url: https://www.youtube.com/watch?v=473lv_7lzZc
title: 'Reciting Footsteps of a Female Migrant: Soerdie | Tentoonstelling KB | 26 april t/m 14 juli 2024'
description: |-
Van 26 april tot en met 14 juli vindt de tentoonstelling Reciting Footsteps of a Female Migrant: Soerdie van kunstenaar en onderzoeker Sarojini Lewis plaats in de KB. De tentoonstelling gaat over de eerste vrouwelijke contractarbeider die van India naar Suriname emigreerde: Soerdie.
description: 'Van 26 april tot en met 14 juli vindt de tentoonstelling Reciting Footsteps of a Female Migrant: Soerdie
van kunstenaar en onderzoeker Sarojini Lewis plaats in de KB. De tentoonstelling gaat over de eerste vrouwelijke contractarbeider
die van India naar Suriname emigreerde: Soerdie.
Onderzoek Sarojini Lewis
Sarojini Lewis doet al enige tijd onderzoek naar hoe verschillende koloniale geschiedenissen samenkomen in een persoonlijk leven. In 2021 nodigde de KB haar uit om ook in de collecties van d
Sarojini Lewis doet al enige tijd onderzoek naar hoe verschillende koloniale geschiedenissen samenkomen in een persoonlijk
leven. In 2021 nodigde de KB haar uit om ook in de collecties van d'
published_at: '2024-05-14T14:12:00Z'
duration: PT2M57S
view_count: 207
@ -1348,9 +1434,12 @@ youtube_enrichment:
- video_id: Wlry7677cuE
video_url: https://www.youtube.com/watch?v=Wlry7677cuE
title: Hoe verhuist de KB 120 kilometer boeken? | KB nationale bibliotheek
description: |-
Als nationale bibliotheek streven we ernaar om zoveel mogelijk te bewaren van wat er in of over Nederland geschreven wordt. De komende jaren verhuizen we deze enorme fysieke collectie naar een nieuw gerobotiseerd magazijn. Dat is best een grote taak: we moeten namelijk 120 kilometer aan boekenplank verhuizen en die collectie blijft maar groeien! In deze videoserie laten we zien wat er allemaal komt kijken bij deze megaoperatie.
📚 Lees meer over het nieuwe boekenmagazijn: https://www.kb.nl/over-
description: 'Als nationale bibliotheek streven we ernaar om zoveel mogelijk te bewaren van wat er in of over Nederland
geschreven wordt. De komende jaren verhuizen we deze enorme fysieke collectie naar een nieuw gerobotiseerd magazijn.
Dat is best een grote taak: we moeten namelijk 120 kilometer aan boekenplank verhuizen en die collectie blijft maar
groeien! In deze videoserie laten we zien wat er allemaal komt kijken bij deze megaoperatie.
📚 Lees meer over het nieuwe boekenmagazijn: https://www.kb.nl/over-'
published_at: '2024-02-15T15:59:19Z'
duration: PT1M30S
view_count: 1906
@ -1361,9 +1450,12 @@ youtube_enrichment:
- video_id: iUFRacGutFY
video_url: https://www.youtube.com/watch?v=iUFRacGutFY
title: 1. De collectie restaureren en veilig verpakken | KB nationale bibliotheek
description: |-
In onze Bijzondere Collectie hebben we ook veel kwetsbare boeken die we schadevrij moeten verhuizen. Dit vereist zorgvuldig werk. In deze video vertellen restaurator Imke Neels en magazijnmedewerker Marloes Ligtvoet hoe we bepalen welke boeken restauratie of verpakking nodig hebben en wat daar bij komt kijken.
Als nationale bibliotheek streven we ernaar om zoveel mogelijk te bewaren van wat er in of over Nederland geschreven wordt. De komende jaren verhuizen we deze enorme fysieke collectie naa
description: 'In onze Bijzondere Collectie hebben we ook veel kwetsbare boeken die we schadevrij moeten verhuizen. Dit
vereist zorgvuldig werk. In deze video vertellen restaurator Imke Neels en magazijnmedewerker Marloes Ligtvoet hoe we
bepalen welke boeken restauratie of verpakking nodig hebben en wat daar bij komt kijken.
Als nationale bibliotheek streven we ernaar om zoveel mogelijk te bewaren van wat er in of over Nederland geschreven
wordt. De komende jaren verhuizen we deze enorme fysieke collectie naa'
published_at: '2024-02-15T15:59:15Z'
duration: PT2M30S
view_count: 657
@ -1389,11 +1481,15 @@ youtube_enrichment:
- video_id: FSDjVpr_LBs
video_url: https://www.youtube.com/watch?v=FSDjVpr_LBs
title: 'KB Wrapped: een terugblik op 2023 | KB nationale bibliotheek'
description: |-
In 2023 vierden we het 225-jarig bestaan van de KB, één van de thema's die afgelopen jaar centraal stonden. Maar, we deden nog veel meer. In dit filmpje zie je een kort overzicht van wat we in 2023 bereikt hebben. Zo krijg je een indruk van ons werk.
description: 'In 2023 vierden we het 225-jarig bestaan van de KB, één van de thema''s die afgelopen jaar centraal stonden.
Maar, we deden nog veel meer. In dit filmpje zie je een kort overzicht van wat we in 2023 bereikt hebben. Zo krijg je
een indruk van ons werk.
Meer weten?
👉 Hier vind je de videos en artikelen die in het filmpje voorbijkwamen: https://www.kb.nl/nieuws/kb-wrapped-een-terugblik-op-2023
#terugblik #hoogtepunten #kb #nationalebibliotheek #2023
#terugblik #hoogtepunten #kb #nationalebibliotheek #2023'
published_at: '2023-12-28T08:15:11Z'
duration: PT1M16S
view_count: 437
@ -8527,3 +8623,39 @@ logo_enrichment:
has_favicon: true
has_og_image: false
favicon_count: 16
mission_statement:
- statement_id: https://nde.nl/ontology/hc/mission/nl-zh-dha-l-kb/mission-2026
statement_type: mission
statement_text: Een slimmer, vaardiger en creatiever Nederland.
statement_language: nl
extracted_verbatim: true
source_url: https://www.kb.nl/organisatie
content_hash: sha256-GnAIOMleEO7ZOt9J6de8j5B07QJMRkYF7EoweZOxDYE=
provenance:
statement_created_at: '2026-01-04T16:49:36.061572+00:00'
source_archived_at: '2026-01-04T16:49:16.010763+00:00'
retrieval_agent: linkup-api
extraction_agent: zai-glm/glm-4.7
extraction_confidence: 0.95
prov:wasDerivedFrom: https://www.kb.nl/organisatie
prov:generatedAtTime: '2026-01-04T16:49:36.061572+00:00'
source_section: Over ons
- statement_id: https://nde.nl/ontology/hc/mission/nl-zh-dha-l-kb/goal-2026
statement_type: goal
statement_text: We maken voor iedereen in Nederland onderzoeken, lezen, ontdekken en een leven lang leren mogelijk. Thuis
en in de bibliotheek, online en offline. Al sinds onze oprichting in 1798 proberen we zoveel mogelijk te verzamelen van
wat in of over Nederland is geschreven. We zetten ons samen met de openbare bibliotheken in voor leesbevordering, digitale
inclusie en een leven lang ontwikkelen.
statement_language: nl
extracted_verbatim: true
source_url: https://www.kb.nl/organisatie
content_hash: sha256-LKGcgiMqHNWGqdedj8xQRs6oCe0dMfHFLz48iLhml2A=
provenance:
statement_created_at: '2026-01-04T16:49:36.061595+00:00'
source_archived_at: '2026-01-04T16:49:16.010763+00:00'
retrieval_agent: linkup-api
extraction_agent: zai-glm/glm-4.7
extraction_confidence: 0.95
prov:wasDerivedFrom: https://www.kb.nl/organisatie
prov:generatedAtTime: '2026-01-04T16:49:36.061595+00:00'
source_section: Over ons

View file

@ -174,8 +174,7 @@ provenance:
notes:
- Provenance tracking added retroactively
- claim_level_provenance available in sources section
- Removed incorrect wikidata_enrichment on 2025-12-08T08:20:07.741650+00:00. Re-enrichment
required with proper matching.
- Removed incorrect wikidata_enrichment on 2025-12-08T08:20:07.741650+00:00. Re-enrichment required with proper matching.
- Canonical location added via normalize_custodian_files.py on 2025-12-08T23:19:48Z
- Canonical location added via normalize_custodian_files.py on 2025-12-09T07:11:20Z
qp_resolution_timestamp: '2025-11-27T20:45:59.924317+00:00'
@ -303,55 +302,50 @@ google_maps_enrichment:
author_uri: https://www.google.com/maps/contrib/118084598065107648064/reviews
rating: 5
relative_time_description: 7 maanden geleden
text: 'De Koninklijke Bibliotheek (KB) in Den Haag is een indrukwekkende culturele
instelling die niet alleen fungeert als nationale bibliotheek van Nederland,
maar ook als een belangrijke onderzoeks- en kennisplek. Het moderne gebouw is
architectonisch een waar meesterwerk, met een open en uitnodigende indeling
die bezoekers aanmoedigt om te verkennen en te studeren.
text: 'De Koninklijke Bibliotheek (KB) in Den Haag is een indrukwekkende culturele instelling die niet alleen fungeert
als nationale bibliotheek van Nederland, maar ook als een belangrijke onderzoeks- en kennisplek. Het moderne gebouw
is architectonisch een waar meesterwerk, met een open en uitnodigende indeling die bezoekers aanmoedigt om te verkennen
en te studeren.
Bij binnenkomst worden bezoekers verwelkomd door een ruime foyer en een gezellige
koffiecorner. De bibliotheek herbergt een schat aan materialen, variërend van
zeldzame manuscripten tot digitale bronnen, waardoor het een waardevolle bron
Bij binnenkomst worden bezoekers verwelkomd door een ruime foyer en een gezellige koffiecorner. De bibliotheek herbergt
een schat aan materialen, variërend van zeldzame manuscripten tot digitale bronnen, waardoor het een waardevolle bron
is voor onderzoekers, studenten en geïnteresseerden in literatuur en geschiedenis.
Er zijn regelmatig tentoonstellingen, lezingen en andere evenementen die gericht
zijn op het promoten van literatuur en kennis, wat de KB tot een levendige ontmoetingsplek
maakt. De sfeer is rustig en stimulerend, ideaal voor zowel studeren als ontspanning.
Er zijn regelmatig tentoonstellingen, lezingen en andere evenementen die gericht zijn op het promoten van literatuur
en kennis, wat de KB tot een levendige ontmoetingsplek maakt. De sfeer is rustig en stimulerend, ideaal voor zowel studeren
als ontspanning.
Een ander pluspunt is de toegankelijkheid; de bibliotheek is goed bereikbaar
en biedt faciliteiten zoals studieruimtes, koffiehoeken en gratis Wi-Fi.
Een ander pluspunt is de toegankelijkheid; de bibliotheek is goed bereikbaar en biedt faciliteiten zoals studieruimtes,
koffiehoeken en gratis Wi-Fi.
Al met al is de Koninklijke Bibliotheek in Den Haag een must-visit voor iedereen
die geïnteresseerd is in boeken en cultuur, en het speelt een cruciale rol in
het behoud en de promotie van Nederlandse erfgoed en kennis.'
Al met al is de Koninklijke Bibliotheek in Den Haag een must-visit voor iedereen die geïnteresseerd is in boeken en
cultuur, en het speelt een cruciale rol in het behoud en de promotie van Nederlandse erfgoed en kennis.'
publish_time: '2025-04-07T16:37:52.928576Z'
- author_name: Bas Bouwman
author_uri: https://www.google.com/maps/contrib/101671591871983405195/reviews
rating: 5
relative_time_description: een maand geleden
text: 'Club Erasmus is een prachtige zaal, zeer geschikt voor avonden zoals gisteren:
een debatavond over AI. Veelbelovende programmering, aardige en kundige werknemers!'
text: 'Club Erasmus is een prachtige zaal, zeer geschikt voor avonden zoals gisteren: een debatavond over AI. Veelbelovende
programmering, aardige en kundige werknemers!'
publish_time: '2025-10-07T10:39:34.347088311Z'
- author_name: Eveline Steijn
author_uri: https://www.google.com/maps/contrib/104742799728920793726/reviews
rating: 3
relative_time_description: 2 jaar geleden
text: In potentie een fijne plaats om te studeren. Het is wel jammer dat je hier
niets mag nuttigen. Als je dorst of trek hebt moet je best een eind lopen naar
de kluisjes die beneden zijn wat een vervelende onderbreking kan zijn. Het ligt
text: In potentie een fijne plaats om te studeren. Het is wel jammer dat je hier niets mag nuttigen. Als je dorst of trek
hebt moet je best een eind lopen naar de kluisjes die beneden zijn wat een vervelende onderbreking kan zijn. Het ligt
aan de plaats waar je zit, maar het personeel kan wat luidruchtig zijn.
publish_time: '2023-11-20T21:47:30.273128Z'
- author_name: Ad
author_uri: https://www.google.com/maps/contrib/110726545793908211189/reviews
rating: 4
relative_time_description: 2 jaar geleden
text: De bieb krijgt een frisse look en daar ben ik blij mee. Er zijn ook twee
leuke cafeetjes (begane grond en op de laatste verdieping). De sfeer is nu veel
leuker en uitnodigender :)
text: De bieb krijgt een frisse look en daar ben ik blij mee. Er zijn ook twee leuke cafeetjes (begane grond en op de
laatste verdieping). De sfeer is nu veel leuker en uitnodigender :)
publish_time: '2023-02-17T19:20:12.413778Z'
- author_name: Tom Ligthart
author_uri: https://www.google.com/maps/contrib/103714765094515020800/reviews
@ -427,8 +421,7 @@ ghcid:
ghcid_numeric: 13169089448534120583
valid_from: '2025-12-02T14:56:45.615377+00:00'
valid_to: null
reason: GHCID regenerated with Google Maps locality fix (Dec 2025) - name suffix
added for collision
reason: GHCID regenerated with Google Maps locality fix (Dec 2025) - name suffix added for collision
location_resolution:
method: GOOGLE_MAPS_LOCALITY
google_maps_locality: Den Haag
@ -545,8 +538,8 @@ digital_platform_v2:
platform_name: KB, nationale bibliotheek Website
platform_url: https://www.kb.nl/
platform_type: DISCOVERY_PORTAL
description: 'Bekijk de digitale, gedrukte en geschreven erfgoedcollecties van
Nederland: handschriften, catalogi, boeken, tijdschriften, kranten en kaarten.'
description: 'Bekijk de digitale, gedrukte en geschreven erfgoedcollecties van Nederland: handschriften, catalogi, boeken,
tijdschriften, kranten en kaarten.'
language: nl
og_image: null
favicon: https://www.kb.nl/themes/custom/kbcorporate/favicon.ico
@ -603,9 +596,8 @@ timeline_enrichment:
- https://projecten.denhaag.nl/project/herontwikkeling-koninklijke-bibliotheek/
- https://www.dvdp.nl/nl/werk/koninklijke-bibliotheek-den-haag
linkup_query: '"Koninklijke Bibliotheek" Den Haag opgericht OR gesticht OR sinds'
linkup_answer: De Koninklijke Bibliotheek in Den Haag is opgericht in 1798. In
1806 kreeg zij van koning Lodewijk Napoleon de naam "Koninklijke Bibliotheek".
Sinds 1982 is de bibliotheek gevestigd in het huidige gebouw aan het Prins Willem
linkup_answer: De Koninklijke Bibliotheek in Den Haag is opgericht in 1798. In 1806 kreeg zij van koning Lodewijk Napoleon
de naam "Koninklijke Bibliotheek". Sinds 1982 is de bibliotheek gevestigd in het huidige gebouw aan het Prins Willem
Alexanderhof in Den Haag.
fetch_timestamp: '2025-12-15T22:16:47.851363+00:00'
archive_path: web/1227/linkup/linkup_founding_20251215T221647Z.json
@ -616,13 +608,11 @@ timeline_enrichment:
event_date: '1982'
date_precision: year
approximate: false
description: gevestigd in het huidige gebouw aan het Prins Willem Alexanderhof
in Den Haag
description: gevestigd in het huidige gebouw aan het Prins Willem Alexanderhof in Den Haag
source_urls: *id001
linkup_query: '"Koninklijke Bibliotheek" Den Haag opgericht OR gesticht OR sinds'
linkup_answer: De Koninklijke Bibliotheek in Den Haag is opgericht in 1798. In
1806 kreeg zij van koning Lodewijk Napoleon de naam "Koninklijke Bibliotheek".
Sinds 1982 is de bibliotheek gevestigd in het huidige gebouw aan het Prins Willem
linkup_answer: De Koninklijke Bibliotheek in Den Haag is opgericht in 1798. In 1806 kreeg zij van koning Lodewijk Napoleon
de naam "Koninklijke Bibliotheek". Sinds 1982 is de bibliotheek gevestigd in het huidige gebouw aan het Prins Willem
Alexanderhof in Den Haag.
fetch_timestamp: '2025-12-15T22:16:47.851363+00:00'
archive_path: web/1227/linkup/linkup_founding_20251215T221647Z.json
@ -886,12 +876,11 @@ wikidata_enrichment:
description: French learned society
- id: Q27981723
label: Open Preservation Foundation
description: organization working to sustain technology and knowledge for the
long-term management of digital cultural heritage
description: organization working to sustain technology and knowledge for the long-term management of digital cultural
heritage
- id: Q475225
label: World Digital Library
description: international digital library operated by UNESCO and the United
States Library of Congress
description: international digital library operated by UNESCO and the United States Library of Congress
- id: Q1127581
label: Consortium of European Research Libraries
description: consortium
@ -915,12 +904,11 @@ wikidata_enrichment:
description: industry association in scholarly publishing
- id: Q1376383
label: European Bureau of Library, Information and Documentation Associations
description: professional organization for library and information science institutions
in Europe
description: professional organization for library and information science institutions in Europe
- id: Q697497
label: International Internet Preservation Consortium
description: consortium of libraries and other organizations established to
coordinate efforts to preserve internet content
description: consortium of libraries and other organizations established to coordinate efforts to preserve internet
content
- id: Q35677307
label: IIIF Consortium
description: steering and sustainability organization for the IIIF community
@ -930,8 +918,8 @@ wikidata_enrichment:
has_parts:
- id: Q135906998
label: Book warehouse of the Koninklijke Bibliotheek, the Netherlands
description: New book warehouse of the KB, national library of the Netherlands,
in the Harnaschpolder in Den Hoorn (2025 - )
description: New book warehouse of the KB, national library of the Netherlands, in the Harnaschpolder in Den Hoorn (2025
- )
wikidata_web:
official_website: https://www.kb.nl
wikidata_official_website: https://www.kb.nl
@ -1047,3 +1035,20 @@ logo_enrichment:
has_favicon: true
has_og_image: false
favicon_count: 16
mission_statement:
- statement_id: https://nde.nl/ontology/hc/mission/nl-zh-dha-l-kb/mission-2026
statement_type: mission
statement_text: Een slimmer, vaardiger en creatiever Nederland.
statement_language: nl
extracted_verbatim: true
source_url: https://www.kb.nl/organisatie
content_hash: sha256-GnAIOMleEO7ZOt9J6de8j5B07QJMRkYF7EoweZOxDYE=
provenance:
statement_created_at: '2026-01-04T15:57:09.779978+00:00'
source_archived_at: '2026-01-04T15:56:44.523793+00:00'
retrieval_agent: linkup-api
extraction_agent: zai-glm/glm-4.7
extraction_confidence: 0.95
prov:wasDerivedFrom: https://www.kb.nl/organisatie
prov:generatedAtTime: '2026-01-04T15:57:09.779978+00:00'
source_section: Over ons

View file

@ -66,8 +66,8 @@ wikidata_enrichment:
instance_of: &id001
- id: Q33506
label: museum
description: institution that holds artifacts and other objects of scientific,
artistic, cultural, historical, or other importance
description: institution that holds artifacts and other objects of scientific, artistic, cultural, historical, or other
importance
- id: Q7315155
label: research center
description: facility dedicated to research
@ -310,44 +310,39 @@ google_maps_enrichment:
author_uri: https://www.google.com/maps/contrib/108733185586963817328/reviews
rating: 5
relative_time_description: 4 maanden geleden
text: Lommerrijk en leuk. Lijkt me een geweldige plek om wat te eten! Geen idee
of dat ook kan?
text: Lommerrijk en leuk. Lijkt me een geweldige plek om wat te eten! Geen idee of dat ook kan?
publish_time: '2025-07-04T13:56:15.718201319Z'
- author_name: Ruud van Loenen
author_uri: https://www.google.com/maps/contrib/108515059279632080987/reviews
rating: 3
relative_time_description: 6 jaar geleden
text: Op zich interessant museum over de Nederlands-Indische achtergrond. Maar
omdat het relatief klein is en er alleen thematische tentoonstellingen worden
gehouden oogt het geheel wat mager. Er ontbreekt een permanente collectie waarin
de basis (kolonisatie-het leven in de kolonie- het ontstaan van de Indo-Europese
gemeenschap- het leven onder de Japanse bezetting - de Bersiap- de dekolonisatie
en de opname in Nederland etc.) wordt uitgelegd.
text: Op zich interessant museum over de Nederlands-Indische achtergrond. Maar omdat het relatief klein is en er alleen
thematische tentoonstellingen worden gehouden oogt het geheel wat mager. Er ontbreekt een permanente collectie waarin
de basis (kolonisatie-het leven in de kolonie- het ontstaan van de Indo-Europese gemeenschap- het leven onder de Japanse
bezetting - de Bersiap- de dekolonisatie en de opname in Nederland etc.) wordt uitgelegd.
publish_time: '2019-09-05T09:44:11.107835Z'
- author_name: Tanner H
author_uri: https://www.google.com/maps/contrib/108011101785820356154/reviews
rating: 3
relative_time_description: 5 jaar geleden
text: Klein, maar netjes. De balie is direct in de entree en wordt gerund door
enthousiaste vrijwilligers. Mijn bezoek was gericht op de tentoonstelling "Depokkers";
nazaten van vrijgelaten slaven, na overlijden van Cornelis Chastelein, 1714.
Nu 2020 bestaan de clans nog stééds. Het zijn er 12, eigenlijk 11; de clan Zadokh
is uitgestorven.Op internet te vinden onder "Depok".
text: Klein, maar netjes. De balie is direct in de entree en wordt gerund door enthousiaste vrijwilligers. Mijn bezoek
was gericht op de tentoonstelling "Depokkers"; nazaten van vrijgelaten slaven, na overlijden van Cornelis Chastelein,
1714. Nu 2020 bestaan de clans nog stééds. Het zijn er 12, eigenlijk 11; de clan Zadokh is uitgestorven.Op internet
te vinden onder "Depok".
publish_time: '2020-09-11T08:49:51.061638Z'
- author_name: Indische Kwestie / Indisch Platform 2.0
author_uri: https://www.google.com/maps/contrib/104352121822949405612/reviews
rating: 1
relative_time_description: 4 jaar geleden
text: Opgezet als afkoopsom voor het meer dan 75 jaar niet gehonoreerde rechtsherstel.
Symboolpolitiek Kabinet Rutte en de diverse voorgaande Kabinetten. Zónder draagvlak
door kabinet doorgedrukt waarbij de Tweede Kamer verkeerd is voorgelicht.
text: Opgezet als afkoopsom voor het meer dan 75 jaar niet gehonoreerde rechtsherstel. Symboolpolitiek Kabinet Rutte en
de diverse voorgaande Kabinetten. Zónder draagvlak door kabinet doorgedrukt waarbij de Tweede Kamer verkeerd is voorgelicht.
publish_time: '2021-09-12T09:35:28.573613Z'
- author_name: Marco König
author_uri: https://www.google.com/maps/contrib/115717590639214100457/reviews
rating: 5
relative_time_description: 5 jaar geleden
text: Een prachtig centrum met goede informatie en die Indische sfeer. Een bezoekje
afronden met koffie en... spekkoek. Beter wordt het niet.
text: Een prachtig centrum met goede informatie en die Indische sfeer. Een bezoekje afronden met koffie en... spekkoek.
Beter wordt het niet.
publish_time: '2020-08-19T15:59:03.525091Z'
photo_urls:
- https://places.googleapis.com/v1/places/ChIJK0_b2mOkx0cRC-xKhkbf87U/photos/AWn5SU5zbHBBQitfzQaRIMt09X3aNOMggg_HIdTtRg0haIOkg0CzG0bjaGQZ1p_DA_i1DgAs4LbZYoMwbufrdeitD49yaloib2ekgBnLSGSTSBxZyh6uiTfEYp7_9hPhluPj5GHZYy4BxELbon1G9Tm73vL1z1GHupED3N_Iodug_ASG3ACq03NRcPWFls33E23UHKKS_oS-Be7bVHxrzaqKPf5bRpJ9rh7wkKSWljURSWXRRorxrftWkdWYvoggIFjr-y73XUd7wx8M40iVs2g5hN4knfszu8JIZ7GkPLtXBdhDq-hJVCeQqHRqs_VHma4VNtjrIzhFPAQC1oX3R1ta00Dy4bhY8PZJmxw-H85A-5i6lcSHRsWVClMkhzMGU0UfLyB38oQL-kPHMhdVJVLDxgYsJrFhOkzNjrCVzBAC3_kuTzXQ/media?maxWidthPx=800&key=AIzaSyAHuazNth9ZvfRFYk5-v49CwXwhABH8Ri0
@ -535,9 +530,8 @@ timespan:
end_of_the_end: null
sources:
- 'Wikidata P571 (inception): https://www.wikidata.org/wiki/Q65028829'
notes: Indisch Herinneringscentrum established in 2017. Memorial center dedicated
to the history of the Dutch East Indies and the experiences of Dutch-Indonesian
communities.
notes: Indisch Herinneringscentrum established in 2017. Memorial center dedicated to the history of the Dutch East Indies
and the experiences of Dutch-Indonesian communities.
location:
latitude: 52.086869199999995
longitude: 4.3064161
@ -572,9 +566,8 @@ digital_platform_v2:
platform_name: Het Indisch Herinneringscentrum Website
platform_url: https://www.indischherinneringscentrum.nl/
platform_type: DISCOVERY_PORTAL
description: Het Indisch Herinneringscentrum is dé plek waar je het Indisch verleden
leert kennen, je roots kan onderzoeken en waar je ontdekt wat het Indisch-Nederlands
verhaal betekent voor ons Nederland van vandaag en morgen.
description: Het Indisch Herinneringscentrum is dé plek waar je het Indisch verleden leert kennen, je roots kan onderzoeken
en waar je ontdekt wat het Indisch-Nederlands verhaal betekent voor ons Nederland van vandaag en morgen.
language: nl
og_image: null
favicon: http://www.indischherinneringscentrum.nl/themes/custom/ihc_theme/favicon.ico
@ -688,3 +681,39 @@ logo_enrichment:
has_favicon: true
has_og_image: false
favicon_count: 1
mission_statement:
- statement_id: https://nde.nl/ontology/hc/mission/nl-zh-dha-m-ihc/mission-2026
statement_type: mission
statement_text: Onze missie is om deze geschiedenis begrijpelijk te maken en bewustwording te creëren over de betekenis
ervan voor vandaag en morgen.
statement_language: nl
extracted_verbatim: true
source_url: https://www.indischherinneringscentrum.nl/over-ons
content_hash: sha256-CCvMjIqJDXKOk6mi+gchg4+RbZiHGXaETHMNxkDHK/w=
provenance:
statement_created_at: '2026-01-04T12:55:13.970882+00:00'
source_archived_at: '2026-01-04T12:54:32.039300+00:00'
retrieval_agent: linkup-api
extraction_agent: zai-glm/glm-4.7
extraction_confidence: 0.95
prov:wasDerivedFrom: https://www.indischherinneringscentrum.nl/over-ons
prov:generatedAtTime: '2026-01-04T12:55:13.970882+00:00'
source_section: Over ons
- statement_id: https://nde.nl/ontology/hc/mission/nl-zh-dha-m-ihc/goal-2026
statement_type: goal
statement_text: de geschiedenis van Nederlands-Indië en Indonesië vanaf begin 1900 levend te houden voor een breed publiek;
de kennis over dit hoofdstuk van de Nederlandse geschiedenis te vergroten; vanuit een onafhankelijke positie samen te
werken en samenwerking te bevorderen.
statement_language: nl
extracted_verbatim: true
source_url: https://www.indischherinneringscentrum.nl/over-ons
content_hash: sha256-XOV90wzBhFKX7CbtYUMOvrkXJ540//+98t/bUbUr6WA=
provenance:
statement_created_at: '2026-01-04T12:55:13.970936+00:00'
source_archived_at: '2026-01-04T12:54:32.039300+00:00'
retrieval_agent: linkup-api
extraction_agent: zai-glm/glm-4.7
extraction_confidence: 0.95
prov:wasDerivedFrom: https://www.indischherinneringscentrum.nl/over-ons
prov:generatedAtTime: '2026-01-04T12:55:13.970936+00:00'
source_section: Over ons

View file

@ -34,8 +34,7 @@ provenance:
linkup_timespan:
- source_type: linkup_web_search
fetch_timestamp: '2025-12-15T22:20:00.220055+00:00'
search_query: '"Literatuurmuseum / Kinderboekenmuseum" Den Haag opgericht OR
gesticht OR sinds'
search_query: '"Literatuurmuseum / Kinderboekenmuseum" Den Haag opgericht OR gesticht OR sinds'
source_urls:
- https://museumtv.nl/museum/literatuurmuseum/
- https://www.geschiedenisextra.nl/nl/literatuurmuseum.htm
@ -188,8 +187,7 @@ google_maps_enrichment:
- 'zondag: 09:0017:00'
rating: 4.5
total_ratings: 1954
editorial_summary: Interactief museum met personages uit kinderboeken, leeshoeken
en talige activiteiten.
editorial_summary: Interactief museum met personages uit kinderboeken, leeshoeken en talige activiteiten.
google_maps_url: https://maps.google.com/?cid=11589358852515439310&g_mp=Cidnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLlNlYXJjaFRleHQQAhgEIAA
google_maps_status: SUCCESS
google_maps_search_query: Literatuurmuseum/Kinderboekenmuseum, Netherlands
@ -243,12 +241,11 @@ wikidata_enrichment:
instance_of: &id001
- id: Q33506
label: museum
description: institution that holds artifacts and other objects of scientific,
artistic, cultural, historical, or other importance
description: institution that holds artifacts and other objects of scientific, artistic, cultural, historical, or other
importance
- id: Q11606865
label: picture book museum
description: type of museum; institution that collects and exhibits picture
books
description: type of museum; institution that collects and exhibits picture books
wikidata_instance_of: *id001
wikidata_location:
country: &id003
@ -375,8 +372,7 @@ digital_platforms:
platform_type: WEBSITE
platform_category:
- Organizational website
digital_collections: Interactief museum met personages uit kinderboeken, leeshoeken
en talige activiteiten.
digital_collections: Interactief museum met personages uit kinderboeken, leeshoeken en talige activiteiten.
technology_stack: Standard web technology
data_standards:
- Open Graph
@ -477,8 +473,8 @@ digital_platform_v2:
platform_name: Literatuurmuseum / Kinderboekenmuseum Website
platform_url: http://literatuurmuseum.nl/nl
platform_type: DISCOVERY_PORTAL
description: Bezoek het museum voor jong en oud in Den Haag, bekijk vernieuwende
online exposities in het LiteratuurLab of doorzoek het archief.
description: Bezoek het museum voor jong en oud in Den Haag, bekijk vernieuwende online exposities in het LiteratuurLab
of doorzoek het archief.
language: nl
og_image: http://literatuurmuseum.nl/images/share.jpg
favicon: http://literatuurmuseum.nl/favicon/apple-touch-icon-57x57.png
@ -539,3 +535,22 @@ logo_enrichment:
has_favicon: true
has_og_image: true
favicon_count: 15
mission_statement:
- statement_id: https://nde.nl/ontology/hc/mission/nl-zh-dha-m-lmkm/mission-2026
statement_type: mission
statement_text: The Childrens Book Museum and the Museum of Literature are part of the Netherlands Literature Museum and
Literature Archive Foundation, whose mission is to showcase the power of literature and the richness of the Dutch literary
heritage
statement_language: nl
extracted_verbatim: true
source_url: https://literatuurmuseum.nl/over-ons
content_hash: sha256-rdfJA9/ZsEY2k8D5YBBUjNYql0UIj7Us4Cn4NBeLdIQ=
provenance:
statement_created_at: '2026-01-04T16:49:17.679307+00:00'
source_archived_at: '2026-01-04T16:49:03.286249+00:00'
retrieval_agent: linkup-api
extraction_agent: zai-glm/glm-4.7
extraction_confidence: 0.95
prov:wasDerivedFrom: https://literatuurmuseum.nl/over-ons
prov:generatedAtTime: '2026-01-04T16:49:17.679307+00:00'
source_section: About us

View file

@ -144,8 +144,7 @@ provenance:
notes:
- Provenance tracking added retroactively
- claim_level_provenance available in sources section
- Removed incorrect wikidata_enrichment on 2025-12-08T08:20:09.488094+00:00. Re-enrichment
required with proper matching.
- Removed incorrect wikidata_enrichment on 2025-12-08T08:20:09.488094+00:00. Re-enrichment required with proper matching.
- Canonical location added via normalize_custodian_files.py on 2025-12-08T23:19:52Z
- Canonical location added via normalize_custodian_files.py on 2025-12-09T07:11:32Z
qp_resolution_timestamp: '2025-11-27T20:46:01.914577+00:00'
@ -284,27 +283,23 @@ google_maps_enrichment:
relative_time_description: 3 maanden geleden
text: 'Een bezoek aan Museon en Omniversum
Het Museon en het Omniversum vormen sinds kort één geheel. Hoewel de gebouwen
altijd al naast elkaar lagen, moest je voorheen apart entree betalen. Nu is
dit veranderd en kun je met één ticket beide locaties bezoeken.
Het Museon en het Omniversum vormen sinds kort één geheel. Hoewel de gebouwen altijd al naast elkaar lagen, moest je
voorheen apart entree betalen. Nu is dit veranderd en kun je met één ticket beide locaties bezoeken.
Het Museon is een aanrader, vooral voor jonge kinderen. Het is een interactief
museum waar je door middel van proefjes en tentoonstellingen veel leert over
de natuur, de wereld en het milieu. Het museum heeft twee verdiepingen die je
gemakkelijk een hele middag bezighouden.
Het Museon is een aanrader, vooral voor jonge kinderen. Het is een interactief museum waar je door middel van proefjes
en tentoonstellingen veel leert over de natuur, de wereld en het milieu. Het museum heeft twee verdiepingen die je gemakkelijk
een hele middag bezighouden.
Gratis film in het Omniversum
Een groot voordeel van deze samenwerking is de mogelijkheid om een gratis film
te bezoeken in het Omniversum. Dit geldt voor houders van een Museumkaart of
VriendenLoterij VIP-kaart. De gratis dagfilm zit bij de prijs van je kaart inbegrepen.
Een groot voordeel van deze samenwerking is de mogelijkheid om een gratis film te bezoeken in het Omniversum. Dit geldt
voor houders van een Museumkaart of VriendenLoterij VIP-kaart. De gratis dagfilm zit bij de prijs van je kaart inbegrepen.
Ik heb onlangs het museum weer bezocht en de film over dolfijnen gezien. De
beelden op het gigantische koepelscherm zijn werkelijk prachtig. Houd er wel
rekening mee dat het scherm erg groot is, wat voor jonge kinderen overweldigend
Ik heb onlangs het museum weer bezocht en de film over dolfijnen gezien. De beelden op het gigantische koepelscherm
zijn werkelijk prachtig. Houd er wel rekening mee dat het scherm erg groot is, wat voor jonge kinderen overweldigend
kan zijn. De films duren meestal 45 minuten.
@ -314,8 +309,7 @@ google_maps_enrichment:
Het is aan te raden om je tickets voor de film van tevoren te reserveren.
De gratis films zijn alleen overdag te bezoeken, op de dagen dat het museum
geopend is.
De gratis films zijn alleen overdag te bezoeken, op de dagen dat het museum geopend is.
''s Avonds zijn er andere voorstellingen waarvoor je moet betalen.
@ -323,73 +317,62 @@ google_maps_enrichment:
Bereikbaarheid en omgeving
Het Museon is eenvoudig te bereiken met het openbaar vervoer. Vanaf Den Haag
Centraal pak je bus 24 richting Kijkduin en stap je uit bij de halte Stadhouderslaan.
In dezelfde straat vind je ook het Kunstmuseum en het Haags Fotomuseum. Je kunt
hier dus gemakkelijk een hele dag doorbrengen als je van musea houdt.
Het Museon is eenvoudig te bereiken met het openbaar vervoer. Vanaf Den Haag Centraal pak je bus 24 richting Kijkduin
en stap je uit bij de halte Stadhouderslaan. In dezelfde straat vind je ook het Kunstmuseum en het Haags Fotomuseum.
Je kunt hier dus gemakkelijk een hele dag doorbrengen als je van musea houdt.
Eindconclusie
Al met al is het Museon een uitstekende keuze voor gezinnen en liefhebbers van
natuur en wetenschap. Het feit dat je met je Museumkaart of VriendenLoterij-kaart
gratis een film kunt bezoeken in het Omniversum, maakt het extra aantrekkelijk.
Al met al is het Museon een uitstekende keuze voor gezinnen en liefhebbers van natuur en wetenschap. Het feit dat je
met je Museumkaart of VriendenLoterij-kaart gratis een film kunt bezoeken in het Omniversum, maakt het extra aantrekkelijk.
Het is echt een pluspunt dat je na je museumbezoek nog een film kunt meepikken.
In het Omniversum kun je overigens ook drinken en snacks kopen, die je mee mag
nemen naar de zaal. De prijzen zijn redelijk, hoewel € 6 voor een koffie met
gebak wat aan de hoge kant is. Je vindt in beide gebouwen bovendien verschillende
souvenirwinkels.
In het Omniversum kun je overigens ook drinken en snacks kopen, die je mee mag nemen naar de zaal. De prijzen zijn redelijk,
hoewel € 6 voor een koffie met gebak wat aan de hoge kant is. Je vindt in beide gebouwen bovendien verschillende souvenirwinkels.
Kortom, ik vond het een topdag! Het is een leuke en leerzame ervaring, perfect
voor jonge kinderen en iedereen die nieuwsgierig is naar de wereld om ons heen.'
Kortom, ik vond het een topdag! Het is een leuke en leerzame ervaring, perfect voor jonge kinderen en iedereen die nieuwsgierig
is naar de wereld om ons heen.'
publish_time: '2025-08-24T16:38:43.420456108Z'
- author_name: Erik Worldtraveller
author_uri: https://www.google.com/maps/contrib/101414647354350994774/reviews
rating: 5
relative_time_description: 5 maanden geleden
text: 'Super leuk en leerzaam voor jong en oud. Ook veel dingen om te voelen en
vast te houden. Vele thema''s komen aan bod. De film in het Omniversum is een
leuke afleiding. Bijna overal om je heen in de film zijn. Super leuk. Wij hadden
text: 'Super leuk en leerzaam voor jong en oud. Ook veel dingen om te voelen en vast te houden. Vele thema''s komen aan
bod. De film in het Omniversum is een leuke afleiding. Bijna overal om je heen in de film zijn. Super leuk. Wij hadden
de T-rex film.
Het leuke aan het museum is toch echt het vele interactieve..heel veel doen,
aanraken..ervaren. Geweldig gewoon. De kinderen rennen van links naar rechts.
Springen en klauteren.'
Het leuke aan het museum is toch echt het vele interactieve..heel veel doen, aanraken..ervaren. Geweldig gewoon. De
kinderen rennen van links naar rechts. Springen en klauteren.'
publish_time: '2025-06-09T14:45:06.966041Z'
- author_name: Hilal CAN
author_uri: https://www.google.com/maps/contrib/109244249350275622290/reviews
rating: 5
relative_time_description: 4 maanden geleden
text: 'Een uitstekend en leerzaam museum, je kan hier vinden wat je wilt: milieu,
dieren, natuur, archeologie, culturele perspectief, ruimte, techniek, en meer,
overal veel inspiratie, zelfs toilet en locker ruimtes. 😃'
text: 'Een uitstekend en leerzaam museum, je kan hier vinden wat je wilt: milieu, dieren, natuur, archeologie, culturele
perspectief, ruimte, techniek, en meer, overal veel inspiratie, zelfs toilet en locker ruimtes. 😃'
publish_time: '2025-07-24T18:22:06.013355372Z'
- author_name: Jantine Biemond
author_uri: https://www.google.com/maps/contrib/116038318861417503703/reviews
rating: 2
relative_time_description: een maand geleden
text: 'Gisteren geweest (maandag in de herfstvakantie). Het was niet druk en ik
kon parkeren op het parkeerterrein. We werden onvriendelijk ontvangen aan de
kassa, kon geen ''goedemorgen'' vanaf en kreeg ook geen uitleg over het museum
of de route. Museon zelf vond ik een tegenvaller: kwam erg chaotisch over en
ook wat gedateerd. Voor mijn kinderen van bijna 7 en 10 teveel leeswerk bij
elk onderdeel, ze willen liever doen/ervaren. De film in de dome was leuk, maar
niet spectaculair. Ook al wat ouder denk ik. Al met al met museumkaarten prima
eens te bekijken, maar had het anders zonde van mn entreegeld gevonden.'
text: 'Gisteren geweest (maandag in de herfstvakantie). Het was niet druk en ik kon parkeren op het parkeerterrein. We
werden onvriendelijk ontvangen aan de kassa, kon geen ''goedemorgen'' vanaf en kreeg ook geen uitleg over het museum
of de route. Museon zelf vond ik een tegenvaller: kwam erg chaotisch over en ook wat gedateerd. Voor mijn kinderen van
bijna 7 en 10 teveel leeswerk bij elk onderdeel, ze willen liever doen/ervaren. De film in de dome was leuk, maar niet
spectaculair. Ook al wat ouder denk ik. Al met al met museumkaarten prima eens te bekijken, maar had het anders zonde
van mn entreegeld gevonden.'
publish_time: '2025-10-14T06:56:01.771054419Z'
- author_name: wesll deckers
author_uri: https://www.google.com/maps/contrib/102893772107923286244/reviews
rating: 5
relative_time_description: 2 maanden geleden
text: Mooi en heel informatief museum. Interactieve manier om de informatie over
te brengen vooral heel fijn voor de kinderen. Enkele mooi ingerichte exposities.
Zelfs na een hele dag hebben we eigenlijk niet alles gezien.
text: Mooi en heel informatief museum. Interactieve manier om de informatie over te brengen vooral heel fijn voor de kinderen.
Enkele mooi ingerichte exposities. Zelfs na een hele dag hebben we eigenlijk niet alles gezien.
publish_time: '2025-09-22T18:32:31.665012323Z'
editorial_summary: Zeer modern museum voor het hele gezin waar je de relatie tussen
mens, natuur en cultuur kunt ontdekken.
editorial_summary: Zeer modern museum voor het hele gezin waar je de relatie tussen mens, natuur en cultuur kunt ontdekken.
photo_urls:
- https://places.googleapis.com/v1/places/ChIJKfB6XsawxUcRvfkvJBWBYnw/photos/AWn5SU6JIUqQ9hG9BmXS8kZYYoeKvGd6OhaKgcfqEA4QflV-WIZ9cpySbiRlRx0Z46zoV2_jcm3k8ZziV9vQnfVH2CfElnuuXrruhUHnpEJDLyTlP5xpj0PSfINcQGBlbQzEM6cmWj02Tdv-K4lvDV1wK7O4gpYfh9RdN3gcu0DxF8RWProR3g4I7zW_LE8owTKZ4eq1iIEXR6MBjL9plNrd9qzB3c8YP0oFhCHLeRm_fACvVfEa8I4BdzpmWGjCEswRNkSYuh8x0snHbuJ35RPFLdssI78o27STzBcagcjn2qq4ar9u5ygc8yMJYEAJ15OvonzSa6C2Y6nNVvx4GAakqWgDdsRb2y_MCmZPG0Yav51RZjb9ghCaGEgyhBgZnspm77tbWnMY_nD4MhyZouLceQCEQVMlVr_QZKUrE7UdqN4tlA/media?maxWidthPx=800&key=AIzaSyAHuazNth9ZvfRFYk5-v49CwXwhABH8Ri0
- https://places.googleapis.com/v1/places/ChIJKfB6XsawxUcRvfkvJBWBYnw/photos/AWn5SU65eiU1Xr-u1GJvrxyTjugqLbLkr7qRBvRHP4_AP9dInfIU7KGRb_GUU8YDpAahdsw_sdfTA37ekCrRoe4eZ6CyxihJHPbpwqoHnpd0DUZlIGLMYnEBFLJNqvvaw_b7iN2sU3DhVGD0SMcdVTxjcN2Lql6uyJx5FR3Ssgi0sCYlzPn9pe0OoTPD2J4BDb9LHycpK_tf0lFS6fUO8x8lSbhcy-EYzrhl0poNr6E_bTEpcsPTL2FH0EwYEN0w9Y_swxUuUK1Ud5ie7ID97jghB6NOxzKyVeAvdMvA9JRDqxblQSNWZezb3MjzYlJgHuZD2Im3ClYbgnes4grTt5BNF9XVCLcGnejTIAaiREoFsH17JARsiwY_iL7YcX0vGjHy-36XFGmdm8ks8zdFx31W1jruCvofDSplXZlQNSHO1pmcyw/media?maxWidthPx=800&key=AIzaSyAHuazNth9ZvfRFYk5-v49CwXwhABH8Ri0
@ -438,8 +421,7 @@ google_maps_enrichment:
icon_background_color: '#13B5C7'
utc_offset_minutes: 60
google_maps_status: SUCCESS
google_maps_search_query: Stichting Museon (Museum voor het Onderwijs), Den Haag,
Netherlands
google_maps_search_query: Stichting Museon (Museum voor het Onderwijs), Den Haag, Netherlands
web_enrichment:
web_archives:
- url: https://www.museon-omniversum.nl/pagina/de-collectie-online
@ -646,9 +628,8 @@ timeline_enrichment:
- https://www.geschiedenisextra.nl/nl/museon-den-haag.htm
- https://nl.linkedin.com/company/museonomniversum
linkup_query: '"Museon-Omniversum" Den Haag opgericht OR gesticht OR sinds'
linkup_answer: Het Museon in Den Haag is opgericht in 1904. Het huidige gebouw
van het Museon, waarin ook het Omniversum is gevestigd, werd in 1985 geopend.
In januari 2022 zijn Museon en Omniversum gefuseerd tot Museon-Omniversum.
linkup_answer: Het Museon in Den Haag is opgericht in 1904. Het huidige gebouw van het Museon, waarin ook het Omniversum
is gevestigd, werd in 1985 geopend. In januari 2022 zijn Museon en Omniversum gefuseerd tot Museon-Omniversum.
fetch_timestamp: '2025-12-15T22:23:11.805023+00:00'
archive_path: web/1316/linkup/linkup_founding_20251215T222311Z.json
extraction_method: linkup_answer_regex
@ -735,8 +716,8 @@ wikidata_enrichment:
instance_of: &id001
- id: Q33506
label: museum
description: institution that holds artifacts and other objects of scientific,
artistic, cultural, historical, or other importance
description: institution that holds artifacts and other objects of scientific, artistic, cultural, historical, or other
importance
wikidata_instance_of: *id001
wikidata_location:
country: &id003
@ -770,8 +751,7 @@ wikidata_enrichment:
has_parts:
- id: Q119179610
label: Nederlanders in Japanse kampen
description: Nederlandse museumcollectie met tekeningen en foto's van voorwerpen
uit Japanse interneringskampen in Nederlands-Indië
description: Nederlandse museumcollectie met tekeningen en foto's van voorwerpen uit Japanse interneringskampen in Nederlands-Indië
wikidata_web:
official_website: https://www.museon-omniversum.nl/pagina/de-collectie-online
described_at_url:
@ -850,3 +830,23 @@ logo_enrichment:
has_favicon: true
has_og_image: false
favicon_count: 4
mission_statement:
- statement_id: https://nde.nl/ontology/hc/mission/nl-zh-dha-m-mo/mission-2026
statement_type: mission
statement_text: Bij Museon-Omniversum inspireren we bezoekers van alle leeftijden om bij te dragen aan een duurzame toekomst.
Ontdek uitdagingen én oplossingen voor onze planeet met indrukwekkende films, interactieve tentoonstellingen en bijzondere
collectie. Samen met publiek, scholen, overheid en bedrijven maken we een inspirerende reis vol verhalen, inzichten en
verwondering. Samen maken we impact.
statement_language: nl
extracted_verbatim: true
source_url: https://www.museon-omniversum.nl/over-ons
content_hash: sha256-7dwUSCG+lb+fLJMX6Y1ovhMg40gxtcWP+DmL4fclHxQ=
provenance:
statement_created_at: '2026-01-04T15:57:24.728814+00:00'
source_archived_at: '2026-01-04T15:57:00.215832+00:00'
retrieval_agent: linkup-api
extraction_agent: zai-glm/glm-4.7
extraction_confidence: 0.95
prov:wasDerivedFrom: https://www.museon-omniversum.nl/over-ons
prov:generatedAtTime: '2026-01-04T15:57:24.728814+00:00'
source_section: Over ons

View file

@ -4,14 +4,11 @@ custodian_name:
english_name: Netherlands War Graves Foundation
institution_type:
- O
description: >-
Netherlands War Graves Foundation (Oorlogsgravenstichting), established 1946.
Maintains over 50,000 Dutch war graves worldwide and has registered 180,000 war
victims. Manages war cemeteries in the Netherlands, Indonesia, and other countries.
Collects and shares stories of war victims to preserve their memory. Located at
Zeestraat 85 in The Hague.
description: Netherlands War Graves Foundation (Oorlogsgravenstichting), established 1946. Maintains over 50,000 Dutch war
graves worldwide and has registered 180,000 war victims. Manages war cemeteries in the Netherlands, Indonesia, and other
countries. Collects and shares stories of war victims to preserve their memory. Located at Zeestraat 85 in The Hague.
website: https://oorlogsgravenstichting.nl/
phone: '+31 70 31 31 080'
phone: +31 70 31 31 080
email: info@ogs.nl
linkedin_enrichment:
linkedin_url: https://www.linkedin.com/company/oorlogsgravenstichting
@ -29,7 +26,7 @@ linkedin_enrichment:
schema_version: 1.0.0
location:
street_address: Zeestraat 85
postal_code: '2518 AA'
postal_code: 2518 AA
city: Den Haag
region: ZH
region_name: Zuid-Holland
@ -52,9 +49,8 @@ ghcid:
ghcid_numeric: null
valid_from: '2025-12-17T12:00:00+00:00'
valid_to: null
reason: >-
Reclassified from M (Museum) to O (Official Institution) - War Graves Foundation
maintains graves, not a museum. Location verified at Zeestraat 85, 2518 AA Den Haag.
reason: Reclassified from M (Museum) to O (Official Institution) - War Graves Foundation maintains graves, not a museum.
Location verified at Zeestraat 85, 2518 AA Den Haag.
location_resolution:
method: MANUAL_RESEARCH
city_code: DHA
@ -103,3 +99,22 @@ provenance:
- Location verified via web research 2025-12-17
- Reclassified from M (Museum) to O (Official Institution)
- 'Organization type: War Graves Foundation, maintains graves and cemeteries worldwide'
mission_statement:
- statement_id: https://nde.nl/ontology/hc/mission/nl-zh-dha-o-ogs/mission-2026
statement_type: mission
statement_text: De Oorlogsgravenstichting wil de herinnering aan deze mensen levend houden. Dit doen wij door hun verhalen
te verzamelen en te delen op onze website en door het onderhouden van de 50.000 Nederlandse oorlogsgraven overal in de
wereld.
statement_language: nl
extracted_verbatim: true
source_url: https://oorlogsgravenstichting.nl/over-ons
content_hash: sha256-6LCH+jf+OLLv0SK6xBMHDlXObuWFmELnLL+uRrmVj30=
provenance:
statement_created_at: '2026-01-04T16:50:49.474842+00:00'
source_archived_at: '2026-01-04T16:50:26.634675+00:00'
retrieval_agent: linkup-api
extraction_agent: zai-glm/glm-4.7
extraction_confidence: 0.9
prov:wasDerivedFrom: https://oorlogsgravenstichting.nl/over-ons
prov:generatedAtTime: '2026-01-04T16:50:49.474842+00:00'
source_section: Over ons

View file

@ -610,8 +610,8 @@ digital_platform_v2:
platform_name: Oorlogsgravenstichting Website
platform_url: https://oorlogsgravenstichting.nl/
platform_type: DISCOVERY_PORTAL
description: In Nederland zijn 180.000 mensen door de Oorlogsgravenstichting geregistreerd
als oorlogsslachtoffer. Mannen, vrouwen en kinderen die hun leven verloren…
description: In Nederland zijn 180.000 mensen door de Oorlogsgravenstichting geregistreerd als oorlogsslachtoffer. Mannen,
vrouwen en kinderen die hun leven verloren…
language: nl
og_image: https://ogsweb.ams3.cdn.digitaloceanspaces.com/images/logos/_1200x630_crop_center-center_82_none/logo-seo.png?mtime=1658216660
favicon: https://oorlogsgravenstichting.nl/apple-touch-icon.png
@ -654,8 +654,8 @@ logo_enrichment:
- claim_type: logo_url
claim_value: https://oorlogsgravenstichting.nl/assets/img/logo.svg
source_url: https://oorlogsgravenstichting.nl
css_selector: '#header-main > div.header-main-top.py-4 > div.container > div.row
> div.col-5.col-md-3 > a.header-logo > img'
css_selector: '#header-main > div.header-main-top.py-4 > div.container > div.row > div.col-5.col-md-3 > a.header-logo
> img'
retrieved_on: '2025-12-22T12:13:48.825413+00:00'
extraction_method: crawl4ai_header_logo
detection_confidence: high
@ -680,3 +680,22 @@ logo_enrichment:
has_favicon: true
has_og_image: true
favicon_count: 4
mission_statement:
- statement_id: https://nde.nl/ontology/hc/mission/nl-zh-dha-s-o/mission-2026
statement_type: mission
statement_text: De Oorlogsgravenstichting wil de herinnering aan deze mensen levend houden. Dit doen wij door hun verhalen
te verzamelen en te delen op onze website en door het onderhouden van de 50.000 Nederlandse oorlogsgraven overal in de
wereld.
statement_language: nl
extracted_verbatim: true
source_url: https://oorlogsgravenstichting.nl/over-ons
content_hash: sha256-6LCH+jf+OLLv0SK6xBMHDlXObuWFmELnLL+uRrmVj30=
provenance:
statement_created_at: '2026-01-04T16:54:32.637350+00:00'
source_archived_at: '2026-01-04T16:54:15.429989+00:00'
retrieval_agent: linkup-api
extraction_agent: zai-glm/glm-4.7
extraction_confidence: 0.85
prov:wasDerivedFrom: https://oorlogsgravenstichting.nl/over-ons
prov:generatedAtTime: '2026-01-04T16:54:32.637350+00:00'
source_section: Over ons

View file

@ -788,3 +788,24 @@ logo_enrichment:
has_favicon: true
has_og_image: false
favicon_count: 1
mission_statement:
- statement_id: https://nde.nl/ontology/hc/mission/nl-zh-gou-l-sbg/mission-2026
statement_type: mission
statement_text: In de bibliotheek Gouda komen de fysieke en de digitale wereld samen. Vanuit deskundigheid, expertise en
enthousiasme moedigen we aan tot leesplezier en een leven lang ontwikkelen, in verbinding met elkaar. We zijn pionier
in een continu veranderende samenleving en we zoeken waar mogelijk aansluiting bij de behoeften van de stad. Onze bibliotheek
is een fijne, neutrale en veilige plek waar mensen elkaar ontmoeten en waar zelfontplooiing geen grenzen kent. Met onze
mensen en ons werk dragen we in hoge mate bij aan een geletterd en inclusief Gouda.
statement_language: nl
extracted_verbatim: true
source_url: https://www.bibliotheekgouda.nl/organisatie
content_hash: sha256-V/uJKxp4oDqrs5AUOtFN63QWHWwxcF2KyPKg0055ofE=
provenance:
statement_created_at: '2026-01-04T15:56:04.042102+00:00'
source_archived_at: '2026-01-04T15:55:42.124526+00:00'
retrieval_agent: linkup-api
extraction_agent: zai-glm/glm-4.7
extraction_confidence: 0.95
prov:wasDerivedFrom: https://www.bibliotheekgouda.nl/organisatie
prov:generatedAtTime: '2026-01-04T15:56:04.042102+00:00'
source_section: Onze missie

View file

@ -43,8 +43,8 @@ wikidata_enrichment:
instance_of: &id001
- id: Q33506
label: museum
description: institution that holds artifacts and other objects of scientific,
artistic, cultural, historical, or other importance
description: institution that holds artifacts and other objects of scientific, artistic, cultural, historical, or other
importance
wikidata_instance_of: *id001
wikidata_location:
country: &id003
@ -293,40 +293,35 @@ google_maps_enrichment:
author_uri: https://www.google.com/maps/contrib/103417691580383835554/reviews
rating: 5
relative_time_description: 3 maanden geleden
text: Volg de geschiedenis van Boerderij Oost-Leeuwenstein en het zomerhuisje
ernaast. En diverse onderwerpen uit de geschiedenis van bewoners in de Hoeksche
Waard, zoals de oude dokterskast/apotheek uit Nieuw-Beijerland. Dit jaar ook
een interessante expo over 80 Jaar Bevrijding in de Hoeksche Waard. Vriendelijke
ontvangst.
text: Volg de geschiedenis van Boerderij Oost-Leeuwenstein en het zomerhuisje ernaast. En diverse onderwerpen uit de geschiedenis
van bewoners in de Hoeksche Waard, zoals de oude dokterskast/apotheek uit Nieuw-Beijerland. Dit jaar ook een interessante
expo over 80 Jaar Bevrijding in de Hoeksche Waard. Vriendelijke ontvangst.
publish_time: '2025-08-24T13:48:44.029157744Z'
- author_name: Willem 15 Smit
author_uri: https://www.google.com/maps/contrib/112932596157933072034/reviews
rating: 5
relative_time_description: 8 maanden geleden
text: Mooi museum met interessante items. Alles keurig verzorgd. Vriendelijk personeel. Tijdelijke
RTM tentoonstelling vond ik erg leuk, feest van herkenning.
text: Mooi museum met interessante items. Alles keurig verzorgd. Vriendelijk personeel. Tijdelijke RTM tentoonstelling
vond ik erg leuk, feest van herkenning.
publish_time: '2025-03-18T18:09:01.992357Z'
- author_name: martin de roode
author_uri: https://www.google.com/maps/contrib/111812264051014663143/reviews
rating: 4
relative_time_description: 3 jaar geleden
text: Leuk museum. Het ene gebouw is het hof van assendelft en zijn geschiedenis.
De kamers zien er mooi uit. Het andere gebouw is Boerderij Oost-Leeuwenstein.
Groot en mooi. Alles is netjes tentoongesteld. Ik dacht eerst gewoon een oude
text: Leuk museum. Het ene gebouw is het hof van assendelft en zijn geschiedenis. De kamers zien er mooi uit. Het andere
gebouw is Boerderij Oost-Leeuwenstein. Groot en mooi. Alles is netjes tentoongesteld. Ik dacht eerst gewoon een oude
boerderij te gaan bekijken. Top gedaan.
publish_time: '2022-03-06T16:51:08.822126Z'
- author_name: Leo Ritmeester
author_uri: https://www.google.com/maps/contrib/116901268656181781238/reviews
rating: 5
relative_time_description: 2 jaar geleden
text: 'Met de Voornseopstapbus een bezoek gebracht aan de tentoonstelling, op
de thee bij koningin Juliana.
text: 'Met de Voornseopstapbus een bezoek gebracht aan de tentoonstelling, op de thee bij koningin Juliana.
Wat een schitterend museum! Alles keurig netjes. Super aardige mensen bij de
receptie, en een werkelijk prachtige tentoonstelling. Rondgeleid door gids Marjan,
genoot onze groep van werkelijk elk detail van de tentoonstelling. Wat een geweldige
kennis van zaken had zij, en was zeer boeiend. Genoten van de thee en koffie
met wat lekkers, en voordat wij het wisten was onze middag weer om.
Wat een schitterend museum! Alles keurig netjes. Super aardige mensen bij de receptie, en een werkelijk prachtige tentoonstelling.
Rondgeleid door gids Marjan, genoot onze groep van werkelijk elk detail van de tentoonstelling. Wat een geweldige kennis
van zaken had zij, en was zeer boeiend. Genoten van de thee en koffie met wat lekkers, en voordat wij het wisten was
onze middag weer om.
Te kort om alles te bekijken, dus we komen zeker nog eens terug!
@ -341,87 +336,69 @@ google_maps_enrichment:
Positief:
Het museum heeft interessante items in de vaste collectie en heeft goede wisseltentoonstellingen.
De vrijwilligers zijn behulpzaam en vriendelijk. Binnen het museum is veel kennis
over de streek aanwezig. De gebouwen zijn op zichzelf al de moeite waard om
te bekijken. Het museum is op zondag open en er is kleinschalige horeca. Het
is de moeite waard voor wie voorkennis heeft over dit eiland en de geschiedenis
ervan. Schappelijke entreeprijs.
Het museum heeft interessante items in de vaste collectie en heeft goede wisseltentoonstellingen. De vrijwilligers zijn
behulpzaam en vriendelijk. Binnen het museum is veel kennis over de streek aanwezig. De gebouwen zijn op zichzelf al
de moeite waard om te bekijken. Het museum is op zondag open en er is kleinschalige horeca. Het is de moeite waard voor
wie voorkennis heeft over dit eiland en de geschiedenis ervan. Schappelijke entreeprijs.
Ter verbetering:
Er is nauwelijks uitleg bij items uit de collectie, dit is echt een gemiste
kans. Ook zijn sommige items uit de vaste collectie lastig te zien, omdat ze
op een vliering in de schuur staan. Er lijken echt pareltjes tussen te staan.
Jammer dat dit onderbelicht blijft.
Er is nauwelijks uitleg bij items uit de collectie, dit is echt een gemiste kans. Ook zijn sommige items uit de vaste
collectie lastig te zien, omdat ze op een vliering in de schuur staan. Er lijken echt pareltjes tussen te staan. Jammer
dat dit onderbelicht blijft.
De naam ''Museum Hoeksche Waard'' doet vermoeden dat het museum vooral over
de Hoeksche Waard gaat. Maar eigenlijk gaat het museum vooral ''t Hof van Assendelft
(één van de museumgebouwen) en de tijd waarin het gebouwd en bewoond werd en
De naam ''Museum Hoeksche Waard'' doet vermoeden dat het museum vooral over de Hoeksche Waard gaat. Maar eigenlijk gaat
het museum vooral ''t Hof van Assendelft (één van de museumgebouwen) en de tijd waarin het gebouwd en bewoond werd en
over de wisseltentoonstelling in boerderij Oost-Leeuwenstein.
Het voelt alsof de rest van de Hoeksche Waard er een beetje bij gehaald is en
dat de 18e en 19e eeuw oververtegenwoordigd zijn. Er is niet voor alle delen
van de Hoeksche Waard aandacht en de aandacht die er is gaat zelden over wat
er buiten de dorpen gebeurde. Er zijn zeker ook items en onderdelen van het
museum die breder naar het eiland en een verdere historie verwijzen, maar het
verhaal daarachter is summier.
Het voelt alsof de rest van de Hoeksche Waard er een beetje bij gehaald is en dat de 18e en 19e eeuw oververtegenwoordigd
zijn. Er is niet voor alle delen van de Hoeksche Waard aandacht en de aandacht die er is gaat zelden over wat er buiten
de dorpen gebeurde. Er zijn zeker ook items en onderdelen van het museum die breder naar het eiland en een verdere historie
verwijzen, maar het verhaal daarachter is summier.
Er zijn veel onderwerpen die relevant zijn voor de geschiedenis en cultuur van
het eiland, maar zeer summier of helemaal niet worden aangestipt in het museum,
zoals het grote belang van de ligging tussen Rotterdam / Dordrecht / Antwerpen
en de Noordzee, het polderlandschap en het afgelegen dorpsleven, de bewoning
in de prehistorie, de bijzondere vondsten uit de Romeinse tijd, de middeleeuwse
relatie met Dordrecht en de toltoren van Strienemonde, de terpen op het eiland,
verdwenen dorpen, de Groote Waard en de Sint-Elizabethsvloed, de heren van Putten
en Strijen, alle verdwenen molens, kastelen en landhuizen, de overgang van katholicisme
naar Biblebelt, hoe de inpoldering en dijkaanlegging werd uitgevoerd, waar de
bewoners van de nieuwe polders vandaan kwamen, de vruchtbare grond en de teelt
van meekrap, vlas en graan en de rijkdom die herenboeren daardoor verkregen,
de jagers, griend- en rietwerkers die uit de moerassige wildernis nog inkomen
haalden, de opkomst en het verdwijnen van voorzieningen en mobiliteit (zoals
de stoomtram en de Barendrechtse brug, de verdwenen pontjes, aanleg van de tunnel
en brug), de watersnoodramp, de ''import'' en het forensisme en de veranderende
cultuur op het eiland, de relatie van jongeren met het eiland en de vergrijzing
als gevolg van hun vertrek.
Er zijn veel onderwerpen die relevant zijn voor de geschiedenis en cultuur van het eiland, maar zeer summier of helemaal
niet worden aangestipt in het museum, zoals het grote belang van de ligging tussen Rotterdam / Dordrecht / Antwerpen
en de Noordzee, het polderlandschap en het afgelegen dorpsleven, de bewoning in de prehistorie, de bijzondere vondsten
uit de Romeinse tijd, de middeleeuwse relatie met Dordrecht en de toltoren van Strienemonde, de terpen op het eiland,
verdwenen dorpen, de Groote Waard en de Sint-Elizabethsvloed, de heren van Putten en Strijen, alle verdwenen molens,
kastelen en landhuizen, de overgang van katholicisme naar Biblebelt, hoe de inpoldering en dijkaanlegging werd uitgevoerd,
waar de bewoners van de nieuwe polders vandaan kwamen, de vruchtbare grond en de teelt van meekrap, vlas en graan en
de rijkdom die herenboeren daardoor verkregen, de jagers, griend- en rietwerkers die uit de moerassige wildernis nog
inkomen haalden, de opkomst en het verdwijnen van voorzieningen en mobiliteit (zoals de stoomtram en de Barendrechtse
brug, de verdwenen pontjes, aanleg van de tunnel en brug), de watersnoodramp, de ''import'' en het forensisme en de
veranderende cultuur op het eiland, de relatie van jongeren met het eiland en de vergrijzing als gevolg van hun vertrek.
Ook zijn er naast Suze Groeneweg , Mozart en prins Johan Willem Friso (aan deze
mensen wordt aandacht besteed in het museum) meer bekende mensen die op het
eiland zijn geweest zoals de gebroeders De Witt met hun buitenhuis bij Maasdam,
schilder Jongkind in Klaaswaal, dominee Van Koetsveld in Westmaas, schrijver
Van Eeden in Mijnsheerenland.
Ook zijn er naast Suze Groeneweg , Mozart en prins Johan Willem Friso (aan deze mensen wordt aandacht besteed in het
museum) meer bekende mensen die op het eiland zijn geweest zoals de gebroeders De Witt met hun buitenhuis bij Maasdam,
schilder Jongkind in Klaaswaal, dominee Van Koetsveld in Westmaas, schrijver Van Eeden in Mijnsheerenland.
Tenslotte is er opvallend weinig aandacht voor de Tweede Wereldoorlog en de
lokale verzetshelden en de lokale dialecten en klederdracht.
Tenslotte is er opvallend weinig aandacht voor de Tweede Wereldoorlog en de lokale verzetshelden en de lokale dialecten
en klederdracht.
Conclusie:
Na een bezoek bekruipt me het gevoel dat het museum nog niet af is. Dat er heel
veel meer kennis is bij het museum dan dat er getoond wordt. Toch sluit ik positief
af: ten opzichte van enkele decennia terug is het museum enorm opgeknapt en
vooruit gegaan. Ik heb er een leuke middag gehad en verwacht over een paar jaar
nog eens terug te komen. Het zou mooi zijn als het verhaal over het eiland dan
vollediger en meer gestructureerd is.
Na een bezoek bekruipt me het gevoel dat het museum nog niet af is. Dat er heel veel meer kennis is bij het museum dan
dat er getoond wordt. Toch sluit ik positief af: ten opzichte van enkele decennia terug is het museum enorm opgeknapt
en vooruit gegaan. Ik heb er een leuke middag gehad en verwacht over een paar jaar nog eens terug te komen. Het zou
mooi zijn als het verhaal over het eiland dan vollediger en meer gestructureerd is.
Doelgroep:
Volwassenen met enige voorkennis van het eiland en de geschiedenis. Voor kinderen
niet heel erg geschikt.
Volwassenen met enige voorkennis van het eiland en de geschiedenis. Voor kinderen niet heel erg geschikt.
Andere plekken met informatie over de Hoeksche Waard:
Museum het Land van Strijen, Nationaal Landschapscentrum in Numansdorp, bezoekerscentrum
Klein Profijt van het Hoekschewaards Landschap in Oud-Beijerland en het Dordrechts
Museum.'
Museum het Land van Strijen, Nationaal Landschapscentrum in Numansdorp, bezoekerscentrum Klein Profijt van het Hoekschewaards
Landschap in Oud-Beijerland en het Dordrechts Museum.'
publish_time: '2024-03-11T13:53:56.226162Z'
photo_urls:
- https://places.googleapis.com/v1/places/ChIJhe5yqDAxxEcR34d3jOB0osE/photos/AWn5SU4ShVYk9E_f7T6idtHQK0G6UyjTJGg8MOqQddJWYmZAt6ur3WJsCk9wCpTDfs0olLlN_4jvcL8iFfan_iugOblwq5IpCAw4rk36040kksjK4eotepL-td-7mk03J4tOlcAlkAoKVJ9jHFreuX-TLn2rj-Y9hWgqsWB5K_gUA7GCfwtVRKlTcjHekQSMzUmrHScL9puykBk4QMymbnALC7cFH1DP00ITlMdkvddoZLovNoPPeb9SBuqiWnPNa6aXecgZlcAb0w0ze0DQCsEeIKiwZ4vs5W7kw1aiVwhKDJHXbg/media?maxWidthPx=800&key=AIzaSyAHuazNth9ZvfRFYk5-v49CwXwhABH8Ri0
@ -629,8 +606,8 @@ digital_platform_v2:
platform_name: Museum Hoeksche Waard Website
platform_url: https://www.museumhw.nl/
platform_type: DISCOVERY_PORTAL
description: Stichting Museum Hoeksche Waard, stelt zich ten doel de cultuur-
en streekhistorie van de Hoeksche Waard te behouden, te ontsluiten en te presenteren.
description: Stichting Museum Hoeksche Waard, stelt zich ten doel de cultuur- en streekhistorie van de Hoeksche Waard
te behouden, te ontsluiten en te presenteren.
language: nl
og_image: null
favicon: http://www.museumhw.nl/images/mhw-favicon.jpg
@ -686,8 +663,7 @@ timeline_enrichment:
- https://museumtv.nl/museum/museum-hoeksche-waard/
- https://www.lessonup.com/nl/channel/museum-hoeksche-waard/about
linkup_query: '"Museum Hoeksche Waard" Heinenoord opgericht OR gesticht OR sinds'
linkup_answer: Museum Hoeksche Waard in Heinenoord is opgericht op 8 oktober 1960
en opende officieel haar deuren in 1968.
linkup_answer: Museum Hoeksche Waard in Heinenoord is opgericht op 8 oktober 1960 en opende officieel haar deuren in 1968.
fetch_timestamp: '2025-12-15T22:34:08.842612+00:00'
archive_path: web/1258/linkup/linkup_founding_20251215T223408Z.json
extraction_method: linkup_answer_regex
@ -848,3 +824,21 @@ logo_enrichment:
has_favicon: true
has_og_image: false
favicon_count: 1
mission_statement:
- statement_id: https://nde.nl/ontology/hc/mission/nl-zh-hei-m-mhw/goal-2026
statement_type: goal
statement_text: Stichting Museum Hoeksche Waard (RSIN 4851948), opgericht in 1960, stelt zich ten doel de cultuur- en streekhistorie
van de Hoeksche Waard te behouden, te ontsluiten en te presenteren, toegankelijk voor een breed publiek.
statement_language: nl
extracted_verbatim: true
source_url: https://www.museumhw.nl/organisatie
content_hash: sha256-qad5EcduR+WQoqH2EDxNMJF5vR6sarFhJ6qOBWkE5w8=
provenance:
statement_created_at: '2026-01-04T16:29:45.433643+00:00'
source_archived_at: '2026-01-04T16:29:03.808117+00:00'
retrieval_agent: linkup-api
extraction_agent: zai-glm/glm-4.7
extraction_confidence: 0.95
prov:wasDerivedFrom: https://www.museumhw.nl/organisatie
prov:generatedAtTime: '2026-01-04T16:29:45.433643+00:00'
source_section: Stichting en doelstelling

View file

@ -95,8 +95,7 @@ provenance:
linkup_timespan:
- source_type: linkup_web_search
fetch_timestamp: '2025-12-15T22:35:53.541315+00:00'
search_query: '"Streekmuseum Krimpenerwaard" Krimpen aan den IJssel opgericht
OR gesticht OR sinds'
search_query: '"Streekmuseum Krimpenerwaard" Krimpen aan den IJssel opgericht OR gesticht OR sinds'
source_urls:
- https://www.dagjeweg.nl/tip/4889/Streekmuseum-Krimpenerwaard
- https://www.erfgoedkrimpenerwaard.nl/index.php/component/content/category/2-uncategorised
@ -121,8 +120,7 @@ provenance:
notes:
- Provenance tracking added retroactively
- claim_level_provenance available in sources section
- Removed incorrect wikidata_enrichment on 2025-12-08T08:20:13.765733+00:00. Re-enrichment
required with proper matching.
- Removed incorrect wikidata_enrichment on 2025-12-08T08:20:13.765733+00:00. Re-enrichment required with proper matching.
- Canonical location added via normalize_custodian_files.py on 2025-12-08T23:20:23Z
- Canonical location added via normalize_custodian_files.py on 2025-12-09T07:12:48Z
qp_resolution_timestamp: '2025-11-27T20:16:15.061920+00:00'
@ -236,45 +234,38 @@ google_maps_enrichment:
author_uri: https://www.google.com/maps/contrib/106484203519882122771/reviews
rating: 4
relative_time_description: een jaar geleden
text: Een heel leuk museum over de streek. Ik vond het bezoek boven verwachting.
Mannelijke gids die veel had te vertellen. Mooie collectie, informatie over
scheepswerven, stenenbakkerij, touwslagerij, eendenkooi, oude ambachten die
daar zijn bewaard. Opkamer met bedstee, keuken, kelder, mooie kamer, wat nog
een trouwlocatie is. Ook een leuke expositie over ondergoed. Er is een restaurant
voor een kopje koffie. Was een positieve ervaring.
text: Een heel leuk museum over de streek. Ik vond het bezoek boven verwachting. Mannelijke gids die veel had te vertellen.
Mooie collectie, informatie over scheepswerven, stenenbakkerij, touwslagerij, eendenkooi, oude ambachten die daar zijn
bewaard. Opkamer met bedstee, keuken, kelder, mooie kamer, wat nog een trouwlocatie is. Ook een leuke expositie over
ondergoed. Er is een restaurant voor een kopje koffie. Was een positieve ervaring.
publish_time: '2024-03-15T16:17:13.640077Z'
- author_name: Adrie Jonkers
author_uri: https://www.google.com/maps/contrib/116744550762282751468/reviews
rating: 5
relative_time_description: 4 maanden geleden
text: 'Werkelijk een pareltje van een locatie. Hier vinden de bezoekers een vrijwel
compleet beeld van de rijke geschiedenis van deze streek. Wordt in stand gehouden
door enthousiaste en bevlogen vrijwilligers.
text: 'Werkelijk een pareltje van een locatie. Hier vinden de bezoekers een vrijwel compleet beeld van de rijke geschiedenis
van deze streek. Wordt in stand gehouden door enthousiaste en bevlogen vrijwilligers.
Deze mensen hebben hart en ziel voor de historie van de omgeving. Prachtige
collectie. De groep mensen die dit prachtige museum in stand houden verdienen
heel veel lof voor hun tomeloze inzet.
Deze mensen hebben hart en ziel voor de historie van de omgeving. Prachtige collectie. De groep mensen die dit prachtige
museum in stand houden verdienen heel veel lof voor hun tomeloze inzet.
Een visite aan deze veelgeroemde locatie is derhalve meer dan een regelrechte
aanrader. Respect voor de inzet om de rijke geschiedenis van deze omgeving aan
iedereen te tonen. Geniet van de feiten die hier worden getoond. Gelegen in
Een visite aan deze veelgeroemde locatie is derhalve meer dan een regelrechte aanrader. Respect voor de inzet om de
rijke geschiedenis van deze omgeving aan iedereen te tonen. Geniet van de feiten die hier worden getoond. Gelegen in
een ronduit schitterende omgeving. Kortom laat u verrassen.'
publish_time: '2025-07-05T00:29:30.685505899Z'
- author_name: Marlies Kloppenburg
author_uri: https://www.google.com/maps/contrib/112384531866628419779/reviews
rating: 5
relative_time_description: 11 maanden geleden
text: Heel fijn museum met bevlogen medewerkers. Leuke activiteiten het hele jaar
door. Prachtige tuin erbij. Ook leuk en leerzaam voor kinderen. Ik was er o.a
op Open Monumentendag. Heel gezellige sfeer.
text: Heel fijn museum met bevlogen medewerkers. Leuke activiteiten het hele jaar door. Prachtige tuin erbij. Ook leuk
en leerzaam voor kinderen. Ik was er o.a op Open Monumentendag. Heel gezellige sfeer.
publish_time: '2024-12-11T18:08:06.683342Z'
- author_name: Diana van de Graaf
author_uri: https://www.google.com/maps/contrib/115780947599946512663/reviews
rating: 5
relative_time_description: 3 jaar geleden
text: Ontzettend leuke beleving, wat een mooi Streekmuseum en zoveel authentieke
spullen goed bewaard gebleven. Een aanrader voor klein en groot en speciaal
voor de ouderen is er een stoeltjeslift... en een winkeltje met ouderwets snoepgoed
text: Ontzettend leuke beleving, wat een mooi Streekmuseum en zoveel authentieke spullen goed bewaard gebleven. Een aanrader
voor klein en groot en speciaal voor de ouderen is er een stoeltjeslift... en een winkeltje met ouderwets snoepgoed
❤️
publish_time: '2022-09-17T15:04:20.594276Z'
- author_name: Mike Idris
@ -283,11 +274,9 @@ google_maps_enrichment:
relative_time_description: 2 jaar geleden
text: 'Paar keer per jaar is er streekmarkt.
Zaterdag 27 mei in het streekmuseum. Mooi om te zien hoe ondernemend Nederland
prachtige producten ten toon spreidt.'
Zaterdag 27 mei in het streekmuseum. Mooi om te zien hoe ondernemend Nederland prachtige producten ten toon spreidt.'
publish_time: '2023-06-13T07:06:56.975481Z'
editorial_summary: Museum in een 17e-eeuwse boerderij met nabootsing van het leven
van een typisch laat 19e-eeuws huishouden.
editorial_summary: Museum in een 17e-eeuwse boerderij met nabootsing van het leven van een typisch laat 19e-eeuws huishouden.
photo_urls:
- https://places.googleapis.com/v1/places/ChIJjws-J1otxEcROODoRciL7rE/photos/AWn5SU71eGbpwFuJBsjYldVkGszEzH6HiZmVnv-PW2fGCb_1toppfJEeU1tfmtHzgrgyt2gxpB_Hc2aGpzAF7qG95t58gf7bRWHUMGzDcn-yxaWDYfp5YqdmHDY55fEKaunUvHAItjTEvW1qDAmBIkiOneoXPPZ9pFMw0Mn7zQ6s46Y4nGrHRyPHW5fKhL4BHOqM7Sqv2XBOj3BH5w6djpp3rbx21z964AZFiKj_OAgsidp-BFCo3Bi7hiN_PDBcCSrSv5KEOZ9F-2ua3rmxUJm2-yUVemN6gFHziRGK-fcuCjbyAw/media?maxWidthPx=800&key=AIzaSyAHuazNth9ZvfRFYk5-v49CwXwhABH8Ri0
- https://places.googleapis.com/v1/places/ChIJjws-J1otxEcROODoRciL7rE/photos/AWn5SU6x52CJG6LbkkZQxS7JkGpclDyMcb_XTBpK2DGTuBYSXCjpplcWX3m33qcL5FdAfp8d4FmZMs6s4wj5aNWPIjYdI5w-u2ahO0h1ClK9i6Zi7xzW8gQdaLfpTF2jWsmCFwx4O3_Jz6Hrmt5uutoSoXd-eqDA-WM7j9-SfD_bzBZI-BZGiE4LofSvJMTWNPoVNMF1kPS-4StB8C-z56HK8rAu7SMP-YXmWxIvCLyAokldyi4NX419ISpu32o1It5jY9vFEXmxxJw90iFO8osjTzA4ofajzi3kP2p34ItvpK5y5yNbhfAv5foPhEmBoLGPoSMn99zQfrApyDJZjOQxq2OvPPRCzpZkgoYKGQkfkL7evXDq5W04YFU3iSDjNuON6i22zDHOoVYujyJ9aE54Kt8F-o9EaO11_xtxT6A_CEPB1w/media?maxWidthPx=800&key=AIzaSyAHuazNth9ZvfRFYk5-v49CwXwhABH8Ri0
@ -371,8 +360,7 @@ ghcid:
ghcid_numeric: 17731405156849960329
valid_from: '2025-12-02T14:56:45.615377+00:00'
valid_to: null
reason: GHCID regenerated with Google Maps locality fix (Dec 2025) - name suffix
added for collision
reason: GHCID regenerated with Google Maps locality fix (Dec 2025) - name suffix added for collision
location_resolution:
method: GOOGLE_MAPS_LOCALITY
google_maps_locality: Krimpen aan den IJssel
@ -496,8 +484,8 @@ digital_platform_v2:
platform_name: Streekmuseum Krimpenerwaard - Ontdek de geschiedenis! Website
platform_url: https://www.streekmuseumkrimpenerwaard.nl/
platform_type: DISCOVERY_PORTAL
description: Het Streekmuseum Krimpenerwaard vertelt op levendige wijze de geschiedenis
van de streek. Waan je in een weg van 100 jaar geleden.
description: Het Streekmuseum Krimpenerwaard vertelt op levendige wijze de geschiedenis van de streek. Waan je in een
weg van 100 jaar geleden.
language: nl
og_image: null
favicon: https://www.streekmuseumkrimpenerwaard.nl/wp-content/themes/streekmuseumkrimpenerwaard/assets/images/favicon.ico
@ -538,26 +526,22 @@ timespan:
events:
- date: '1953-08-18'
type: founding
description: opgericht op 18 augustus 1953, oorspronkelijk als Oudheidkamer Krimpen
aan den IJssel
description: opgericht op 18 augustus 1953, oorspronkelijk als Oudheidkamer Krimpen aan den IJssel
timeline_enrichment:
timeline_events:
- event_type: FOUNDING
event_date: '1953-08-18'
date_precision: day
approximate: false
description: opgericht op 18 augustus 1953, oorspronkelijk als Oudheidkamer Krimpen
aan den IJssel
description: opgericht op 18 augustus 1953, oorspronkelijk als Oudheidkamer Krimpen aan den IJssel
source_urls:
- https://nl.wikipedia.org/wiki/Streekmuseum_Krimpenerwaard
- https://www.dagjeweg.nl/tip/4889/Streekmuseum-Krimpenerwaard
- https://www.erfgoedkrimpenerwaard.nl/index.php/component/content/category/2-uncategorised
- https://www.rtvkrimpenerwaard.nl/site/lintje-voor-acht-inwoners-van-krimpen-aan-den-ijssel/
linkup_query: '"Streekmuseum Krimpenerwaard" Krimpen aan den IJssel opgericht
OR gesticht OR sinds'
linkup_answer: Het Streekmuseum Krimpenerwaard in Krimpen aan den IJssel is opgericht
op 18 augustus 1953, oorspronkelijk als Oudheidkamer Krimpen aan den IJssel.
In 1971 werd het omgedoopt tot Streekmuseum voor de Krimpenerwaard.
linkup_query: '"Streekmuseum Krimpenerwaard" Krimpen aan den IJssel opgericht OR gesticht OR sinds'
linkup_answer: Het Streekmuseum Krimpenerwaard in Krimpen aan den IJssel is opgericht op 18 augustus 1953, oorspronkelijk
als Oudheidkamer Krimpen aan den IJssel. In 1971 werd het omgedoopt tot Streekmuseum voor de Krimpenerwaard.
fetch_timestamp: '2025-12-15T22:35:53.494444+00:00'
archive_path: web/1163/linkup/linkup_founding_20251215T223553Z.json
extraction_method: linkup_answer_regex
@ -608,8 +592,8 @@ wikidata_enrichment:
instance_of: &id001
- id: Q33506
label: museum
description: institution that holds artifacts and other objects of scientific,
artistic, cultural, historical, or other importance
description: institution that holds artifacts and other objects of scientific, artistic, cultural, historical, or other
importance
heritage_designation:
- id: Q916333
label: Rijksmonument
@ -726,3 +710,41 @@ logo_enrichment:
has_favicon: true
has_og_image: false
favicon_count: 1
mission_statement:
- statement_id: https://nde.nl/ontology/hc/mission/nl-zh-kad-m-smk/mission-2026
statement_type: mission
statement_text: Het Streekmuseum voor de Krimpenerwaard wil een toegankelijke ontmoetingsplaats zijn voor organisaties en
personen die zich in de breedste zin bezighouden met het culturele erfgoed van de Krimpenerwaard. We streven ernaar mensen
te motiveren zich in het verleden te verdiepen.
statement_language: nl
extracted_verbatim: true
source_url: https://www.streekmuseumkrimpenerwaard.nl/over
content_hash: sha256-cXwqFP5FI4ZxoL4PAFSTB6PojcBcSDBcnzrpR8t5hzw=
provenance:
statement_created_at: '2026-01-04T15:48:49.468643+00:00'
source_archived_at: '2026-01-04T15:48:23.233424+00:00'
retrieval_agent: linkup-api
extraction_agent: zai-glm/glm-4.7
extraction_confidence: 0.95
prov:wasDerivedFrom: https://www.streekmuseumkrimpenerwaard.nl/over
prov:generatedAtTime: '2026-01-04T15:48:49.468643+00:00'
source_section: Missie
- statement_id: https://nde.nl/ontology/hc/mission/nl-zh-kad-m-smk/goal-2026
statement_type: goal
statement_text: Om dit te bereiken, bewaren, verzamelen en exposeren we voorwerpen die een relatie hebben tot het vroegere
leven en werken van de inwoners van de Krimpenerwaard. Door over het terrein en in het museum zelf te struinen, kunnen
bezoekers zich helemaal onderdompelen in het dagelijks leven van 100 jaar geleden. Daarnaast stellen we het museum open
voor culturele ontmoetingen, educatieve programmas, feesten, workshops en nog veel meer!
statement_language: nl
extracted_verbatim: true
source_url: https://www.streekmuseumkrimpenerwaard.nl/over
content_hash: sha256-9nZmpoJUhUjdm2+uLX6VbJV1IhS9BdCWkLync1jT7Hs=
provenance:
statement_created_at: '2026-01-04T15:48:49.468659+00:00'
source_archived_at: '2026-01-04T15:48:23.233424+00:00'
retrieval_agent: linkup-api
extraction_agent: zai-glm/glm-4.7
extraction_confidence: 0.95
prov:wasDerivedFrom: https://www.streekmuseumkrimpenerwaard.nl/over
prov:generatedAtTime: '2026-01-04T15:48:49.468659+00:00'
source_section: Missie

File diff suppressed because it is too large Load diff

View file

@ -429,15 +429,12 @@ google_maps_enrichment:
author_uri: https://www.google.com/maps/contrib/104161967148670472151/reviews
rating: 5
relative_time_description: 2 maanden geleden
text: 'Wetenschapsmuseum dat met een redelijk grote collectie aan oude instrumenten,
apparaten, voorwerpen en medische preparaten laat zien hoe de wetenschap zich
door de eeuwen heen in de verschillende disciplines ontwikkelde. Interessant
en leerzaam voor jong en oud; voor kinderen zijn er interactieve opdrachtjes
die ze kunnen uitvoeren tijdens het museumbezoek.
text: 'Wetenschapsmuseum dat met een redelijk grote collectie aan oude instrumenten, apparaten, voorwerpen en medische
preparaten laat zien hoe de wetenschap zich door de eeuwen heen in de verschillende disciplines ontwikkelde. Interessant
en leerzaam voor jong en oud; voor kinderen zijn er interactieve opdrachtjes die ze kunnen uitvoeren tijdens het museumbezoek.
Een must om te zien is natuurlijk het theatrum anatomicum, het anatomisch
theater dat laat zien hoe geneesheren in vroeger tijden het lichaam van de mens
ontleedden om hun studenten te onderrichten in de medische wetenschap.'
Een must om te zien is natuurlijk het theatrum anatomicum, het anatomisch theater dat laat zien hoe geneesheren in
vroeger tijden het lichaam van de mens ontleedden om hun studenten te onderrichten in de medische wetenschap.'
publish_time: '2025-09-20T23:13:42.915147888Z'
- author_name: Petra Van Egmond
author_uri: https://www.google.com/maps/contrib/103373498383201764135/reviews
@ -449,11 +446,9 @@ google_maps_enrichment:
Voor kinderen een apart gedeelte waarin ze zelf dingen kunnen doen.
Dmv een audiotour kan je via je telefoon meer informatie beluisteren of lezen
bij aantal displays.
Dmv een audiotour kan je via je telefoon meer informatie beluisteren of lezen bij aantal displays.
Goed toegankelijk voor rolstoelgebruikers, die gebruik kunnen maken van rolstoel
lift.
Goed toegankelijk voor rolstoelgebruikers, die gebruik kunnen maken van rolstoel lift.
Was erg leuk om daar rond te lopen.'
publish_time: '2025-10-11T05:53:08.059142781Z'
@ -461,9 +456,8 @@ google_maps_enrichment:
author_uri: https://www.google.com/maps/contrib/118114075956727846283/reviews
rating: 5
relative_time_description: 3 maanden geleden
text: Prachtig museum met een bijzondere collectie van oude instrumenten die de
basis hebben gelegd voor de wetenschap (prisma's, microscopen, model sterrenstelsels,
etc). Het museum is groter dan je denkt en is ook leuk voor kinderen.
text: Prachtig museum met een bijzondere collectie van oude instrumenten die de basis hebben gelegd voor de wetenschap
(prisma's, microscopen, model sterrenstelsels, etc). Het museum is groter dan je denkt en is ook leuk voor kinderen.
publish_time: '2025-08-12T21:32:08.609540646Z'
- author_name: Q J
author_uri: https://www.google.com/maps/contrib/112558679519128181683/reviews
@ -471,9 +465,8 @@ google_maps_enrichment:
relative_time_description: een maand geleden
text: 'Wat een verrassend leuk museum! 🔭
Rijksmuseum Boerhaave laat op een supertoffe manier zien hoe wetenschap en uitvindingen
onze wereld hebben veranderd. Interactieve opstellingen, leuke proefjes voor
kinderen, en veel interessante verhalen voor volwassenen. Echt een aanrader
Rijksmuseum Boerhaave laat op een supertoffe manier zien hoe wetenschap en uitvindingen onze wereld hebben veranderd.
Interactieve opstellingen, leuke proefjes voor kinderen, en veel interessante verhalen voor volwassenen. Echt een aanrader
voor nieuwsgierige geesten!'
publish_time: '2025-10-10T01:22:19.989285707Z'
- author_name: Marcel Keijzer
@ -484,16 +477,13 @@ google_maps_enrichment:
Nu focus op ongezien was eye opener.
Veel te horen en te doen zoals spelen met wiskunde, geneeskunde ethiek vragen,
wetenschap kijk luisteren en doen creativiteit.
Veel te horen en te doen zoals spelen met wiskunde, geneeskunde ethiek vragen, wetenschap kijk luisteren en doen creativiteit.
Wij dachten met 2 uur heb je voldoende gezien maar je kan hier makkelijk uren
vermaken en verwonderen.
Wij dachten met 2 uur heb je voldoende gezien maar je kan hier makkelijk uren vermaken en verwonderen.
Er is ook een mogelijkheid voor koffie en lekkere dingen.'
publish_time: '2025-10-19T12:51:12.508408568Z'
editorial_summary: Voormalig ziekenhuis met wetenschappelijke en medische objecten
uit de 16e eeuw.
editorial_summary: Voormalig ziekenhuis met wetenschappelijke en medische objecten uit de 16e eeuw.
photo_urls:
- https://places.googleapis.com/v1/places/ChIJadfwI-3GxUcR9zYJov4lvUw/photos/AWn5SU4ImgbcTwqtFtsAWCs9p6MlZH632HfqUeJZqhzbVmtgIWBFj2R8tk5EtcUsVG62cpltg8z5VgFszxRhMiG-qEb1KygR2UGeWgq8IHo1tdFIsXfVxNMkJJVrcIV8GgRwskMUig1PoSVFNms024JnEcYVu5Z0wVMrh9boOk8noA7c2jd6wohMy9P6imK-eJlzHteh9drxfYU9E4cmxTfchmjlORTj_Jy0w26w48h91HhkmsOzf9sk0B8q31Ohd25_2LWYK8-FDxzpwNcviIiFIcqoPVKz84lnVuLgi5Xsmpy6Jw/media?maxWidthPx=800&key=AIzaSyAHuazNth9ZvfRFYk5-v49CwXwhABH8Ri0
- https://places.googleapis.com/v1/places/ChIJadfwI-3GxUcR9zYJov4lvUw/photos/AWn5SU5vrbbB8aYPmFrqE-AEcHmdN29IRYkFmVvvSInmKnWNfBqU4ECxUc0eOt_WrXBBcMjV1lbH9_gTBfks9xdE4oV8wyv60CG4cU4evZiJpjz8SqU_7sP16RgYERrYC7762uDunUw4vmj0C8kNR_zi0gFC4FAsnPpwNAeDSDIAfrAhgdkD6tnCcFzCjNE3WLGqDZ_a8wfI1AjeUz8mrIOUS5yYf4Xp7L-94tu-DXTdMawCYqo7Mcow83Gqpp-GPRaFcWtshCRahGvbuWpAqC_VeYYG0YQ_IjuGCf5QAWC-mqAM0ZNocjNK4aVdZBJN6_ivtztv0QDdeVXID5lDHiJyDasMvdMgdJAEOy1KUzZbLVbEW2-BHLpx1RbvQ1Ar6bY30tn1U7u4HPOqeYztxt1wbaGcUZv5VyXvrczozvU3l5HEtg/media?maxWidthPx=800&key=AIzaSyAHuazNth9ZvfRFYk5-v49CwXwhABH8Ri0
@ -681,8 +671,8 @@ timespan:
end_of_the_end: null
sources:
- 'Wikidata P571 (inception): https://www.wikidata.org/wiki/Q759169'
notes: Rijksmuseum Boerhaave founded 1931 in Leiden. National museum of the history
of science and medicine, named after Herman Boerhaave
notes: Rijksmuseum Boerhaave founded 1931 in Leiden. National museum of the history of science and medicine, named after
Herman Boerhaave
location:
latitude: 52.161401
longitude: 4.488983
@ -720,9 +710,8 @@ digital_platform_v2:
platform_name: Ontdek wat wetenschap doet - Rijksmuseum Boerhaave Website
platform_url: https://www.rijksmuseumboerhaave.nl/
platform_type: DISCOVERY_PORTAL
description: 'Kom langs in Leiden — Ontdek wat wetenschap doet. Laat je het verhaal
van 500 jaar wetenschap en geneeskunde vertellen, bij Rijksmuseum Boerhaave.
Tentoonstellingen, vaste collectie, activiteiten en nog veel meer. '
description: 'Kom langs in Leiden — Ontdek wat wetenschap doet. Laat je het verhaal van 500 jaar wetenschap en geneeskunde
vertellen, bij Rijksmuseum Boerhaave. Tentoonstellingen, vaste collectie, activiteiten en nog veel meer. '
language: nl
og_image: https://cdn.sanity.io/images/9i524qwu/production/8b26d60653bc92e76a51db816abc75bd1e7662a0-3543x2301.jpg
favicon: http://www.rijksmuseumboerhaave.nl/favicon.ico
@ -820,3 +809,56 @@ logo_enrichment:
has_favicon: true
has_og_image: true
favicon_count: 3
mission_statement:
- statement_id: https://nde.nl/ontology/hc/mission/nl-zh-lei-m-rmb/mission-2026
statement_type: mission
statement_text: We zetten onze unieke collectie in om belangrijke ontwikkelingen in wetenschap te illustreren, de invloed
op ons dagelijks leven te laten zien en nieuwe generaties te inspireren om hun talenten te ontwikkelen.
statement_language: nl
extracted_verbatim: true
source_url: https://www.rijksmuseumboerhaave.nl/over-ons
content_hash: sha256-/+uBhyeX1lqyGP6a676jaVMg2LvcT64FyGO7/w7zbUg=
provenance:
statement_created_at: '2026-01-04T13:56:52.364864+00:00'
source_archived_at: '2026-01-04T13:56:15.918758+00:00'
retrieval_agent: linkup-api
extraction_agent: zai-glm/glm-4.7
extraction_confidence: 1.0
prov:wasDerivedFrom: https://www.rijksmuseumboerhaave.nl/over-ons
prov:generatedAtTime: '2026-01-04T13:56:52.364864+00:00'
source_section: Missie & visie
- statement_id: https://nde.nl/ontology/hc/mission/nl-zh-lei-m-rmb/vision-2026
statement_type: vision
statement_text: In een samenleving waarin wetenschappelijke en technologische ontwikkelingen steeds sneller gaan, zien wij
het als onze opdracht om mensen hierbij te betrekken en te laten zien waar deze vandaan komen. Zo ontstaat er meer begrip
van wetenschap en de bijzondere prestaties van onderzoek en innovatie.
statement_language: nl
extracted_verbatim: true
source_url: https://www.rijksmuseumboerhaave.nl/over-ons
content_hash: sha256-9QSuIvnG6BwMGzdAaTBjcWXdhNLdCi8raUQ/0902LIM=
provenance:
statement_created_at: '2026-01-04T13:56:52.364917+00:00'
source_archived_at: '2026-01-04T13:56:15.918758+00:00'
retrieval_agent: linkup-api
extraction_agent: zai-glm/glm-4.7
extraction_confidence: 1.0
prov:wasDerivedFrom: https://www.rijksmuseumboerhaave.nl/over-ons
prov:generatedAtTime: '2026-01-04T13:56:52.364917+00:00'
source_section: Missie & visie
- statement_id: https://nde.nl/ontology/hc/mission/nl-zh-lei-m-rmb/goal-2026
statement_type: goal
statement_text: De komende jaren gaan wij de roemruchte collectie en geschiedenis van het museum nog meer verbinden met
de actualiteit en maatschappelijke discussies over de prangende vragen van nu, onder het motto Podium voor de toekomst.
statement_language: nl
extracted_verbatim: true
source_url: https://www.rijksmuseumboerhaave.nl/over-ons
content_hash: sha256-uSdi2Nt2/4y+yNDLh6nOF1qf4/nXlW3x5A37qK4wO/A=
provenance:
statement_created_at: '2026-01-04T13:56:52.364928+00:00'
source_archived_at: '2026-01-04T13:56:15.918758+00:00'
retrieval_agent: linkup-api
extraction_agent: zai-glm/glm-4.7
extraction_confidence: 1.0
prov:wasDerivedFrom: https://www.rijksmuseumboerhaave.nl/over-ons
prov:generatedAtTime: '2026-01-04T13:56:52.364928+00:00'
source_section: Missie & visie

View file

@ -35,8 +35,8 @@ wikidata_enrichment:
instance_of: &id001
- id: Q33506
label: museum
description: institution that holds artifacts and other objects of scientific,
artistic, cultural, historical, or other importance
description: institution that holds artifacts and other objects of scientific, artistic, cultural, historical, or other
importance
wikidata_instance_of: *id001
wikidata_location:
country: &id002
@ -302,17 +302,15 @@ google_maps_enrichment:
author_uri: https://www.google.com/maps/contrib/107773704000166638254/reviews
rating: 5
relative_time_description: een maand geleden
text: Leuk park met een mooi kasteel, gezongen vol met bloemen en beeldentuin.
Buiten gezeten bij een restaurant, gezellige plek. Er is ook een museum met
moderne kunst, maar daar ben ik niet geweest.
text: Leuk park met een mooi kasteel, gezongen vol met bloemen en beeldentuin. Buiten gezeten bij een restaurant, gezellige
plek. Er is ook een museum met moderne kunst, maar daar ben ik niet geweest.
publish_time: '2025-10-12T16:17:02.641758799Z'
- author_name: Frans Stokkink
author_uri: https://www.google.com/maps/contrib/107265723195273993045/reviews
rating: 5
relative_time_description: 3 maanden geleden
text: 'Prachtig kasteel en bijgebouwen in een schitterende tuin vol met bloeiende
dahlia''s. Je kunt er snacken maar ook op het buitenterras lunchen bij het bijbehorende
restaurant De Hofboerderij.
text: 'Prachtig kasteel en bijgebouwen in een schitterende tuin vol met bloeiende dahlia''s. Je kunt er snacken maar ook
op het buitenterras lunchen bij het bijbehorende restaurant De Hofboerderij.
Wij hebben er een bijzondere maar ook heerlijke tosti gegeten en wat gedronken.'
publish_time: '2025-08-14T11:58:07.586258749Z'
@ -320,8 +318,8 @@ google_maps_enrichment:
author_uri: https://www.google.com/maps/contrib/115771327547856521197/reviews
rating: 5
relative_time_description: een maand geleden
text: Met mooie weer kun je hier lekker wandelen rond kasteel, en in het park
achter. Daarna ff zitten voor een koffie met iets lekkers.
text: Met mooie weer kun je hier lekker wandelen rond kasteel, en in het park achter. Daarna ff zitten voor een koffie met
iets lekkers.
publish_time: '2025-10-12T04:56:26.580908016Z'
- author_name: Lars Bakker
author_uri: https://www.google.com/maps/contrib/115706895416411172484/reviews
@ -329,11 +327,9 @@ google_maps_enrichment:
relative_time_description: 4 maanden geleden
text: 'Sprookjesachtig kasteel met prachtige tuinen
Kasteel Keukenhof is een betoverende plek vol historie en natuur. Het kasteel
zelf is goed onderhouden en straalt elegantie uit. De omliggende tuinen en het
park nodigen uit tot wandelen en ontspannen. Regelmatig zijn er leuke tentoonstellingen
en evenementen. Een ideale bestemming voor een cultureel en rustgevend dagje
uit!'
Kasteel Keukenhof is een betoverende plek vol historie en natuur. Het kasteel zelf is goed onderhouden en straalt elegantie
uit. De omliggende tuinen en het park nodigen uit tot wandelen en ontspannen. Regelmatig zijn er leuke tentoonstellingen
en evenementen. Een ideale bestemming voor een cultureel en rustgevend dagje uit!'
publish_time: '2025-07-25T07:37:34.975246690Z'
- author_name: Roel
author_uri: https://www.google.com/maps/contrib/114354462598746296248/reviews
@ -341,26 +337,20 @@ google_maps_enrichment:
relative_time_description: 6 maanden geleden
text: 'Vandaag heb ik een rondleiding gekregen bij kasteel Keukenhof.
Het is in de 17e eeuw gebouwd als een zomerverblijf voor een Amsterdamse koopman.
De torens heeft men er later, in de 18e eeuw, aan toegevoegd om het geheel meer
de allure van een kasteel te kunnen geven.
Het is in de 17e eeuw gebouwd als een zomerverblijf voor een Amsterdamse koopman. De torens heeft men er later, in de
18e eeuw, aan toegevoegd om het geheel meer de allure van een kasteel te kunnen geven.
Bijzonder aan dit kasteel is ook dat bijna de gehele inboedel en inrichting,
nog geheel authentiek is gebleven!
Bijzonder aan dit kasteel is ook dat bijna de gehele inboedel en inrichting, nog geheel authentiek is gebleven!
De rondleiding werd verzorgd door een zeer gepassioneerde vrijwilliger, die
de verhalen ook echt op een leuke manier wist te brengen, en daardoor ook de
volledige aandacht van de groep bleef houden. Een bezoek is absoluut de moeite
waard!
De rondleiding werd verzorgd door een zeer gepassioneerde vrijwilliger, die de verhalen ook echt op een leuke manier
wist te brengen, en daardoor ook de volledige aandacht van de groep bleef houden. Een bezoek is absoluut de moeite waard!
Het kasteel is slechts beperkt geopend en alleen met een geboekte rondleiding
te bezoeken, dus kijk ruim van te voren op de website wat de beschikbaarheid
is.'
Het kasteel is slechts beperkt geopend en alleen met een geboekte rondleiding te bezoeken, dus kijk ruim van te voren
op de website wat de beschikbaarheid is.'
publish_time: '2025-06-01T09:01:44.211306Z'
editorial_summary: Gerestaureerd 17e-eeuws herenhuis met torentjes op een landgoed
en tuinen met concerten en evenementen.
editorial_summary: Gerestaureerd 17e-eeuws herenhuis met torentjes op een landgoed en tuinen met concerten en evenementen.
photo_urls:
- https://places.googleapis.com/v1/places/ChIJ7czbUwHCxUcR_UB13iHpe8I/photos/AWn5SU5a5Lpk21WsAZE6xeAYFuYj262RBD4LXhtgi0vDOvVv00Q8KBErcpRJ37s4NGs-T_xt6hI_5zhRXBoPaRR3LoVhYCbgeQQK_y7mTjd6D4lexLSgDmjeJAW3kSt5oV4Ed2XcZAp8g1pkIKRzy8q3kkq1chsbRgMXcFVuyZLsXmQ0mU-etj461CO2B4kDZzple36EMXKjJw_lnzffd6oeXOCnZi00mbcQ-cPV1O3W4RDsxsVqjpbCWb941B84r6wHOhg_1YUi2pvlqIeRrQqlOPTnvEruqDIn4Os6HaumZrPOwQ/media?maxWidthPx=800&key=AIzaSyAHuazNth9ZvfRFYk5-v49CwXwhABH8Ri0
- https://places.googleapis.com/v1/places/ChIJ7czbUwHCxUcR_UB13iHpe8I/photos/AWn5SU7szTNveP1_834cBPQ3fDcA9JVRzptlrJm0-pj9pGzRTcqdOBSiXBxubaJ4wXG51oIVv8Ozg_bHlgSSoUXhJPsltfFm0mkVkarQ_JUQdoWCR0Uvr_B3cx7Cd7P6VYb_LEkr6jmeJL6-znbITsmmppak267jKYuVp44Zu1Dwz8P5oUf5Gz2YqvDsjrrbR7sfDyN7nEWvmyj-OV23slahkMDHoD7tPW_8SBZv8lXCpSNb3YHfJrshxv02eDfSEIHsUpZsjM7AJSo9na-H-_Liu9B1yOALgHNVCANeVnqQuSOy1kYVlyJgwMJ3yadEvkxIDG316VnWr4xE9qgmJELXZ7rKyg2gWv5i6EputRxUYzkNeOQi8WKuoJvGxw9aXCHAH6aTFAPOZ6F8crxAk74_gyKncRRtJjnEIXhoIEx0cfJfbcVr/media?maxWidthPx=800&key=AIzaSyAHuazNth9ZvfRFYk5-v49CwXwhABH8Ri0
@ -637,14 +627,12 @@ youtube_enrichment:
- video_id: gKW781bhBpo
video_url: https://www.youtube.com/watch?v=gKW781bhBpo
title: Kerst op Kasteel Keukenhof 2016
description: "Traditiegetrouw wordt Kasteel Keukenhof in de maand december volledig\
\ in kerstsfeer gebracht. Het thema van 2016 is “375 jaar Kerst op Kasteel Keukenhof”.\
\ \n\nDe viering van 375 jaar Kerst op Kasteel Keukenhof is een tentoonstelling\
\ over kerstversiering door de eeuwen heen. Met prachtig gedekte tafels en rijk\
\ gedecoreerde kerstbomen kunt u als bezoeker op bijzondere wijze kennis maken\
\ met de manier waarop de adel kerst vierde. \n\nKerst op Kasteel Keukenhof\
\ is voor publiek geopend van 8 t/m 11 december en van 16 t/m 18 december 2016.\
\ Kijk voor meer informatie en openingstijden op www.kasteelkeukenhof.nl"
description: "Traditiegetrouw wordt Kasteel Keukenhof in de maand december volledig in kerstsfeer gebracht. Het thema\
\ van 2016 is “375 jaar Kerst op Kasteel Keukenhof”. \n\nDe viering van 375 jaar Kerst op Kasteel Keukenhof is een tentoonstelling\
\ over kerstversiering door de eeuwen heen. Met prachtig gedekte tafels en rijk gedecoreerde kerstbomen kunt u als bezoeker\
\ op bijzondere wijze kennis maken met de manier waarop de adel kerst vierde. \n\nKerst op Kasteel Keukenhof is voor\
\ publiek geopend van 8 t/m 11 december en van 16 t/m 18 december 2016. Kijk voor meer informatie en openingstijden\
\ op www.kasteelkeukenhof.nl"
published_at: '2016-12-09T15:19:19Z'
duration: PT1M4S
definition: hd
@ -672,19 +660,15 @@ youtube_enrichment:
- video_id: B-Er9-HW6ik
video_url: https://www.youtube.com/watch?v=B-Er9-HW6ik
title: Documentaire Kasteel Keukenhof 'De Parel Glimt weer' - deel 9
description: "Kasteel Keukenhof is het stralende middelpunt van het sfeervolle\
\ Landgoed Keukenhof in Lisse waar tevens de wereldberoemde Bloemententoonstelling\
\ Keukenhof op is gesitueerd. \n\nIn 2013 werd ter ere van het 10-jarig jubileum\
\ van de Stichting Kasteel Keukenhof een documentaire gemaakt die kijkers een\
\ beeld geeft van de vele ontwikkelingen die Landgoed Keukenhof heeft ondergaan\
\ in de periode dat de Stichting Kasteel Keukenhof eigenaar was (2003 - 2015).\
\ \n\nIn december 2015 zijn de Stichting Kasteel Keukenhof en de Stichting VanLansenbergh\
\ gefuseerd tot de Stichting Graaf Carel van Lynden. Deze stichting is vanaf\
\ 1 januari 2016 eigenaar van twee organisaties: Kasteel Keukenhof en Bloemententoonstelling\
\ Keukenhof.\n\nMede dankzij de inzet van vele vrijwilligers, fondsen, subsidiegevers,\
\ donateurs en ondernemers is er in de periode van 2003 tot 2013 bijzonder veel\
\ gebeurd. De documentaire is opgesplitst in 9 delen. Bekijk deel 9 nu online.\
\ \n\nKijk voor meer informatie over Kasteel Keukenhof op www.kasteelkeukenhof.nl"
description: "Kasteel Keukenhof is het stralende middelpunt van het sfeervolle Landgoed Keukenhof in Lisse waar tevens\
\ de wereldberoemde Bloemententoonstelling Keukenhof op is gesitueerd. \n\nIn 2013 werd ter ere van het 10-jarig jubileum\
\ van de Stichting Kasteel Keukenhof een documentaire gemaakt die kijkers een beeld geeft van de vele ontwikkelingen\
\ die Landgoed Keukenhof heeft ondergaan in de periode dat de Stichting Kasteel Keukenhof eigenaar was (2003 - 2015).\
\ \n\nIn december 2015 zijn de Stichting Kasteel Keukenhof en de Stichting VanLansenbergh gefuseerd tot de Stichting\
\ Graaf Carel van Lynden. Deze stichting is vanaf 1 januari 2016 eigenaar van twee organisaties: Kasteel Keukenhof en\
\ Bloemententoonstelling Keukenhof.\n\nMede dankzij de inzet van vele vrijwilligers, fondsen, subsidiegevers, donateurs\
\ en ondernemers is er in de periode van 2003 tot 2013 bijzonder veel gebeurd. De documentaire is opgesplitst in 9 delen.\
\ Bekijk deel 9 nu online. \n\nKijk voor meer informatie over Kasteel Keukenhof op www.kasteelkeukenhof.nl"
published_at: '2016-07-26T13:25:03Z'
duration: PT7M49S
definition: hd
@ -716,19 +700,15 @@ youtube_enrichment:
- video_id: NYcSzYnqqFM
video_url: https://www.youtube.com/watch?v=NYcSzYnqqFM
title: Documentaire Kasteel Keukenhof 'De Parel Glimt weer' - deel 8
description: "Kasteel Keukenhof is het stralende middelpunt van het sfeervolle\
\ Landgoed Keukenhof in Lisse waar tevens de wereldberoemde Bloemententoonstelling\
\ Keukenhof op is gesitueerd. \n\nIn 2013 werd ter ere van het 10-jarig jubileum\
\ van de Stichting Kasteel Keukenhof een documentaire gemaakt die kijkers een\
\ beeld geeft van de vele ontwikkelingen die Landgoed Keukenhof heeft ondergaan\
\ in de periode dat de Stichting Kasteel Keukenhof eigenaar was (2003 - 2015).\
\ \n\nIn december 2015 zijn de Stichting Kasteel Keukenhof en de Stichting VanLansenbergh\
\ gefuseerd tot de Stichting Graaf Carel van Lynden. Deze stichting is vanaf\
\ 1 januari 2016 eigenaar van twee organisaties: Kasteel Keukenhof en Bloemententoonstelling\
\ Keukenhof.\n\nMede dankzij de inzet van vele vrijwilligers, fondsen, subsidiegevers,\
\ donateurs en ondernemers is er in de periode van 2003 tot 2013 bijzonder veel\
\ gebeurd. De documentaire is opgesplitst in 9 delen. Bekijk deel 8 nu online.\
\ \n\nKijk voor meer informatie over Kasteel Keukenhof op www.kasteelkeukenhof.nl"
description: "Kasteel Keukenhof is het stralende middelpunt van het sfeervolle Landgoed Keukenhof in Lisse waar tevens\
\ de wereldberoemde Bloemententoonstelling Keukenhof op is gesitueerd. \n\nIn 2013 werd ter ere van het 10-jarig jubileum\
\ van de Stichting Kasteel Keukenhof een documentaire gemaakt die kijkers een beeld geeft van de vele ontwikkelingen\
\ die Landgoed Keukenhof heeft ondergaan in de periode dat de Stichting Kasteel Keukenhof eigenaar was (2003 - 2015).\
\ \n\nIn december 2015 zijn de Stichting Kasteel Keukenhof en de Stichting VanLansenbergh gefuseerd tot de Stichting\
\ Graaf Carel van Lynden. Deze stichting is vanaf 1 januari 2016 eigenaar van twee organisaties: Kasteel Keukenhof en\
\ Bloemententoonstelling Keukenhof.\n\nMede dankzij de inzet van vele vrijwilligers, fondsen, subsidiegevers, donateurs\
\ en ondernemers is er in de periode van 2003 tot 2013 bijzonder veel gebeurd. De documentaire is opgesplitst in 9 delen.\
\ Bekijk deel 8 nu online. \n\nKijk voor meer informatie over Kasteel Keukenhof op www.kasteelkeukenhof.nl"
published_at: '2016-07-15T12:18:52Z'
duration: PT6M36S
definition: hd
@ -765,19 +745,15 @@ youtube_enrichment:
- video_id: lORznWLGlZA
video_url: https://www.youtube.com/watch?v=lORznWLGlZA
title: Documentaire Kasteel Keukenhof 'De Parel Glimt weer' - deel 7
description: "Kasteel Keukenhof is het stralende middelpunt van het sfeervolle\
\ Landgoed Keukenhof in Lisse waar tevens de wereldberoemde Bloemententoonstelling\
\ Keukenhof op is gesitueerd. \n\nIn 2013 werd ter ere van het 10-jarig jubileum\
\ van de Stichting Kasteel Keukenhof een documentaire gemaakt die kijkers een\
\ beeld geeft van de vele ontwikkelingen die Landgoed Keukenhof heeft ondergaan\
\ in de periode dat de Stichting Kasteel Keukenhof eigenaar was (2003 - 2015).\
\ \n\nIn december 2015 zijn de Stichting Kasteel Keukenhof en de Stichting VanLansenbergh\
\ gefuseerd tot de Stichting Graaf Carel van Lynden. Deze stichting is vanaf\
\ 1 januari 2016 eigenaar van twee organisaties: Kasteel Keukenhof en Bloemententoonstelling\
\ Keukenhof.\n\nMede dankzij de inzet van vele vrijwilligers, fondsen, subsidiegevers,\
\ donateurs en ondernemers is er in de periode van 2003 tot 2013 bijzonder veel\
\ gebeurd. De documentaire is opgesplitst in 7 delen. Bekijk deel 7 nu online.\
\ \n\nKijk voor meer informatie over Kasteel Keukenhof op www.kasteelkeukenhof.nl"
description: "Kasteel Keukenhof is het stralende middelpunt van het sfeervolle Landgoed Keukenhof in Lisse waar tevens\
\ de wereldberoemde Bloemententoonstelling Keukenhof op is gesitueerd. \n\nIn 2013 werd ter ere van het 10-jarig jubileum\
\ van de Stichting Kasteel Keukenhof een documentaire gemaakt die kijkers een beeld geeft van de vele ontwikkelingen\
\ die Landgoed Keukenhof heeft ondergaan in de periode dat de Stichting Kasteel Keukenhof eigenaar was (2003 - 2015).\
\ \n\nIn december 2015 zijn de Stichting Kasteel Keukenhof en de Stichting VanLansenbergh gefuseerd tot de Stichting\
\ Graaf Carel van Lynden. Deze stichting is vanaf 1 januari 2016 eigenaar van twee organisaties: Kasteel Keukenhof en\
\ Bloemententoonstelling Keukenhof.\n\nMede dankzij de inzet van vele vrijwilligers, fondsen, subsidiegevers, donateurs\
\ en ondernemers is er in de periode van 2003 tot 2013 bijzonder veel gebeurd. De documentaire is opgesplitst in 7 delen.\
\ Bekijk deel 7 nu online. \n\nKijk voor meer informatie over Kasteel Keukenhof op www.kasteelkeukenhof.nl"
published_at: '2016-07-08T07:06:20Z'
duration: PT5M13S
definition: hd
@ -807,19 +783,15 @@ youtube_enrichment:
- video_id: muJPITQZxT8
video_url: https://www.youtube.com/watch?v=muJPITQZxT8
title: Documentaire Kasteel Keukenhof 'De Parel Glimt weer' - deel 6
description: "Kasteel Keukenhof is het stralende middelpunt van het sfeervolle\
\ Landgoed Keukenhof in Lisse waar tevens de wereldberoemde Bloemententoonstelling\
\ Keukenhof op is gesitueerd. \n\nIn 2013 werd ter ere van het 10-jarig jubileum\
\ van de Stichting Kasteel Keukenhof een documentaire gemaakt die kijkers een\
\ beeld geeft van de vele ontwikkelingen die Landgoed Keukenhof heeft ondergaan\
\ in de periode dat de Stichting Kasteel Keukenhof eigenaar was (2003 - 2015).\
\ \n\nIn december 2015 zijn de Stichting Kasteel Keukenhof en de Stichting VanLansenbergh\
\ gefuseerd tot de Stichting Graaf Carel van Lynden. Deze stichting is vanaf\
\ 1 januari 2016 eigenaar van twee organisaties: Kasteel Keukenhof en Bloemententoonstelling\
\ Keukenhof.\n\nMede dankzij de inzet van vele vrijwilligers, fondsen, subsidiegevers,\
\ donateurs en ondernemers is er in de periode van 2003 tot 2013 bijzonder veel\
\ gebeurd. De documentaire is opgesplitst in 7 delen. Bekijk deel 6 nu online.\
\ \n\nKijk voor meer informatie over Kasteel Keukenhof op www.kasteelkeukenhof.nl"
description: "Kasteel Keukenhof is het stralende middelpunt van het sfeervolle Landgoed Keukenhof in Lisse waar tevens\
\ de wereldberoemde Bloemententoonstelling Keukenhof op is gesitueerd. \n\nIn 2013 werd ter ere van het 10-jarig jubileum\
\ van de Stichting Kasteel Keukenhof een documentaire gemaakt die kijkers een beeld geeft van de vele ontwikkelingen\
\ die Landgoed Keukenhof heeft ondergaan in de periode dat de Stichting Kasteel Keukenhof eigenaar was (2003 - 2015).\
\ \n\nIn december 2015 zijn de Stichting Kasteel Keukenhof en de Stichting VanLansenbergh gefuseerd tot de Stichting\
\ Graaf Carel van Lynden. Deze stichting is vanaf 1 januari 2016 eigenaar van twee organisaties: Kasteel Keukenhof en\
\ Bloemententoonstelling Keukenhof.\n\nMede dankzij de inzet van vele vrijwilligers, fondsen, subsidiegevers, donateurs\
\ en ondernemers is er in de periode van 2003 tot 2013 bijzonder veel gebeurd. De documentaire is opgesplitst in 7 delen.\
\ Bekijk deel 6 nu online. \n\nKijk voor meer informatie over Kasteel Keukenhof op www.kasteelkeukenhof.nl"
published_at: '2016-06-16T11:58:52Z'
duration: PT7M35S
definition: hd
@ -852,19 +824,15 @@ youtube_enrichment:
- video_id: DIGYoocmvCQ
video_url: https://www.youtube.com/watch?v=DIGYoocmvCQ
title: Documentaire Kasteel Keukenhof 'De Parel Glimt weer' - deel 5
description: "Kasteel Keukenhof is het stralende middelpunt van het sfeervolle\
\ Landgoed Keukenhof in Lisse waar tevens de wereldberoemde Bloemententoonstelling\
\ Keukenhof op is gesitueerd. \n\nIn 2013 werd ter ere van het 10-jarig jubileum\
\ van de Stichting Kasteel Keukenhof een documentaire gemaakt die kijkers een\
\ beeld geeft van de vele ontwikkelingen die Landgoed Keukenhof heeft ondergaan\
\ in de periode dat de Stichting Kasteel Keukenhof eigenaar was (2003 - 2015).\
\ \n\nIn december 2015 zijn de Stichting Kasteel Keukenhof en de Stichting VanLansenbergh\
\ gefuseerd tot de Stichting Graaf Carel van Lynden. Deze stichting is vanaf\
\ 1 januari 2016 eigenaar van twee organisaties: Kasteel Keukenhof en Bloemententoonstelling\
\ Keukenhof.\n\nMede dankzij de inzet van vele vrijwilligers, fondsen, subsidiegevers,\
\ donateurs en ondernemers is er in de periode van 2003 tot 2013 bijzonder veel\
\ gebeurd. De documentaire is opgesplitst in 7 delen. Bekijk deel 5 nu online.\
\ \n\nKijk voor meer informatie over Kasteel Keukenhof op www.kasteelkeukenhof.nl"
description: "Kasteel Keukenhof is het stralende middelpunt van het sfeervolle Landgoed Keukenhof in Lisse waar tevens\
\ de wereldberoemde Bloemententoonstelling Keukenhof op is gesitueerd. \n\nIn 2013 werd ter ere van het 10-jarig jubileum\
\ van de Stichting Kasteel Keukenhof een documentaire gemaakt die kijkers een beeld geeft van de vele ontwikkelingen\
\ die Landgoed Keukenhof heeft ondergaan in de periode dat de Stichting Kasteel Keukenhof eigenaar was (2003 - 2015).\
\ \n\nIn december 2015 zijn de Stichting Kasteel Keukenhof en de Stichting VanLansenbergh gefuseerd tot de Stichting\
\ Graaf Carel van Lynden. Deze stichting is vanaf 1 januari 2016 eigenaar van twee organisaties: Kasteel Keukenhof en\
\ Bloemententoonstelling Keukenhof.\n\nMede dankzij de inzet van vele vrijwilligers, fondsen, subsidiegevers, donateurs\
\ en ondernemers is er in de periode van 2003 tot 2013 bijzonder veel gebeurd. De documentaire is opgesplitst in 7 delen.\
\ Bekijk deel 5 nu online. \n\nKijk voor meer informatie over Kasteel Keukenhof op www.kasteelkeukenhof.nl"
published_at: '2016-06-10T13:38:36Z'
duration: PT5M19S
definition: hd
@ -899,19 +867,15 @@ youtube_enrichment:
- video_id: zoiYuWgZqQI
video_url: https://www.youtube.com/watch?v=zoiYuWgZqQI
title: Documentaire Kasteel Keukenhof 'De Parel Glimt weer' - deel 4
description: "Kasteel Keukenhof is het stralende middelpunt van het sfeervolle\
\ Landgoed Keukenhof in Lisse waar tevens de wereldberoemde Bloemententoonstelling\
\ Keukenhof op is gesitueerd. \n\nIn 2013 werd ter ere van het 10-jarig jubileum\
\ van de Stichting Kasteel Keukenhof een documentaire gemaakt die kijkers een\
\ beeld geeft van de vele ontwikkelingen die Landgoed Keukenhof heeft ondergaan\
\ in de periode dat de Stichting Kasteel Keukenhof eigenaar was (2003 - 2015).\
\ \n\nIn december 2015 zijn de Stichting Kasteel Keukenhof en de Stichting VanLansenbergh\
\ gefuseerd tot de Stichting Graaf Carel van Lynden. Deze stichting is vanaf\
\ 1 januari 2016 eigenaar van twee organisaties: Kasteel Keukenhof en Bloemententoonstelling\
\ Keukenhof.\n\nMede dankzij de inzet van vele vrijwilligers, fondsen, subsidiegevers,\
\ donateurs en ondernemers is er in de periode van 2003 tot 2013 bijzonder veel\
\ gebeurd. De documentaire is opgesplitst in 7 delen. Bekijk deel 4 nu online.\
\ \n\nKijk voor meer informatie over Kasteel Keukenhof op www.kasteelkeukenhof.nl"
description: "Kasteel Keukenhof is het stralende middelpunt van het sfeervolle Landgoed Keukenhof in Lisse waar tevens\
\ de wereldberoemde Bloemententoonstelling Keukenhof op is gesitueerd. \n\nIn 2013 werd ter ere van het 10-jarig jubileum\
\ van de Stichting Kasteel Keukenhof een documentaire gemaakt die kijkers een beeld geeft van de vele ontwikkelingen\
\ die Landgoed Keukenhof heeft ondergaan in de periode dat de Stichting Kasteel Keukenhof eigenaar was (2003 - 2015).\
\ \n\nIn december 2015 zijn de Stichting Kasteel Keukenhof en de Stichting VanLansenbergh gefuseerd tot de Stichting\
\ Graaf Carel van Lynden. Deze stichting is vanaf 1 januari 2016 eigenaar van twee organisaties: Kasteel Keukenhof en\
\ Bloemententoonstelling Keukenhof.\n\nMede dankzij de inzet van vele vrijwilligers, fondsen, subsidiegevers, donateurs\
\ en ondernemers is er in de periode van 2003 tot 2013 bijzonder veel gebeurd. De documentaire is opgesplitst in 7 delen.\
\ Bekijk deel 4 nu online. \n\nKijk voor meer informatie over Kasteel Keukenhof op www.kasteelkeukenhof.nl"
published_at: '2016-06-02T09:50:38Z'
duration: PT5M46S
definition: hd
@ -952,19 +916,15 @@ youtube_enrichment:
- video_id: P2roZhKIvSI
video_url: https://www.youtube.com/watch?v=P2roZhKIvSI
title: Documentaire Kasteel Keukenhof 'De Parel Glimt weer' - deel 3
description: "Kasteel Keukenhof is het stralende middelpunt van het sfeervolle\
\ Landgoed Keukenhof in Lisse waar tevens de wereldberoemde Bloemententoonstelling\
\ Keukenhof op is gesitueerd. \n\nIn 2013 werd ter ere van het 10-jarig jubileum\
\ van de Stichting Kasteel Keukenhof een documentaire gemaakt die kijkers een\
\ beeld geeft van de vele ontwikkelingen die Landgoed Keukenhof heeft ondergaan\
\ in de periode dat de Stichting Kasteel Keukenhof eigenaar was (2003 - 2015).\
\ \n\nIn december 2015 zijn de Stichting Kasteel Keukenhof en de Stichting VanLansenbergh\
\ gefuseerd tot de Stichting Graaf Carel van Lynden. Deze stichting is vanaf\
\ 1 januari 2016 eigenaar van twee organisaties: Kasteel Keukenhof en Bloemententoonstelling\
\ Keukenhof.\n\nMede dankzij de inzet van vele vrijwilligers, fondsen, subsidiegevers,\
\ donateurs en ondernemers is er in de periode van 2003 tot 2013 bijzonder veel\
\ gebeurd. De documentaire is opgesplitst in 7 delen. Bekijk deel 3 nu online.\
\ \n\nKijk voor meer informatie over Kasteel Keukenhof op www.kasteelkeukenhof.nl"
description: "Kasteel Keukenhof is het stralende middelpunt van het sfeervolle Landgoed Keukenhof in Lisse waar tevens\
\ de wereldberoemde Bloemententoonstelling Keukenhof op is gesitueerd. \n\nIn 2013 werd ter ere van het 10-jarig jubileum\
\ van de Stichting Kasteel Keukenhof een documentaire gemaakt die kijkers een beeld geeft van de vele ontwikkelingen\
\ die Landgoed Keukenhof heeft ondergaan in de periode dat de Stichting Kasteel Keukenhof eigenaar was (2003 - 2015).\
\ \n\nIn december 2015 zijn de Stichting Kasteel Keukenhof en de Stichting VanLansenbergh gefuseerd tot de Stichting\
\ Graaf Carel van Lynden. Deze stichting is vanaf 1 januari 2016 eigenaar van twee organisaties: Kasteel Keukenhof en\
\ Bloemententoonstelling Keukenhof.\n\nMede dankzij de inzet van vele vrijwilligers, fondsen, subsidiegevers, donateurs\
\ en ondernemers is er in de periode van 2003 tot 2013 bijzonder veel gebeurd. De documentaire is opgesplitst in 7 delen.\
\ Bekijk deel 3 nu online. \n\nKijk voor meer informatie over Kasteel Keukenhof op www.kasteelkeukenhof.nl"
published_at: '2016-05-26T08:38:51Z'
duration: PT7M41S
definition: hd
@ -1001,19 +961,15 @@ youtube_enrichment:
- video_id: oEi7kGnVdNM
video_url: https://www.youtube.com/watch?v=oEi7kGnVdNM
title: Documentaire Kasteel Keukenhof 'De Parel Glimt weer' - deel 2
description: "Kasteel Keukenhof is het stralende middelpunt van het sfeervolle\
\ Landgoed Keukenhof in Lisse waar tevens de wereldberoemde Bloemententoonstelling\
\ Keukenhof op is gesitueerd. \n\nIn 2013 werd ter ere van het 10-jarig jubileum\
\ van de Stichting Kasteel Keukenhof een documentaire gemaakt die kijkers een\
\ beeld geeft van de vele ontwikkelingen die Landgoed Keukenhof heeft ondergaan\
\ in de periode dat de Stichting Kasteel Keukenhof eigenaar was (2003 - 2015).\
\ \n\nIn december 2015 zijn de Stichting Kasteel Keukenhof en de Stichting VanLansenbergh\
\ gefuseerd tot de Stichting Graaf Carel van Lynden. Deze stichting is vanaf\
\ 1 januari 2016 eigenaar van twee organisaties: Kasteel Keukenhof en Bloemententoonstelling\
\ Keukenhof.\n\nMede dankzij de inzet van vele vrijwilligers, fondsen, subsidiegevers,\
\ donateurs en ondernemers is er in de periode van 2003 tot 2013 bijzonder veel\
\ gebeurd. De documentaire is opgesplitst in 7 delen. Bekijk deel 2 nu online.\
\ \n\nKijk voor meer informatie over Kasteel Keukenhof op www.kasteelkeukenhof.nl"
description: "Kasteel Keukenhof is het stralende middelpunt van het sfeervolle Landgoed Keukenhof in Lisse waar tevens\
\ de wereldberoemde Bloemententoonstelling Keukenhof op is gesitueerd. \n\nIn 2013 werd ter ere van het 10-jarig jubileum\
\ van de Stichting Kasteel Keukenhof een documentaire gemaakt die kijkers een beeld geeft van de vele ontwikkelingen\
\ die Landgoed Keukenhof heeft ondergaan in de periode dat de Stichting Kasteel Keukenhof eigenaar was (2003 - 2015).\
\ \n\nIn december 2015 zijn de Stichting Kasteel Keukenhof en de Stichting VanLansenbergh gefuseerd tot de Stichting\
\ Graaf Carel van Lynden. Deze stichting is vanaf 1 januari 2016 eigenaar van twee organisaties: Kasteel Keukenhof en\
\ Bloemententoonstelling Keukenhof.\n\nMede dankzij de inzet van vele vrijwilligers, fondsen, subsidiegevers, donateurs\
\ en ondernemers is er in de periode van 2003 tot 2013 bijzonder veel gebeurd. De documentaire is opgesplitst in 7 delen.\
\ Bekijk deel 2 nu online. \n\nKijk voor meer informatie over Kasteel Keukenhof op www.kasteelkeukenhof.nl"
published_at: '2016-05-19T12:03:40Z'
duration: PT5M50S
definition: hd
@ -1045,19 +1001,15 @@ youtube_enrichment:
- video_id: mU4PcqNPRsk
video_url: https://www.youtube.com/watch?v=mU4PcqNPRsk
title: Documentaire Kasteel Keukenhof 'De Parel Glimt weer' - deel 1
description: "Kasteel Keukenhof is het stralende middelpunt van het sfeervolle\
\ Landgoed Keukenhof in Lisse waar tevens de wereldberoemde Bloemententoonstelling\
\ Keukenhof op is gesitueerd. \n\nIn 2013 werd ter ere van het 10-jarig jubileum\
\ van de Stichting Kasteel Keukenhof een documentaire gemaakt die kijkers een\
\ beeld geeft van de vele ontwikkelingen die Landgoed Keukenhof heeft ondergaan\
\ in de periode dat de Stichting Kasteel Keukenhof eigenaar was (2003 - 2015).\
\ \n\nIn december 2015 zijn de Stichting Kasteel Keukenhof en de Stichting VanLansenbergh\
\ gefuseerd tot de Stichting Graaf Carel van Lynden. Deze stichting is vanaf\
\ 1 januari 2016 eigenaar van twee organisaties: Kasteel Keukenhof en Bloemententoonstelling\
\ Keukenhof.\n\nMede dankzij de inzet van vele vrijwilligers, fondsen, subsidiegevers,\
\ donateurs en ondernemers is er in de periode van 2003 tot 2013 bijzonder veel\
\ gebeurt. De documentaire is opgesplitst in 7 delen. Bekijk deel 1 nu online.\
\ \n\nKijk voor meer informatie over Kasteel Keukenhof op www.kasteelkeukenhof.nl"
description: "Kasteel Keukenhof is het stralende middelpunt van het sfeervolle Landgoed Keukenhof in Lisse waar tevens\
\ de wereldberoemde Bloemententoonstelling Keukenhof op is gesitueerd. \n\nIn 2013 werd ter ere van het 10-jarig jubileum\
\ van de Stichting Kasteel Keukenhof een documentaire gemaakt die kijkers een beeld geeft van de vele ontwikkelingen\
\ die Landgoed Keukenhof heeft ondergaan in de periode dat de Stichting Kasteel Keukenhof eigenaar was (2003 - 2015).\
\ \n\nIn december 2015 zijn de Stichting Kasteel Keukenhof en de Stichting VanLansenbergh gefuseerd tot de Stichting\
\ Graaf Carel van Lynden. Deze stichting is vanaf 1 januari 2016 eigenaar van twee organisaties: Kasteel Keukenhof en\
\ Bloemententoonstelling Keukenhof.\n\nMede dankzij de inzet van vele vrijwilligers, fondsen, subsidiegevers, donateurs\
\ en ondernemers is er in de periode van 2003 tot 2013 bijzonder veel gebeurt. De documentaire is opgesplitst in 7 delen.\
\ Bekijk deel 1 nu online. \n\nKijk voor meer informatie over Kasteel Keukenhof op www.kasteelkeukenhof.nl"
published_at: '2016-05-18T07:53:29Z'
duration: PT7M26S
definition: hd
@ -1091,8 +1043,8 @@ youtube_enrichment:
- video_id: AT1fz5B_sHM
video_url: https://www.youtube.com/watch?v=AT1fz5B_sHM
title: Ferocius Events bij Kasteel Keukenhof
description: Ferocius Events verzorgde op dinsdag 1 september 2015 tijdens het
netwerkevenement "Zeg ken jij de Mosselman" de entertainment bij Kasteel Keukenhof.
description: Ferocius Events verzorgde op dinsdag 1 september 2015 tijdens het netwerkevenement "Zeg ken jij de Mosselman"
de entertainment bij Kasteel Keukenhof.
published_at: '2015-09-04T07:26:01Z'
duration: PT30S
definition: hd
@ -1116,20 +1068,16 @@ youtube_enrichment:
- video_id: YE8a0n8llwU
video_url: https://www.youtube.com/watch?v=YE8a0n8llwU
title: Kasteel Keukenhof
description: "Kasteel Keukenhof vormt het stralende middelpunt van het sfeervolle\
\ en bosrijke Landgoed Keukenhof en is gelegen in het hart van de Randstad.\
\ Meer dan tweehonderd hectare bos, weiland en en prachtig aangelegd park met\
\ ruim achttien monumenten. Een historische omgeving, maar bruisend van leven.\n\
\nTrouwen in een sprookjesachtige omgeving, vergaderen in een bijzondere ambiance\
\ of wandelen in onze stijlvolle tuinen? Bij ons bent u aan het juiste adres.\
\ U kunt rekenen op een gastvrij ontvangst en u wordt omringd door de beste\
\ zorg. Wij staan voor u klaar! Tevens organiseren wij tal van leuke activiteiten,\
\ workshops en tentoonstellingen. \n\nIedere gelegenheid is uniek en vraagt\
\ dus om een eigen invulling. Onze creatieve staf denkt graag met u mee! U\
\ kunt bij ons altijd rekenen op een gastvrije ontvangst én de beste verzorging\
\ tot in de kleinste details! Onze poorten en deuren staan het hele jaar wagenwijd\
\ open. \n\nHet lijkt haast een sprookje, maar dat is het niet. Uw Kasteel Keukenhof\
\ is echt! \n\nKasteel Keukenhof\nKeukenhof 1\n2161 AN Lisse\nW. www.kasteelkeukenhof.nl"
description: "Kasteel Keukenhof vormt het stralende middelpunt van het sfeervolle en bosrijke Landgoed Keukenhof en is\
\ gelegen in het hart van de Randstad. Meer dan tweehonderd hectare bos, weiland en en prachtig aangelegd park met ruim\
\ achttien monumenten. Een historische omgeving, maar bruisend van leven.\n\nTrouwen in een sprookjesachtige omgeving,\
\ vergaderen in een bijzondere ambiance of wandelen in onze stijlvolle tuinen? Bij ons bent u aan het juiste adres.\
\ U kunt rekenen op een gastvrij ontvangst en u wordt omringd door de beste zorg. Wij staan voor u klaar! Tevens organiseren\
\ wij tal van leuke activiteiten, workshops en tentoonstellingen. \n\nIedere gelegenheid is uniek en vraagt dus om\
\ een eigen invulling. Onze creatieve staf denkt graag met u mee! U kunt bij ons altijd rekenen op een gastvrije ontvangst\
\ én de beste verzorging tot in de kleinste details! Onze poorten en deuren staan het hele jaar wagenwijd open. \n\n\
Het lijkt haast een sprookje, maar dat is het niet. Uw Kasteel Keukenhof is echt! \n\nKasteel Keukenhof\nKeukenhof 1\n\
2161 AN Lisse\nW. www.kasteelkeukenhof.nl"
published_at: '2015-02-27T08:25:58Z'
duration: PT3M26S
definition: hd
@ -1170,13 +1118,11 @@ youtube_enrichment:
- video_id: x6pkfMdcfTs
video_url: https://www.youtube.com/watch?v=x6pkfMdcfTs
title: Kerst op Keukenhof
description: "Kerst op Keukenhof is een van de grootste kerstmarkten van Nederland\
\ en wordt jaarlijks georganiseerd in de tuinen van Kasteel Keukenhof in Lisse.\
\ \n\nJong en oud geniet jaarlijks tijdens Kerst op Keukenhof van de heerlijke\
\ sfeer die bij Kerst past. Honderden kramen, tienduizenden lampjes, vele kerstbomen,\
\ kerstkoren en het kasteel welke jaarlijks compleet in kerstsferen is aangekleed\
\ maken het plaatje compleet! \n\nMeer informatie over Kerst op Keukenhof is\
\ te vinden op www.kerstopkeukenhof.nl"
description: "Kerst op Keukenhof is een van de grootste kerstmarkten van Nederland en wordt jaarlijks georganiseerd in\
\ de tuinen van Kasteel Keukenhof in Lisse. \n\nJong en oud geniet jaarlijks tijdens Kerst op Keukenhof van de heerlijke\
\ sfeer die bij Kerst past. Honderden kramen, tienduizenden lampjes, vele kerstbomen, kerstkoren en het kasteel welke\
\ jaarlijks compleet in kerstsferen is aangekleed maken het plaatje compleet! \n\nMeer informatie over Kerst op Keukenhof\
\ is te vinden op www.kerstopkeukenhof.nl"
published_at: '2014-01-02T21:08:44Z'
duration: PT2M9S
definition: hd
@ -1210,9 +1156,9 @@ youtube_enrichment:
- video_id: KUu_X9V1YXA
video_url: https://www.youtube.com/watch?v=KUu_X9V1YXA
title: Kerst op Keukenhof commercial 2011
description: De radiocommercial van de grote kerstfair Kerst op Keukenhof 2011,
van 8 t/m 11 december op het prachtige terrein van Kasteel Keukenhof. De commercial
is dagelijks te beluisten op RadioNL. Bestel ook uw toegangskaarten op www.kerstopkeukenhof.nl
description: De radiocommercial van de grote kerstfair Kerst op Keukenhof 2011, van 8 t/m 11 december op het prachtige
terrein van Kasteel Keukenhof. De commercial is dagelijks te beluisten op RadioNL. Bestel ook uw toegangskaarten op
www.kerstopkeukenhof.nl
published_at: '2011-12-04T11:02:49Z'
duration: PT18S
definition: sd
@ -1238,11 +1184,9 @@ youtube_enrichment:
- video_id: WjDNvBhfQt0
video_url: https://www.youtube.com/watch?v=WjDNvBhfQt0
title: Kasteel Keukenhof bij Koffietijd
description: "Op donderdag 24 november was RTL's Koffietijd op bezoek bij Kasteel\
\ Keukenhof. Na een intensieve restauratie van bijna twee jaar opende het kasteel\
\ op 23 november 2011 op spectaculaire wijze weer haar deuren. \r\n\r\nZeker\
\ voor Koffietijd de moeite waard om een bezoekje te brengen aan het prachtige\
\ Kasteel Keukenhof."
description: "Op donderdag 24 november was RTL's Koffietijd op bezoek bij Kasteel Keukenhof. Na een intensieve restauratie\
\ van bijna twee jaar opende het kasteel op 23 november 2011 op spectaculaire wijze weer haar deuren. \r\n\r\nZeker\
\ voor Koffietijd de moeite waard om een bezoekje te brengen aan het prachtige Kasteel Keukenhof."
published_at: '2011-11-24T14:41:46Z'
duration: PT3M45S
definition: sd
@ -1265,9 +1209,8 @@ youtube_enrichment:
- video_id: GMP1l6ctdbA
video_url: https://www.youtube.com/watch?v=GMP1l6ctdbA
title: Heropening Kasteel Keukenhof spectaculaire lichtshow!
description: Na een intensieve restauratie van bijna 2 jaar is Kasteel Keukenhof
op 23 november op spectaculaire wijze heropend. Met een indrukwekkende lichtshow
kwam het 'sprookjesachtige' kasteel weer tot leven!
description: Na een intensieve restauratie van bijna 2 jaar is Kasteel Keukenhof op 23 november op spectaculaire wijze
heropend. Met een indrukwekkende lichtshow kwam het 'sprookjesachtige' kasteel weer tot leven!
published_at: '2011-11-24T13:47:12Z'
duration: PT6M29S
definition: hd
@ -1299,9 +1242,8 @@ youtube_enrichment:
- video_id: Nt20cVnpToE
video_url: https://www.youtube.com/watch?v=Nt20cVnpToE
title: Keukenhof Hymne
description: De Keukenhof Hymne is een muziekstuk welke speciaal geschreven is
voor Kasteel Keukenhof. Tijdens Music at the Castle werd dit nummer voor de
eerste keer voor het publiek gespreek.
description: De Keukenhof Hymne is een muziekstuk welke speciaal geschreven is voor Kasteel Keukenhof. Tijdens Music at
the Castle werd dit nummer voor de eerste keer voor het publiek gespreek.
published_at: '2011-03-04T10:30:33Z'
duration: PT2M48S
definition: sd
@ -1351,18 +1293,14 @@ youtube_enrichment:
- video_id: Dm8AgHHkLTI
video_url: https://www.youtube.com/watch?v=Dm8AgHHkLTI
title: Kerst op Keukenhof
description: "Kerst op Keukenhof is een ideaal onderdeel van een winters dagje\
\ uit voor de hele familie. Landgoed Keukenhof wordt vier dagen lang omgetoverd\
\ tot een echt 'Winterwonderland'. \r\n\r\nOp de grote kerstfair staan vele\
\ standhouders die een breed scala producten bieden, het kasteel is voor onze\
\ bezoekers geopend en u proeft de de sfeer van een adelijke kerst. Dit alles\
\ terwijl in het Koetshuis de Kerstflora alvast een doorkijkje biedt naar de\
\ lente. De Kerstflora met de mooiste snijbloemen speciaal voor Landgoed Keukenhof\
\ gekweekt en op unieke wijze gearrangeerd. \r\n\r\nDe tuinen worden sprookjesachtig\
\ verlicht en met de grote ijsbaan waant u zich in een 'Winterwonderland'. \r\
\n\r\nKerst op Keukenhof 2010 vindt plaats van 9 t/m 12 december 2010. Voor\
\ meer informatie: www.landgoedkeukenhof.nl\r\n\r\nVoor de ontwikkeling van\
\ deze film gaat onze speciale dank uit naar Lennard Nuijten en @TV."
description: "Kerst op Keukenhof is een ideaal onderdeel van een winters dagje uit voor de hele familie. Landgoed Keukenhof\
\ wordt vier dagen lang omgetoverd tot een echt 'Winterwonderland'. \r\n\r\nOp de grote kerstfair staan vele standhouders\
\ die een breed scala producten bieden, het kasteel is voor onze bezoekers geopend en u proeft de de sfeer van een adelijke\
\ kerst. Dit alles terwijl in het Koetshuis de Kerstflora alvast een doorkijkje biedt naar de lente. De Kerstflora met\
\ de mooiste snijbloemen speciaal voor Landgoed Keukenhof gekweekt en op unieke wijze gearrangeerd. \r\n\r\nDe tuinen\
\ worden sprookjesachtig verlicht en met de grote ijsbaan waant u zich in een 'Winterwonderland'. \r\n\r\nKerst op Keukenhof\
\ 2010 vindt plaats van 9 t/m 12 december 2010. Voor meer informatie: www.landgoedkeukenhof.nl\r\n\r\nVoor de ontwikkeling\
\ van deze film gaat onze speciale dank uit naar Lennard Nuijten en @TV."
published_at: '2010-03-02T21:03:31Z'
duration: PT6M12S
definition: sd
@ -1385,12 +1323,10 @@ youtube_enrichment:
- comment_id: UgwMRpSgAPjsFMDvdJJ4AaABAg
author_display_name: '@Landgoedkeukenhof'
author_channel_url: http://www.youtube.com/@Landgoedkeukenhof
text: "Beste Sandra, \r\nLandgoed Keukenhof is een 230ha. groot landgoed. Op\
\ zo'n 50ha van ons landgoed is De Keukenhof (van de tulpen) gerealiseerd.\
\ Direct tegenover De Keukenhof ligt Kasteel Keukenhof, een historische omgeving\
\ maar bruisend van het leven. Wij organiseren tal van evenementen op ons\
\ terrein, waaronder Kerst op Keukenhof (1 van de grootste kerstfairs van\
\ NL). "
text: "Beste Sandra, \r\nLandgoed Keukenhof is een 230ha. groot landgoed. Op zo'n 50ha van ons landgoed is De Keukenhof\
\ (van de tulpen) gerealiseerd. Direct tegenover De Keukenhof ligt Kasteel Keukenhof, een historische omgeving maar\
\ bruisend van het leven. Wij organiseren tal van evenementen op ons terrein, waaronder Kerst op Keukenhof (1 van\
\ de grootste kerstfairs van NL). "
like_count: 0
published_at: '2011-06-06T10:16:49Z'
updated_at: '2011-06-06T10:16:49Z'
@ -1404,8 +1340,7 @@ digital_platforms:
platform_type: WEBSITE
platform_category:
- Organizational website
digital_collections: Gerestaureerd 17e-eeuws herenhuis met torentjes op een landgoed
en tuinen met concerten en evenementen.
digital_collections: Gerestaureerd 17e-eeuws herenhuis met torentjes op een landgoed en tuinen met concerten en evenementen.
technology_stack: Standard web technology
data_standards:
- Open Graph
@ -1450,8 +1385,7 @@ digital_platform_v2:
platform_name: Kasteelkeukenhof Website
platform_url: https://kasteelkeukenhof.nl/nl/
platform_type: INSTITUTIONAL_WEBSITE
description: Midden in de Bollenstreek, tussen de bossen en de bloemenvelden,
ligt het historisch Kasteel Keukenhof!
description: Midden in de Bollenstreek, tussen de bossen en de bloemenvelden, ligt het historisch Kasteel Keukenhof!
language: nl
og_image: null
favicon: https://kasteelkeukenhof.nl/wp-content/themes/keukenhof/dist/img/kasteelkeukenhof/favicon/favicon-96x96.png
@ -1481,9 +1415,8 @@ timeline_enrichment:
- https://geschiedenisvanzuidholland.nl/zien-en-doen/locaties/kasteel-keukenhof-in-lisse/
- https://www.ensie.nl/monumenten-in-zuid-holland/keukenhof-in-lisse
linkup_query: '"Kasteel Keukenhof" Lisse opgericht OR gesticht OR sinds'
linkup_answer: Kasteel Keukenhof in Lisse is gesticht in 1641 door Adriaen Maertenz
Block. Het oorspronkelijke 17de-eeuwse woonhuis werd in 1861/62 verbouwd tot
een neogotisch kasteel.
linkup_answer: Kasteel Keukenhof in Lisse is gesticht in 1641 door Adriaen Maertenz Block. Het oorspronkelijke 17de-eeuwse
woonhuis werd in 1861/62 verbouwd tot een neogotisch kasteel.
fetch_timestamp: '2025-12-15T22:42:31.224877+00:00'
archive_path: web/1225/linkup/linkup_founding_20251215T224231Z.json
extraction_method: linkup_answer_regex
@ -1575,3 +1508,21 @@ logo_enrichment:
has_favicon: true
has_og_image: false
favicon_count: 4
mission_statement:
- statement_id: https://nde.nl/ontology/hc/mission/nl-zh-lis-m-kk/goal-2026
statement_type: goal
statement_text: Het doel is om Landgoed Keukenhof en de bloemententoonstelling te behouden voor komende generaties en open
te stellen voor publiek.
statement_language: nl
extracted_verbatim: true
source_url: https://kasteelkeukenhof.nl/over
content_hash: sha256-neY2W5UO5Dv53J5eYJRVmbMH+uwvK8TfG3X1m92p+nQ=
provenance:
statement_created_at: '2026-01-04T13:15:41.844967+00:00'
source_archived_at: '2026-01-04T13:14:36.072943+00:00'
retrieval_agent: linkup-api
extraction_agent: zai-glm/glm-4.7
extraction_confidence: 0.95
prov:wasDerivedFrom: https://kasteelkeukenhof.nl/over
prov:generatedAtTime: '2026-01-04T13:15:41.844967+00:00'
source_section: Missie & Doelstelling

View file

@ -111,8 +111,7 @@ provenance:
notes:
- Provenance tracking added retroactively
- claim_level_provenance available in sources section
- Removed incorrect wikidata_enrichment on 2025-12-08T08:20:17.100927+00:00. Re-enrichment
required with proper matching.
- Removed incorrect wikidata_enrichment on 2025-12-08T08:20:17.100927+00:00. Re-enrichment required with proper matching.
- Canonical location added via normalize_custodian_files.py on 2025-12-08T23:20:27Z
- Canonical location added via normalize_custodian_files.py on 2025-12-09T07:12:59Z
qp_resolution_timestamp: '2025-11-27T20:46:01.932922+00:00'
@ -235,21 +234,17 @@ google_maps_enrichment:
author_uri: https://www.google.com/maps/contrib/117451913948902098328/reviews
rating: 4
relative_time_description: 2 maanden geleden
text: 'Aan de buitenzijde zou je niet zeggen dat dit een van de oudste gebouwen
is van Maassluis. Het is gebouwd in 1628 als weeshuis. Gebouwd en onderhouden
door de diaconie maar toen gefinancierd mede door een loterij. Later heeft o.a.
de rijke reder Govert van Wijn. Na een grondige renovatie en modernisering is
het museum in 1962 geopend.
text: 'Aan de buitenzijde zou je niet zeggen dat dit een van de oudste gebouwen is van Maassluis. Het is gebouwd in 1628
als weeshuis. Gebouwd en onderhouden door de diaconie maar toen gefinancierd mede door een loterij. Later heeft o.a.
de rijke reder Govert van Wijn. Na een grondige renovatie en modernisering is het museum in 1962 geopend.
Eén zaal is gewijd aan de interessante geschiedenis van de stad die lang met
de veerdienst een sleutelrol vervulde bij de verbinding tussen Holland en Zeeland.
Op 16 mei 1614 kreeg het dorp, wat daarvoor bij het naburige Maasland hoorde,
Eén zaal is gewijd aan de interessante geschiedenis van de stad die lang met de veerdienst een sleutelrol vervulde bij
de verbinding tussen Holland en Zeeland. Op 16 mei 1614 kreeg het dorp, wat daarvoor bij het naburige Maasland hoorde,
bij Akte van Separatie zelfstandigheid.
In de kelder zijn tijdelijke tentoonstellingen waar ik de tentoonstellingen
zag over Pieter Kabel in WW2 en nachtwerkers.
In de kelder zijn tijdelijke tentoonstellingen waar ik de tentoonstellingen zag over Pieter Kabel in WW2 en nachtwerkers.
Jammer dat de leuke tuin met beelden niet toegankelijk was.'
@ -258,28 +253,24 @@ google_maps_enrichment:
author_uri: https://www.google.com/maps/contrib/115548042201101910141/reviews
rating: 5
relative_time_description: 2 maanden geleden
text: Vandaag het kleine, maar niet minder interessante, Museum Maasssluis bezocht.
Vriendelijke ontvangst. Op de begane grond de vaste collectie met de geschiedenis
van Maassluis. Bekend om zijn haringvissers uit het verleden en de slepers/bergers
van tegenwoordig. In de kelder zijn er interessante wisselende tentoonstellingen
met aandacht voor lokale kunstenaars.
text: Vandaag het kleine, maar niet minder interessante, Museum Maasssluis bezocht. Vriendelijke ontvangst. Op de begane
grond de vaste collectie met de geschiedenis van Maassluis. Bekend om zijn haringvissers uit het verleden en de slepers/bergers
van tegenwoordig. In de kelder zijn er interessante wisselende tentoonstellingen met aandacht voor lokale kunstenaars.
publish_time: '2025-09-23T17:05:35.213293384Z'
- author_name: Adrie Jonkers
author_uri: https://www.google.com/maps/contrib/116744550762282751468/reviews
rating: 5
relative_time_description: 3 maanden geleden
text: Interessant, intiem museum over de historie van Maassluis. Mooie collectie
die met grote zorgvuldigheid is samengesteld. De medewerkers zijn zeer gastvrij,
enthousiast en bovendien uitermate vakkundig. Zonder enige twijfel een absolute
aanrader om eens langs te gaan.
text: Interessant, intiem museum over de historie van Maassluis. Mooie collectie die met grote zorgvuldigheid is samengesteld.
De medewerkers zijn zeer gastvrij, enthousiast en bovendien uitermate vakkundig. Zonder enige twijfel een absolute aanrader
om eens langs te gaan.
publish_time: '2025-08-02T08:17:59.489149921Z'
- author_name: Leo van der Hum
author_uri: https://www.google.com/maps/contrib/117947079178149256844/reviews
rating: 4
relative_time_description: 6 maanden geleden
text: 'Goed verzorgd museum met plezierige mensen die graag en trots over hun
museum vertellen. Een mooie indruk gekregen van het werk van de schilderes (Jeanne
Oosting) en overigens een aansprekende museale presentatie helemaal in de intieme
text: 'Goed verzorgd museum met plezierige mensen die graag en trots over hun museum vertellen. Een mooie indruk gekregen
van het werk van de schilderes (Jeanne Oosting) en overigens een aansprekende museale presentatie helemaal in de intieme
sfeer van een museum met lokale uitstraling.
(Leo van der Hum)'
@ -288,8 +279,8 @@ google_maps_enrichment:
author_uri: https://www.google.com/maps/contrib/117609054065736428676/reviews
rating: 5
relative_time_description: 4 maanden geleden
text: Erg leuk museum, met hartelijke medewerkers en een mooie collectie. Voor
ons, als aankomend Maassluisers, zeker een must-see!
text: Erg leuk museum, met hartelijke medewerkers en een mooie collectie. Voor ons, als aankomend Maassluisers, zeker
een must-see!
publish_time: '2025-07-06T18:28:51.486075765Z'
photo_urls:
- https://places.googleapis.com/v1/places/ChIJsdmKAJdMxEcRUGFrueZ6Z8w/photos/AWn5SU4ojeyw8sjjcSjoR2gPZdtaR-96VGR60u3Bcgf-1u3Wd7mI3E8sfZHsJD0q90cmXfIXlIT3CpWm2Wp7NAsQuafenWRAyBGT6Vxcn2MJa2NwMszq1f0TOMO3n--I_sEpmaoPC8vBC43MuUX6MEVQaBqNBlLy2rVQPOcC0d5Nd_eiW0LDl1pCnNCUU90XjF-taSwIvYnDh32TATS50FYOr6Zp7jyDt5nTtP_3ar4Q6tWz_Q_pq3cUPxqwcYgA4tSdCm3uuB2Cu7jQ4z4OwWj9NSsbmCt71yB8_L92ekFpb5mi2pXGym1xrNrzzCmMVDAif5oerZwMYOoA9gkUPeG6vn_fkBZWkJw8k0HywttGu73M5fS--C0lGhdzynbIBSOP-sP4abad16-zvucs9-lBXGUuJGmx_uZICj6XIMMLthdqXA/media?maxWidthPx=800&key=AIzaSyAHuazNth9ZvfRFYk5-v49CwXwhABH8Ri0
@ -585,8 +576,7 @@ timespan:
events:
- date: '1933'
type: founding
description: opgericht in 1933 als 'Maassluissche oudheidskamer' en gemeentelijk
museum
description: opgericht in 1933 als 'Maassluissche oudheidskamer' en gemeentelijk museum
linkedin_enrichment:
linkedin_url: https://www.linkedin.com/company/museum-maassluis
linkedin_slug: museum-maassluis
@ -610,8 +600,7 @@ linkedin_enrichment:
headline: Huisarts n.p.
linkedin_url: https://www.linkedin.com/in/victor-knippenberg-a56b6141
- name: Branko Bakker
headline: Voorzitter bestuur kunst en historisch museum Maassluis, vrijwilliger
IDO
headline: Voorzitter bestuur kunst en historisch museum Maassluis, vrijwilliger IDO
linkedin_url: https://www.linkedin.com/in/branko-bakker-4718301a
heritage_type: M
- name: Simon Kemper
@ -624,8 +613,7 @@ timeline_enrichment:
event_date: '1933'
date_precision: year
approximate: false
description: opgericht in 1933 als 'Maassluissche oudheidskamer' en gemeentelijk
museum
description: opgericht in 1933 als 'Maassluissche oudheidskamer' en gemeentelijk museum
source_urls:
- https://nl.wikipedia.org/wiki/Museum_Maassluis
- https://www.ervaarmaassluis.nl/nl/locaties-overzicht/4200868100/museum-maassluis
@ -633,9 +621,8 @@ timeline_enrichment:
- https://www.museum-info.nl/maassluis
- https://www.museummaassluis.nl/content/vrienden
linkup_query: '"Museum Maassluis" Maassluis opgericht OR gesticht OR sinds'
linkup_answer: Museum Maassluis is opgericht in 1933 als 'Maassluissche oudheidskamer'
en gemeentelijk museum. Een stichting die de verantwoordelijkheid voor het museum
kon overnemen, werd eind 2012 opgericht. De heropening van het museum onder
linkup_answer: Museum Maassluis is opgericht in 1933 als 'Maassluissche oudheidskamer' en gemeentelijk museum. Een stichting
die de verantwoordelijkheid voor het museum kon overnemen, werd eind 2012 opgericht. De heropening van het museum onder
de naam Museum Maassluis vond plaats op 24 mei 2014.
fetch_timestamp: '2025-12-15T22:42:55.724601+00:00'
archive_path: web/1317/linkup/linkup_founding_20251215T224255Z.json
@ -712,8 +699,8 @@ wikidata_enrichment:
instance_of: &id001
- id: Q33506
label: museum
description: institution that holds artifacts and other objects of scientific,
artistic, cultural, historical, or other importance
description: institution that holds artifacts and other objects of scientific, artistic, cultural, historical, or other
importance
wikidata_instance_of: *id001
wikidata_location:
coordinates: &id004
@ -769,3 +756,58 @@ logo_enrichment:
has_favicon: true
has_og_image: false
favicon_count: 3
mission_statement:
- statement_id: https://nde.nl/ontology/hc/mission/nl-zh-maa-m-mm/mission-2026
statement_type: mission
statement_text: Museum Maassluis brengt cultuur historie en kunst van verleden en heden tot leven, teneinde de blik
op de wereld en de toekomst te verruimen en de sociale cohesie in Maassluis te verstevigen.
statement_language: nl
extracted_verbatim: true
source_url: https://museummaassluis.nl/over
content_hash: sha256-XW0SnaclsTp9BO5BoYj9c9BDLCWNk8BGtzlONWwSwiI=
provenance:
statement_created_at: '2026-01-04T17:12:09.078750+00:00'
source_archived_at: '2026-01-04T17:11:52.518337+00:00'
retrieval_agent: linkup-api
extraction_agent: zai-glm/glm-4.7
extraction_confidence: 1.0
prov:wasDerivedFrom: https://museummaassluis.nl/over
prov:generatedAtTime: '2026-01-04T17:12:09.078750+00:00'
source_section: Missie en visie
- statement_id: https://nde.nl/ontology/hc/mission/nl-zh-maa-m-mm/vision-2026
statement_type: vision
statement_text: Museum Maassluis, ondersteund door haar collecties, wil in samenwerking met andere instanties een verbindende
schakel vormen voor de lokale historie en kunst. Het wil kennis vergaren, ontrafelen, verrijken en delen met alle bewoners
en bezoekers van Maassluis door hiervoor interesse te wekken en daarnaast ontspanning te bieden.
statement_language: nl
extracted_verbatim: true
source_url: https://museummaassluis.nl/over
content_hash: sha256-2U7ICxJXub2nTE6gbZrE7nIxExd+wkKLwfK5c718SWo=
provenance:
statement_created_at: '2026-01-04T17:12:09.078842+00:00'
source_archived_at: '2026-01-04T17:11:52.518337+00:00'
retrieval_agent: linkup-api
extraction_agent: zai-glm/glm-4.7
extraction_confidence: 1.0
prov:wasDerivedFrom: https://museummaassluis.nl/over
prov:generatedAtTime: '2026-01-04T17:12:09.078842+00:00'
source_section: Missie en visie
- statement_id: https://nde.nl/ontology/hc/mission/nl-zh-maa-m-mm/goal-2026
statement_type: goal
statement_text: “De Stichting Museum Maassluis stelt zich ten doel om de historische verzameling en de kunstverzameling
van de stad Maassluis, beide ondergebracht in het Museum Maassluis te beheren, te behouden, selectief uit te breiden en
voor een zo breed mogelijk publiek te ontsluiten en te presenteren en voorts al hetgeen dat met een en ander rechtstreeks
of zijdelings verband houdt of daartoe bevorderlijk kan zijn, zulks in de ruimste zin des woords”.
statement_language: nl
extracted_verbatim: true
source_url: https://museummaassluis.nl/over
content_hash: sha256-lzNIyIE738xHPLtybhqqm/4VeT6hAmeur7H8azhGi20=
provenance:
statement_created_at: '2026-01-04T17:12:09.078861+00:00'
source_archived_at: '2026-01-04T17:11:52.518337+00:00'
retrieval_agent: linkup-api
extraction_agent: zai-glm/glm-4.7
extraction_confidence: 1.0
prov:wasDerivedFrom: https://museummaassluis.nl/over
prov:generatedAtTime: '2026-01-04T17:12:09.078861+00:00'
source_section: Missie en visie

View file

@ -90,8 +90,7 @@ provenance:
linkup_timespan:
- source_type: linkup_web_search
fetch_timestamp: '2025-12-15T22:43:21.217142+00:00'
search_query: '"Nationaal Sleepvaart Museum Maassluis" Maassluis opgericht OR
gesticht OR sinds'
search_query: '"Nationaal Sleepvaart Museum Maassluis" Maassluis opgericht OR gesticht OR sinds'
source_urls:
- https://www.nationaalsleepvaartmuseum.nl/contact/plan-een-bezoek
- https://nationaalsleepvaartmuseum.nl/content/contact
@ -125,8 +124,7 @@ provenance:
notes:
- Provenance tracking added retroactively
- claim_level_provenance available in sources section
- Removed incorrect wikidata_enrichment on 2025-12-08T08:20:17.200013+00:00. Re-enrichment
required with proper matching.
- Removed incorrect wikidata_enrichment on 2025-12-08T08:20:17.200013+00:00. Re-enrichment required with proper matching.
- Canonical location added via normalize_custodian_files.py on 2025-12-08T23:20:27Z
- Canonical location added via normalize_custodian_files.py on 2025-12-09T07:12:59Z
qp_resolution_timestamp: '2025-11-27T20:46:00.987289+00:00'
@ -241,19 +239,16 @@ google_maps_enrichment:
author_uri: https://www.google.com/maps/contrib/117451913948902098328/reviews
rating: 4
relative_time_description: 2 maanden geleden
text: 'Het museum is gevestigd in het mooie oude stadhuis van Maassluis wat in
1676 is gebouwd met classicistische kenmerken. Aan de buitenzijde valt het schilddak
op met houten dakruiter waaraan haringen zichtbaar zijn.
text: 'Het museum is gevestigd in het mooie oude stadhuis van Maassluis wat in 1676 is gebouwd met classicistische kenmerken.
Aan de buitenzijde valt het schilddak op met houten dakruiter waaraan haringen zichtbaar zijn.
Nadat de gemeente naar een andere grotere lokatie was verhuisd is het in 1979
in gebruik genomen als museum waarbij de panden op nummer 3 en 5 zijn toegevoegd
waardoor het museum groter is dan je aan de buitenzijde zou verwachten.
Nadat de gemeente naar een andere grotere lokatie was verhuisd is het in 1979 in gebruik genomen als museum waarbij
de panden op nummer 3 en 5 zijn toegevoegd waardoor het museum groter is dan je aan de buitenzijde zou verwachten.
Binnen is een interessante collectie te zien van alles wat met sleepvaart te
maken heeft. Er zijn erg veel schaalmodellen te zien, complete brugindelingen,
een authentieke marconistenruimte en nog veel meer.
Binnen is een interessante collectie te zien van alles wat met sleepvaart te maken heeft. Er zijn erg veel schaalmodellen
te zien, complete brugindelingen, een authentieke marconistenruimte en nog veel meer.
Ook zijn er vaarsimulators waarmee je zelf je vaardigjeden kunt testen.
@ -286,25 +281,23 @@ google_maps_enrichment:
author_uri: https://www.google.com/maps/contrib/113178351511592929417/reviews
rating: 5
relative_time_description: 10 maanden geleden
text: Onverwachts leuk! Genoeg te zien en erg interessant. Ben hier samen met
mijn man en dochtertje geweest op een regenachtige zondag we werden vriendelijk
ontvangen door de heren die daar waren. Ik zal deze niet overslaan als je toch
in Maassluis bent ;)
text: Onverwachts leuk! Genoeg te zien en erg interessant. Ben hier samen met mijn man en dochtertje geweest op een regenachtige
zondag we werden vriendelijk ontvangen door de heren die daar waren. Ik zal deze niet overslaan als je toch in Maassluis
bent ;)
publish_time: '2025-01-06T15:54:45.831194Z'
- author_name: Johan v
author_uri: https://www.google.com/maps/contrib/118404399702041781104/reviews
rating: 4
relative_time_description: een jaar geleden
text: Leuk museum met enthousiaste medewerkers en mooie bezienswaardigheden. Er
zijn ook simulatoren om je zeeman stuurmanskunsten te ontdekken :-)
text: Leuk museum met enthousiaste medewerkers en mooie bezienswaardigheden. Er zijn ook simulatoren om je zeeman stuurmanskunsten
te ontdekken :-)
publish_time: '2024-08-01T17:46:30.219585Z'
- author_name: Dimitri “The GWH” Saenen
author_uri: https://www.google.com/maps/contrib/103891858463799554431/reviews
rating: 5
relative_time_description: 3 maanden geleden
text: Interessant museum met een uitgebreide collectie rond de sleepvaart. Mooie
modellen, fotos en historische objecten. Zeker een aanrader voor liefhebbers
van maritieme geschiedenis
text: Interessant museum met een uitgebreide collectie rond de sleepvaart. Mooie modellen, fotos en historische objecten.
Zeker een aanrader voor liefhebbers van maritieme geschiedenis
publish_time: '2025-08-16T06:22:34.904530867Z'
photo_urls:
- https://places.googleapis.com/v1/places/ChIJ34djUJZMxEcRpJy9uK6BiMg/photos/AWn5SU7MQWV-7mntahXfXIK4bVmIYZrIQGe6zZe_B6DJ689Q3KJMhf4_9b_eyaYNoLb9756ddTOm20P-gfRPJNjkcVX6KTvYbjlCXNC94vqWRgI-DNbx-KSv8SXfbZtMq668xnWwtp0KIulVi3XdbcZwXYZ5rQKxl0lmhuSr9d_TFKMJ801DHjVdt3Swep-uzeSdyEHBKfKXg6kL_HTHfD_dX5_pO0QN5uKAHkpk2E20N2IrhHolad1CCIj5fRiUeTYJUBI6GLcFxO8TRR8tLZih6CtrWAX7EEcEeqI1Q_xA29aa2w/media?maxWidthPx=800&key=AIzaSyAHuazNth9ZvfRFYk5-v49CwXwhABH8Ri0
@ -456,17 +449,16 @@ youtube_enrichment:
channel_id: UC_IDroQvWMAhl2osByoQI-A
channel_url: https://www.youtube.com/channel/UC_IDroQvWMAhl2osByoQI-A
title: Nationaal Sleepvaart Museum
description: 'Wanneer je nieuwsgierig bent naar de rijke maritieme historie van
Nederland moet je beslist in Maassluis zijn.
description: 'Wanneer je nieuwsgierig bent naar de rijke maritieme historie van Nederland moet je beslist in Maassluis
zijn.
In het fraaie en schilderachtige hart van die oude stad aan de Nieuwe Waterweg
ligt het Nationaal Sleepvaart Museum.
In het fraaie en schilderachtige hart van die oude stad aan de Nieuwe Waterweg ligt het Nationaal Sleepvaart Museum.
Een prachtig en b(l)oeiend instituut, aldaar gelegen aan de oude haven.
Via dit YouTube-kanaal wil het museum graag films met je delen, waarvan wij
denken dat die interessant of leuk voor je kunnen zijn.'
Via dit YouTube-kanaal wil het museum graag films met je delen, waarvan wij denken dat die interessant of leuk voor
je kunnen zijn.'
custom_url: '@nationaalsleepvaartmuseum6794'
published_at: '2014-09-24T11:50:20Z'
country: null
@ -482,8 +474,7 @@ youtube_enrichment:
- video_id: XJvW71rMVpA
video_url: https://www.youtube.com/watch?v=XJvW71rMVpA
title: Sleepvaart museum WalkTrough
description: WalkTrough-video, bedoeld om bezoekers nieuwsgierig te maken naar
het Nationaal Sleepvaart Museum!
description: WalkTrough-video, bedoeld om bezoekers nieuwsgierig te maken naar het Nationaal Sleepvaart Museum!
published_at: '2021-06-02T14:08:40Z'
duration: PT2M20S
definition: hd
@ -502,14 +493,12 @@ youtube_enrichment:
- video_id: Fa0E_yRTxeI
video_url: https://www.youtube.com/watch?v=Fa0E_yRTxeI
title: Jupiter
description: 'Op donderdag 25 mei 2020 werd in IJmuiden de nieuwste Damen-sleper
voor Svitzer (besteld door Iskes) gelost van de BBC Fuji.
description: 'Op donderdag 25 mei 2020 werd in IJmuiden de nieuwste Damen-sleper voor Svitzer (besteld door Iskes) gelost
van de BBC Fuji.
Vervolgens ging ze op zaterdag 30 mei 2020 een proefvaart maken onder leiding
van schipper John Stokes.
Vervolgens ging ze op zaterdag 30 mei 2020 een proefvaart maken onder leiding van schipper John Stokes.
Jan Plug maakte er de nodige plaatjes van en die delen we hier dus met u middels
dit filmpje.
Jan Plug maakte er de nodige plaatjes van en die delen we hier dus met u middels dit filmpje.
De aanvullende (oude) foto''s zijn afkomstig van http://fotos.serc.nl/
@ -533,8 +522,8 @@ youtube_enrichment:
- video_id: lJEydx0vPSM
video_url: https://www.youtube.com/watch?v=lJEydx0vPSM
title: Live stream Nationaal Sleepvaart Museum
description: Uitzicht vanaf het Nationaal Sleepvaart Museum richting de binnenhaven
met o.a. Hudson, Adriaan, Furie, Bruinvisch, Maassluis, Krimpen en Tonijn.
description: Uitzicht vanaf het Nationaal Sleepvaart Museum richting de binnenhaven met o.a. Hudson, Adriaan, Furie, Bruinvisch,
Maassluis, Krimpen en Tonijn.
published_at: '2018-08-07T16:05:29Z'
duration: P0D
definition: sd
@ -553,13 +542,11 @@ youtube_enrichment:
- video_id: VWk5-32FNLg
video_url: https://www.youtube.com/watch?v=VWk5-32FNLg
title: WHD 2017
description: 'Een impressie van de afsluitende zondag van de Wereldhavendagen
2017. De opnames zijn gemaakt vanaf het 3e Katendrechtse hoofd in Rotterdam
en vanaf het Hoofdplein in Schiedam.
description: 'Een impressie van de afsluitende zondag van de Wereldhavendagen 2017. De opnames zijn gemaakt vanaf het
3e Katendrechtse hoofd in Rotterdam en vanaf het Hoofdplein in Schiedam.
De filmpjes zijn onbewerkt aan elkaar geplakt dus op een enkele plek wat onzuiver,
en de beelden wiebelen af en toe. Daarnaast hoort u hier en daar het zoom-motortje
van de camera, maar ach ...
De filmpjes zijn onbewerkt aan elkaar geplakt dus op een enkele plek wat onzuiver, en de beelden wiebelen af en toe.
Daarnaast hoort u hier en daar het zoom-motortje van de camera, maar ach ...
het is niet meer dan een impressie.'
published_at: '2017-09-08T13:51:44Z'
@ -603,8 +590,8 @@ youtube_enrichment:
title: Furie 100 jaar vaartocht na wisseltentoonstelling 24 07 2016 M W Helwig
description: 'Op 24 september 2016 vierde de ss FURIE haar 100e verjaardag.
Dat werd o.a. gevierd met de opening van de tentoonstelling "100 jaar FURIE"
in het Nationaal Sleepvaart Museum en op de Furie zelf.
Dat werd o.a. gevierd met de opening van de tentoonstelling "100 jaar FURIE" in het Nationaal Sleepvaart Museum en op
de Furie zelf.
Na de openingshandeling vertrok de Furie voor een rondvaart met een aantal genodigden.
@ -627,9 +614,8 @@ youtube_enrichment:
- video_id: mnmaWRvr_T4
video_url: https://www.youtube.com/watch?v=mnmaWRvr_T4
title: Furie 100 jaar Bel tentoonstellingsopening 24 09 2014 M W Helwig
description: 'Op 24 september 2016 werd de wisseltentoonsteling "100 jaar FURIE"
geopend door mevrouw Thecla Bodewes, directeur eigenaar van de Thecla Bodewes
Group en de heer Frits Loomeijer, algemeen directeur van het Maritiem Museum
description: 'Op 24 september 2016 werd de wisseltentoonsteling "100 jaar FURIE" geopend door mevrouw Thecla Bodewes,
directeur eigenaar van de Thecla Bodewes Group en de heer Frits Loomeijer, algemeen directeur van het Maritiem Museum
te Rotterdam.
Zij deden dit op traditionele wijze door de bel in het museum te luiden.
@ -658,8 +644,7 @@ youtube_enrichment:
title: 20160521 Vaardag Maassluis
description: '21 mei 2016: Vaardag Maassluis
Een impressie van het slepersballet wat die dag werd voorgeschoteld door een
aantal sleepboten van diverse rederijen.'
Een impressie van het slepersballet wat die dag werd voorgeschoteld door een aantal sleepboten van diverse rederijen.'
published_at: '2016-05-23T17:29:18Z'
duration: PT20M21S
definition: hd
@ -680,10 +665,9 @@ youtube_enrichment:
- video_id: hBLjgLd8CZQ
video_url: https://www.youtube.com/watch?v=hBLjgLd8CZQ
title: Nationaal Sleepvaart Museum Promotiefilm
description: 'Wanneer je nieuwsgierig bent naar de rijke maritieme historie van
Nederland moet je beslist in Maassluis zijn. In het fraaie en schilderachtige
hart van die oude stad aan de Nieuwe Waterweg ligt het Nationaal Sleepvaart
Museum. Een prachtig en b(l)oeiend instituut, aldaar gelegen aan de oude haven.
description: 'Wanneer je nieuwsgierig bent naar de rijke maritieme historie van Nederland moet je beslist in Maassluis
zijn. In het fraaie en schilderachtige hart van die oude stad aan de Nieuwe Waterweg ligt het Nationaal Sleepvaart Museum.
Een prachtig en b(l)oeiend instituut, aldaar gelegen aan de oude haven.
Deze film laat je zien wat er zoal te zien en mogelijk is in dit museum.
@ -767,10 +751,9 @@ digital_platform_v2:
platform_name: Home - Nationaal Sleepvaart Museum Maassluis Website
platform_url: https://nationaalsleepvaartmuseum.nl/
platform_type: DISCOVERY_PORTAL
description: Wanneer je nieuwsgierig bent naar de rijke maritieme historie van
Nederland moet je beslist in Maassluis zijn. In het fraaie en schilderachtige
hart van die oude stad aan de Nieuwe Waterweg ligt het Nationaal Sleepvaart
Museum. Een prachtig en b(l)oeiend instituut, aldaar gelegen aan de oude haven....
description: Wanneer je nieuwsgierig bent naar de rijke maritieme historie van Nederland moet je beslist in Maassluis
zijn. In het fraaie en schilderachtige hart van die oude stad aan de Nieuwe Waterweg ligt het Nationaal Sleepvaart Museum.
Een prachtig en b(l)oeiend instituut, aldaar gelegen aan de oude haven....
language: en
og_image: null
favicon: https://nationaalsleepvaartmuseum.nl/apple-touch-icon.png?v=ngJ2aAKa8A
@ -817,10 +800,8 @@ timeline_enrichment:
- https://www.nationaalsleepvaartmuseum.nl/contact/plan-een-bezoek
- https://www.maassluis.nl/musea-en-cultureel-erfgoed
- https://nationaalsleepvaartmuseum.nl/content/contact
linkup_query: '"Nationaal Sleepvaart Museum Maassluis" Maassluis opgericht OR
gesticht OR sinds'
linkup_answer: Het Nationaal Sleepvaart Museum Maassluis is opgericht en geopend
op 18 april 1979.
linkup_query: '"Nationaal Sleepvaart Museum Maassluis" Maassluis opgericht OR gesticht OR sinds'
linkup_answer: Het Nationaal Sleepvaart Museum Maassluis is opgericht en geopend op 18 april 1979.
fetch_timestamp: '2025-12-15T22:43:21.209239+00:00'
archive_path: web/1275/linkup/linkup_founding_20251215T224321Z.json
extraction_method: linkup_answer_regex
@ -880,8 +861,7 @@ wikidata_enrichment:
instance_of: &id001
- id: Q1863818
label: maritime museum
description: museum specializing in the display of objects relating to ships
and travel on large bodies of water
description: museum specializing in the display of objects relating to ships and travel on large bodies of water
wikidata_instance_of: *id001
wikidata_location:
country: &id003
@ -1062,3 +1042,25 @@ logo_enrichment:
has_favicon: true
has_og_image: false
favicon_count: 5
mission_statement:
- statement_id: https://nde.nl/ontology/hc/mission/nl-zh-maa-m-nsmm/goal-2026
statement_type: goal
statement_text: 'De Stichting Nationaal Sleepvaart Museum heeft ten doel het in stand houden van een museum in Maassluis,
waarvan het verzamelgebied zich uitstrekt over alle aspecten van de Nederlandse zee- en binnensleepvaart, zowel in het
verleden als in het heden. De doelstelling wordt bereikt door: · het verzamelen en tentoonstellen van voorwerpen · het
verzamelen en bijhouden en ter inzage geven van documentatie · het organiseren van lezingen, dia- en filmvoorstellingen,
alles de sleepvaart in ruime zin betreffende · een zo breed mogelijk publiek te trekken om kennis te nemen van Hollands
Glorie'
statement_language: nl
extracted_verbatim: true
source_url: https://www.nationaalsleepvaartmuseum.nl/organisatie
content_hash: sha256-lEDIA+qGYSvpx7c8njME52fqNlHakSbs5cn+EC5b9P4=
provenance:
statement_created_at: '2026-01-04T16:30:41.192918+00:00'
source_archived_at: '2026-01-04T16:30:20.528467+00:00'
retrieval_agent: linkup-api
extraction_agent: zai-glm/glm-4.7
extraction_confidence: 0.95
prov:wasDerivedFrom: https://www.nationaalsleepvaartmuseum.nl/organisatie
prov:generatedAtTime: '2026-01-04T16:30:41.192918+00:00'
source_section: Doelstelling museum

View file

@ -47,8 +47,8 @@ wikidata_enrichment:
instance_of: &id001
- id: Q33506
label: museum
description: institution that holds artifacts and other objects of scientific,
artistic, cultural, historical, or other importance
description: institution that holds artifacts and other objects of scientific, artistic, cultural, historical, or other
importance
- id: Q489357
label: farmhouse
description: chief dwelling-house attached to a farm
@ -249,13 +249,11 @@ google_maps_enrichment:
author_uri: https://www.google.com/maps/contrib/106719677377098722115/reviews
rating: 5
relative_time_description: 10 maanden geleden
text: Met familie hier naartoe geweest. Het was een heel leuk bezoek, met aardige
vrijwilligers. We zijn aangehaakt bij de rondleiding die net was begonnen en
ook dat was erg leuk, omdat je dan toch net wat meer op bepaalde dingen let
die je misschien snel voorbij loopt als je het in je eentje allemaal bekijkt.
Later nog in het archief gekeken en met de vrijwilligers gekletst. Het museum
wordt naar zeggen verbouwd, dus na de verbouwing gaan we nog eens terug, want
het belooft nog mooier, leuker en interactiever te worden!
text: Met familie hier naartoe geweest. Het was een heel leuk bezoek, met aardige vrijwilligers. We zijn aangehaakt bij
de rondleiding die net was begonnen en ook dat was erg leuk, omdat je dan toch net wat meer op bepaalde dingen let die
je misschien snel voorbij loopt als je het in je eentje allemaal bekijkt. Later nog in het archief gekeken en met de
vrijwilligers gekletst. Het museum wordt naar zeggen verbouwd, dus na de verbouwing gaan we nog eens terug, want het
belooft nog mooier, leuker en interactiever te worden!
publish_time: '2025-01-24T09:10:25.975175Z'
- author_name: Sanv
author_uri: https://www.google.com/maps/contrib/103873804267523263932/reviews
@ -267,20 +265,17 @@ google_maps_enrichment:
author_uri: https://www.google.com/maps/contrib/111127025033547551796/reviews
rating: 5
relative_time_description: een jaar geleden
text: Een leuke oude boerderij waar je persoonlijk ontvangen wordt. Wij hebben
met een groep van 7 personen een hele leuke rondleiding van Wim gehad. Dit hadden
we niet gevraagd maar werd gewoon aangeboden. Hij wist heel veel te vertellen
text: Een leuke oude boerderij waar je persoonlijk ontvangen wordt. Wij hebben met een groep van 7 personen een hele leuke
rondleiding van Wim gehad. Dit hadden we niet gevraagd maar werd gewoon aangeboden. Hij wist heel veel te vertellen
over het museum en de voorgenomen plannen. Echt een aanrader!
publish_time: '2024-08-25T13:31:31.555063Z'
- author_name: Adrie Jonkers
author_uri: https://www.google.com/maps/contrib/116744550762282751468/reviews
rating: 5
relative_time_description: 4 maanden geleden
text: Een pareltje van een museum met een grote collectie over de rijke historie
van Reeuwijk en omgeving. Gesitueerd in een sfeervolle ambiance. De vrijwilligers
zijn zeer gastvrij, enthousiast en bovendien uitermate vakkundig. Geschikt voor
jong en oud. Een bezoek aan deze veelgeroemde gelegenheid is absoluut meer dan
een regelrechte aanrader.
text: Een pareltje van een museum met een grote collectie over de rijke historie van Reeuwijk en omgeving. Gesitueerd
in een sfeervolle ambiance. De vrijwilligers zijn zeer gastvrij, enthousiast en bovendien uitermate vakkundig. Geschikt
voor jong en oud. Een bezoek aan deze veelgeroemde gelegenheid is absoluut meer dan een regelrechte aanrader.
publish_time: '2025-07-06T17:11:09.459578597Z'
- author_name: O. Verheul
author_uri: https://www.google.com/maps/contrib/108673927642014005260/reviews
@ -582,8 +577,8 @@ digital_platform_v2:
platform_name: Streekmuseum Reeuwijk Website
platform_url: https://www.streekmuseumreeuwijk.nl/
platform_type: DISCOVERY_PORTAL
description: Welkom op de website van Streekmuseum Reeuwijk. Hier vindt u nieuws
omtrent het museum, leuke artikelen en (foto)reportages.
description: Welkom op de website van Streekmuseum Reeuwijk. Hier vindt u nieuws omtrent het museum, leuke artikelen en
(foto)reportages.
language: nl
og_image: https://www.streekmuseumreeuwijk.nl/wp-content/uploads/2022/09/Wit-Op-Groen-Box-scaled.jpg
favicon: https://www.streekmuseumreeuwijk.nl/wp-content/uploads/2022/07/headerlogo4.png
@ -635,3 +630,20 @@ logo_enrichment:
has_favicon: true
has_og_image: true
favicon_count: 1
mission_statement:
- statement_id: https://nde.nl/ontology/hc/mission/nl-zh-ree-m-smr/goal-2026
statement_type: goal
statement_text: Het museum heeft als doel om de geschiedenis en cultuur van de streek te bewaren en te presenteren.
statement_language: nl
extracted_verbatim: true
source_url: https://www.streekmuseumreeuwijk.nl/
content_hash: sha256-GKfAXpkOMJCsGKQsTwV0fBpzLlj7gJvU5S+f29zQ1ck=
provenance:
statement_created_at: '2026-01-04T16:53:46.546213+00:00'
source_archived_at: '2026-01-04T16:53:31.996756+00:00'
retrieval_agent: linkup-api
extraction_agent: zai-glm/glm-4.7
extraction_confidence: 0.95
prov:wasDerivedFrom: https://www.streekmuseumreeuwijk.nl/
prov:generatedAtTime: '2026-01-04T16:53:46.546213+00:00'
source_section: WELKOM IN ONS MUSEUM

View file

@ -14,10 +14,10 @@ provenance:
source_url: https://www.museumregisternederland.nl/register-bekijken
extraction_date: '2025-11-30T12:28:03.607528+00:00'
notes:
- |-
Entry created from Museum Register Nederland - not in original NDE dataset
- 'Entry created from Museum Register Nederland - not in original NDE dataset
Removed incorrect wikidata_enrichment on 2025-12-08T08:20:17.674548+00:00.
Removed incorrect wikidata_enrichment on 2025-12-08T08:20:17.674548+00:00.'
- Canonical location normalized on 2025-12-09T13:15:23Z
sources:
genealogiewerkbalk:
@ -499,3 +499,20 @@ web-enrichments:
layout_score: 0.0
pattern_score: 0.0
final_confidence: 0.6
mission_statement:
- statement_id: https://nde.nl/ontology/hc/mission/nl-zh-rij-m-msh/mission-2026
statement_type: mission
statement_text: De Vereniging heeft als missie het gedachtegoed van Spinoza onder de aandacht brengen van een algemeen publiek.
statement_language: nl
extracted_verbatim: true
source_url: https://spinozahuis.nl/organisatie
content_hash: sha256-8Tvoa4rGMSRQ0ZRBefrf02f7DuZNLuN+TeJvunyFxL0=
provenance:
statement_created_at: '2026-01-04T14:24:42.243176+00:00'
source_archived_at: '2026-01-04T14:24:23.929312+00:00'
retrieval_agent: linkup-api
extraction_agent: zai-glm/glm-4.7
extraction_confidence: 1.0
prov:wasDerivedFrom: https://spinozahuis.nl/organisatie
prov:generatedAtTime: '2026-01-04T14:24:42.243176+00:00'
source_section: Organisatie

View file

@ -97,8 +97,8 @@ wikidata_enrichment:
instance_of: &id001
- id: Q33506
label: museum
description: institution that holds artifacts and other objects of scientific,
artistic, cultural, historical, or other importance
description: institution that holds artifacts and other objects of scientific, artistic, cultural, historical, or other
importance
wikidata_instance_of: *id001
wikidata_location:
country: &id003
@ -376,41 +376,38 @@ google_maps_enrichment:
author_uri: https://www.google.com/maps/contrib/104820557312473875923/reviews
rating: 4
relative_time_description: 2 maanden geleden
text: Een leuke eerste kennismaking met dit museum, gehuisvest in een mooie villa
uit 1852 van de familie Hoboken met een moderne aanbouw ernaast. Grote variëteit
in wat er allemaal te zien is. Fijne tentoonstelling over beren. Het zag er
allemaal goed verzorgd en netjes ingericht uit.
text: Een leuke eerste kennismaking met dit museum, gehuisvest in een mooie villa uit 1852 van de familie Hoboken met
een moderne aanbouw ernaast. Grote variëteit in wat er allemaal te zien is. Fijne tentoonstelling over beren. Het zag
er allemaal goed verzorgd en netjes ingericht uit.
publish_time: '2025-09-21T19:24:44.489668473Z'
- author_name: NEKO CHANN
author_uri: https://www.google.com/maps/contrib/103561775880184618150/reviews
rating: 4
relative_time_description: een maand geleden
text: Vond wel leuk museum genoeg te zien en leuk die interactieve spelletjes
ook leuk voor kinderen
text: Vond wel leuk museum genoeg te zien en leuk die interactieve spelletjes ook leuk voor kinderen
publish_time: '2025-10-21T16:12:15.240848973Z'
- author_name: Kivn Love
author_uri: https://www.google.com/maps/contrib/102821598479574273979/reviews
rating: 5
relative_time_description: 3 maanden geleden
text: Een van de mooiste musea die ik ooit bezocht heb. Een kleine plek met zeer
vriendelijk personeel. Het museum was erg rustig. Een bezoek waard
text: Een van de mooiste musea die ik ooit bezocht heb. Een kleine plek met zeer vriendelijk personeel. Het museum was
erg rustig. Een bezoek waard
publish_time: '2025-08-13T15:55:26.871198899Z'
- author_name: Susanne van Zijl
author_uri: https://www.google.com/maps/contrib/117442394314839515927/reviews
rating: 4
relative_time_description: 3 maanden geleden
text: Leuk museum, de verhalen bij dieren sprak mij aan. De geologische tijdlijn,
mooi om zo de geschiedenis in Nederland terug te zien. Ook voor kinderen leuk.
text: Leuk museum, de verhalen bij dieren sprak mij aan. De geologische tijdlijn, mooi om zo de geschiedenis in Nederland
terug te zien. Ook voor kinderen leuk.
publish_time: '2025-08-03T11:27:32.086099002Z'
- author_name: Marina
author_uri: https://www.google.com/maps/contrib/101796502951464306814/reviews
rating: 5
relative_time_description: 4 maanden geleden
text: Heel educatief en leuk om te bezoeken . Veel opgezette dieren en informatie
over de natuur en het leven in de stad .
text: Heel educatief en leuk om te bezoeken . Veel opgezette dieren en informatie over de natuur en het leven in de stad
.
publish_time: '2025-07-22T15:55:25.097378455Z'
editorial_summary: Mooi natuurhistorisch museum met walvis- en olifantskeletten,
insectenfossielen en plantententoonstellingen.
editorial_summary: Mooi natuurhistorisch museum met walvis- en olifantskeletten, insectenfossielen en plantententoonstellingen.
photo_urls:
- https://places.googleapis.com/v1/places/ChIJ1wvyhp40xEcR7qImNZzmABI/photos/AWn5SU5pYaazWUMNZFY9m9vFFTKyJfbKmvhcVRjfR3hyvdFVtCwWpD9TSJDIcGPax5VatGLKokgEOUR8yaay_mpYnU4ivJPr7Y4jnr4Y9svp5Oi9c2hYa6EtQp0ZcOiClCx3Lpx38Ei6JZ0O6oTg_7cduSKKFK9uVx-ZiS5WemWfFJXRx2ZejVTOLuruY1BPUAvg-otigHZNJq0q9P2iFcTcW28WKrECtEEXVLbrT5S54EHcDMYUMj0QwT5OI9YIi3sErYx6MW_1D5VO3cKdBkMajT8qRvp6g6FjqGOymy1Ktbsd4w/media?maxWidthPx=800&key=AIzaSyAHuazNth9ZvfRFYk5-v49CwXwhABH8Ri0
- https://places.googleapis.com/v1/places/ChIJ1wvyhp40xEcR7qImNZzmABI/photos/AWn5SU6MGMVoYAEreaftnRe5zfJSHG8Y915Efja7aiCOV3G3Q90ddWQmG6tErm_wI9WhBogOlmdZQM_M_QN5u3eLM0xPj09Qn9CIbcxFJayIylfhHkhQSBj_e49eRPmISxK1ptdf-2BDAmbPOZrIRELzUa7ooXj8994f-ol6oodSOBQ0vxCnyhPsaG7BCLa7GjBK4HboR9H2aoQlVkmj7MJHyYt-uobVH70e-qnD6PDbc8zIY7l1SueJsflxnjhrbFvDO5E4VRtz2d1429M23pkNwNzImLVIy0KDOHUurLY4z3CX5g/media?maxWidthPx=800&key=AIzaSyAHuazNth9ZvfRFYk5-v49CwXwhABH8Ri0
@ -587,8 +584,8 @@ timespan:
end_of_the_end: null
sources:
- 'Wikidata P571 (inception): https://www.wikidata.org/wiki/Q3311591'
notes: Natuurhistorisch Museum Rotterdam founded 1927. Natural history museum in
Rotterdam with collections of zoology, paleontology and geology.
notes: Natuurhistorisch Museum Rotterdam founded 1927. Natural history museum in Rotterdam with collections of zoology,
paleontology and geology.
location:
latitude: 51.91079
longitude: 4.47255
@ -823,8 +820,8 @@ logo_enrichment:
- claim_type: logo_url
claim_value: https://www.hetnatuurhistorisch.nl/_assets/b35a6ef424eb9836f8a19718ff681c39/Assets/Images/logo-zwart.svg
source_url: https://www.hetnatuurhistorisch.nl
css_selector: '[document] > html > body > header.header.is-loaded > div.wrapper.flex
> div.header-left > div.header-logo > a > img'
css_selector: '[document] > html > body > header.header.is-loaded > div.wrapper.flex > div.header-left > div.header-logo
> a > img'
retrieved_on: '2025-12-22T12:26:36.177802+00:00'
extraction_method: crawl4ai_header_logo
detection_confidence: high
@ -843,3 +840,25 @@ logo_enrichment:
has_favicon: true
has_og_image: false
favicon_count: 1
mission_statement:
- statement_id: https://nde.nl/ontology/hc/mission/nl-zh-rot-a-nmr/mission-2026
statement_type: mission
statement_text: Het Natuurhistorisch Museum Rotterdam (kortweg Het Natuurhistorisch) is een laagdrempelig museum voor alle
leeftijden gericht op de (stads)natuur, natuurhistorie en het geologische verleden van de regio Rotterdam en daarbuiten.
Met de collectie als basis biedt het museum middels kennis en educatie, publicaties, tentoonstellingen en andere publieksactiviteiten
een relativerende en opvallende kijk op de altijd verbazingwekkende natuur. Het museum zet daarbij een combinatie in van
ernst en humor om waardering voor de natuur te kweken en het belang van mondiale biodiversiteit en de biodiverse stad
te benadrukken.
statement_language: nl
extracted_verbatim: true
source_url: https://www.hetnatuurhistorisch.nl/organisatie
content_hash: sha256-Jj4xa0FpXdde2aGAmnuD1Wau9SP7ezpXHFabgrSHd+A=
provenance:
statement_created_at: '2026-01-04T16:44:53.289250+00:00'
source_archived_at: '2026-01-04T16:44:19.348801+00:00'
retrieval_agent: linkup-api
extraction_agent: zai-glm/glm-4.7
extraction_confidence: 1.0
prov:wasDerivedFrom: https://www.hetnatuurhistorisch.nl/organisatie
prov:generatedAtTime: '2026-01-04T16:44:53.289250+00:00'
source_section: Onze missie

View file

@ -26,6 +26,7 @@ _metadata:
# Standard SPARQL prefixes used in all templates
_prefixes: |
PREFIX hc: <https://nde.nl/ontology/hc/>
PREFIX hcc: <https://nde.nl/ontology/hc/class/>
PREFIX crm: <http://www.cidoc-crm.org/cidoc-crm/>
PREFIX schema: <http://schema.org/>
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
@ -363,10 +364,10 @@ templates:
sparql_template: |
{{ prefixes }}
SELECT DISTINCT ?institution ?name ?website WHERE {
?institution a hc:class/Custodian ;
?institution a hcc:Custodian ;
hc:institutionType "{{ institution_type }}" ;
schema:addressLocality "{{ city }}" ;
skos:prefLabel ?name .
hc:settlementName "{{ city }}" ;
schema:name ?name .
OPTIONAL { ?institution foaf:homepage ?website }
}
ORDER BY ?name
@ -424,12 +425,12 @@ templates:
sparql_template: |
{{ prefixes }}
SELECT DISTINCT ?institution ?name ?city WHERE {
?institution a hc:class/Custodian ;
?institution a hcc:Custodian ;
hc:institutionType "{{ institution_type }}" ;
hc:ghcid ?ghcid ;
skos:prefLabel ?name .
schema:name ?name .
FILTER(STRSTARTS(?ghcid, "{{ region }}"))
OPTIONAL { ?institution schema:addressLocality ?city }
OPTIONAL { ?institution hc:settlementName ?city }
}
ORDER BY ?name
{% if limit %}LIMIT {{ limit }}{% endif %}
@ -440,9 +441,9 @@ templates:
?institution a crm:E39_Actor ;
hc:institutionType "{{ institution_type }}" ;
hc:ghcid ?ghcid ;
skos:prefLabel ?name .
schema:name ?name .
FILTER(STRSTARTS(?ghcid, "{{ region | replace('-', '-') }}"))
OPTIONAL { ?institution schema:addressLocality ?city }
OPTIONAL { ?institution hc:settlementName ?city }
}
ORDER BY ?name
{% if limit %}LIMIT {{ limit }}{% endif %}
@ -477,11 +478,11 @@ templates:
sparql_template: |
{{ prefixes }}
SELECT DISTINCT ?institution ?name ?city WHERE {
?institution a crm:E39_Actor ;
?institution a hcc:Custodian ;
hc:institutionType "{{ institution_type }}" ;
schema:addressCountry <http://www.wikidata.org/entity/{{ country }}> ;
skos:prefLabel ?name .
OPTIONAL { ?institution schema:addressLocality ?city }
schema:name ?name .
OPTIONAL { ?institution hc:settlementName ?city }
}
ORDER BY ?name
{% if limit %}LIMIT {{ limit }}{% endif %}
@ -530,15 +531,15 @@ templates:
sparql_template: |
{{ prefixes }}
SELECT (COUNT(DISTINCT ?institution) AS ?count) WHERE {
?institution a crm:E39_Actor ;
?institution a hcc:Custodian ;
hc:institutionType "{{ institution_type }}" ;
schema:addressLocality "{{ location }}" .
hc:settlementName "{{ location }}" .
}
sparql_template_region: |
{{ prefixes }}
SELECT (COUNT(DISTINCT ?institution) AS ?count) WHERE {
?institution a crm:E39_Actor ;
?institution a hcc:Custodian ;
hc:institutionType "{{ institution_type }}" ;
hc:ghcid ?ghcid .
FILTER(STRSTARTS(?ghcid, "{{ location }}"))
@ -547,7 +548,7 @@ templates:
sparql_template_country: |
{{ prefixes }}
SELECT (COUNT(DISTINCT ?institution) AS ?count) WHERE {
?institution a crm:E39_Actor ;
?institution a hcc:Custodian ;
hc:institutionType "{{ institution_type }}" ;
schema:addressCountry <http://www.wikidata.org/entity/{{ location }}> .
}
@ -577,7 +578,7 @@ templates:
sparql_template: |
{{ prefixes }}
SELECT ?type (COUNT(DISTINCT ?institution) AS ?count) WHERE {
?institution a crm:E39_Actor ;
?institution a hcc:Custodian ;
hc:institutionType ?type .
}
GROUP BY ?type
@ -633,11 +634,11 @@ templates:
sparql_template: |
{{ prefixes }}
SELECT ?institution ?name ?type ?city ?country ?website ?description WHERE {
?institution a crm:E39_Actor ;
skos:prefLabel ?name .
?institution a hcc:Custodian ;
schema:name ?name .
FILTER(CONTAINS(LCASE(STR(?name)), LCASE("{{ institution_name }}")))
OPTIONAL { ?institution hc:institutionType ?type }
OPTIONAL { ?institution schema:addressLocality ?city }
OPTIONAL { ?institution hc:settlementName ?city }
OPTIONAL { ?institution schema:addressCountry ?country }
OPTIONAL { ?institution foaf:homepage ?website }
OPTIONAL { ?institution schema:description ?description }
@ -674,9 +675,9 @@ templates:
sparql_template: |
{{ prefixes }}
SELECT ?institution ?name ?type ?website WHERE {
?institution a crm:E39_Actor ;
schema:addressLocality "{{ city }}" ;
skos:prefLabel ?name .
?institution a hcc:Custodian ;
hc:settlementName "{{ city }}" ;
schema:name ?name .
OPTIONAL { ?institution hc:institutionType ?type }
OPTIONAL { ?institution foaf:homepage ?website }
}
@ -723,16 +724,16 @@ templates:
sparql_template: |
{{ prefixes }}
SELECT ?institution ?name ?founded ?city WHERE {
?institution a crm:E39_Actor ;
skos:prefLabel ?name ;
?institution a hcc:Custodian ;
schema:name ?name ;
schema:foundingDate ?founded .
{% if institution_type %}
?institution hc:institutionType "{{ institution_type }}" .
{% endif %}
{% if location %}
?institution schema:addressLocality "{{ location }}" .
?institution hc:settlementName "{{ location }}" .
{% endif %}
OPTIONAL { ?institution schema:addressLocality ?city }
OPTIONAL { ?institution hc:settlementName ?city }
}
ORDER BY {{ order }}(?founded)
LIMIT {{ limit | default(10) }}
@ -740,15 +741,15 @@ templates:
sparql_template_region: |
{{ prefixes }}
SELECT ?institution ?name ?founded ?city WHERE {
?institution a crm:E39_Actor ;
skos:prefLabel ?name ;
?institution a hcc:Custodian ;
schema:name ?name ;
schema:foundingDate ?founded ;
hc:ghcid ?ghcid .
FILTER(STRSTARTS(?ghcid, "{{ location }}"))
{% if institution_type %}
?institution hc:institutionType "{{ institution_type }}" .
{% endif %}
OPTIONAL { ?institution schema:addressLocality ?city }
OPTIONAL { ?institution hc:settlementName ?city }
}
ORDER BY {{ order }}(?founded)
LIMIT {{ limit | default(10) }}
@ -756,14 +757,14 @@ templates:
sparql_template_country: |
{{ prefixes }}
SELECT ?institution ?name ?founded ?city WHERE {
?institution a crm:E39_Actor ;
skos:prefLabel ?name ;
?institution a hcc:Custodian ;
schema:name ?name ;
schema:foundingDate ?founded ;
schema:addressCountry wd:{{ location }} .
{% if institution_type %}
?institution hc:institutionType "{{ institution_type }}" .
{% endif %}
OPTIONAL { ?institution schema:addressLocality ?city }
OPTIONAL { ?institution hc:settlementName ?city }
}
ORDER BY {{ order }}(?founded)
LIMIT {{ limit | default(10) }}
@ -796,10 +797,10 @@ templates:
sparql_template_isil: |
{{ prefixes }}
SELECT ?institution ?name ?city ?country ?website WHERE {
?institution a crm:E39_Actor ;
?institution a hcc:Custodian ;
hc:isil "{{ identifier }}" ;
skos:prefLabel ?name .
OPTIONAL { ?institution schema:addressLocality ?city }
schema:name ?name .
OPTIONAL { ?institution hc:settlementName ?city }
OPTIONAL { ?institution schema:addressCountry ?country }
OPTIONAL { ?institution foaf:homepage ?website }
}
@ -807,10 +808,10 @@ templates:
sparql_template_ghcid: |
{{ prefixes }}
SELECT ?institution ?name ?city ?country ?website WHERE {
?institution a crm:E39_Actor ;
?institution a hcc:Custodian ;
hc:ghcid "{{ identifier }}" ;
skos:prefLabel ?name .
OPTIONAL { ?institution schema:addressLocality ?city }
schema:name ?name .
OPTIONAL { ?institution hc:settlementName ?city }
OPTIONAL { ?institution schema:addressCountry ?country }
OPTIONAL { ?institution foaf:homepage ?website }
}
@ -852,8 +853,8 @@ templates:
{{ prefixes }}
SELECT ?location (COUNT(DISTINCT ?institution) AS ?count) WHERE {
VALUES ?location { "{{ location1 }}" "{{ location2 }}" }
?institution a crm:E39_Actor ;
schema:addressLocality ?location .
?institution a hcc:Custodian ;
hc:settlementName ?location .
{% if institution_type %}
?institution hc:institutionType "{{ institution_type }}" .
{% endif %}
@ -864,7 +865,7 @@ templates:
{{ prefixes }}
SELECT ?region (COUNT(DISTINCT ?institution) AS ?count) WHERE {
VALUES ?region_prefix { "{{ location1 }}" "{{ location2 }}" }
?institution a crm:E39_Actor ;
?institution a hcc:Custodian ;
hc:ghcid ?ghcid .
FILTER(STRSTARTS(?ghcid, ?region_prefix))
BIND(?region_prefix AS ?region)
@ -878,7 +879,7 @@ templates:
{{ prefixes }}
SELECT ?country (COUNT(DISTINCT ?institution) AS ?count) WHERE {
VALUES ?country_id { wd:{{ location1 }} wd:{{ location2 }} }
?institution a crm:E39_Actor ;
?institution a hcc:Custodian ;
schema:addressCountry ?country_id .
BIND(?country_id AS ?country)
{% if institution_type %}
@ -1000,8 +1001,8 @@ templates:
{{ prefixes }}
PREFIX frapo: <http://purl.org/cerif/frapo/>
SELECT DISTINCT ?institution ?name ?budget_amount ?fiscal_year WHERE {
?institution a crm:E39_Actor ;
skos:prefLabel ?name .
?institution a hcc:Custodian ;
schema:name ?name .
?budget a hc:class/Budget ;
hc:refers_to_custodian ?institution ;
hc:{{ budget_category }}_budget ?budget_amount .
@ -1025,8 +1026,8 @@ templates:
{{ prefixes }}
PREFIX frapo: <http://purl.org/cerif/frapo/>
SELECT DISTINCT ?institution ?name ?expense_amount ?reporting_year WHERE {
?institution a crm:E39_Actor ;
skos:prefLabel ?name .
?institution a hcc:Custodian ;
schema:name ?name .
?statement a hc:class/FinancialStatement ;
hc:refers_to_custodian ?institution ;
hc:{{ budget_category }}_expenses ?expense_amount .

View file

@ -0,0 +1,299 @@
# Specificity Score System - Master Implementation Checklist
**Project Goal**: Add specificity scores to all 304+ classes in the Heritage Custodian Ontology to improve RAG retrieval precision and UML visualization clarity.
**Timeline**: 3-4 weeks
**Status**: Planning Phase
**Last Updated**: 2025-01-04
---
## Phase 0: Planning & Documentation
### Planning Documents
- [x] README.md - Master overview
- [x] 00-master-checklist.md (this document)
- [ ] 01-design-patterns.md - Software patterns
- [ ] 02-tdd.md - Test-driven development strategy
- [ ] 03-rag-dspy-integration.md - RAG/DSPy integration
- [ ] 04-prompt-conversation-templates.md - Template definitions
- [ ] 05-dependencies.md - External dependencies
- [ ] 06-uml-visualization.md - UML filtering/highlighting
### Rule Documentation
- [ ] Create `.opencode/rules/specificity-score-convention.md`
- [ ] Update `AGENTS.md` with Rule 37 reference
### Research & Analysis
- [ ] Analyze existing class distribution by module
- [ ] Identify core/foundational classes (low specificity)
- [ ] Identify domain-specific classes (high specificity)
- [ ] Survey existing conversation patterns in RAG logs
- [ ] Define 10-15 conversation templates
---
## Phase 1: Schema Annotation Design (Week 1)
### 1.1 Define Annotation Schema
- [ ] **Design annotation format** for LinkML classes:
```yaml
annotations:
specificity_score: 0.75
specificity_rationale: "..."
template_specificity:
template_id_1: 0.95
template_id_2: 0.30
```
- [ ] **Document scoring guidelines** (0.0-1.0 scale interpretation)
- [ ] **Create validation rules** for score ranges
- [ ] **Test annotation format** on 3-5 sample classes
### 1.2 Define Conversation Templates
- [ ] **Template: `archive_search`** - Queries about archives, records, historical documents
- [ ] **Template: `museum_search`** - Queries about museums, exhibitions, artifacts
- [ ] **Template: `library_search`** - Queries about libraries, books, catalogs
- [ ] **Template: `collection_discovery`** - Queries about collections, holdings, accessions
- [ ] **Template: `person_research`** - Queries about people, staff, curators
- [ ] **Template: `location_browse`** - Queries by geographic location
- [ ] **Template: `identifier_lookup`** - Queries by ISIL, Wikidata, GHCID
- [ ] **Template: `organizational_change`** - Queries about mergers, closures, history
- [ ] **Template: `digital_platform`** - Queries about websites, databases, APIs
- [ ] **Template: `general_heritage`** - General queries without specific focus
### 1.3 Score Assignment Guidelines
- [ ] **Document scoring criteria** for general specificity
- [ ] **Document template-specific scoring** rationale
- [ ] **Create examples** for each score range (0.0-0.3, 0.3-0.5, etc.)
- [ ] **Establish peer review process** for score validation
---
## Phase 2: Core Class Scoring (Week 1-2)
### 2.1 Foundational Classes (Low Specificity: 0.0-0.3)
These classes are **always relevant** regardless of conversation context:
- [ ] `HeritageCustodian` - score: 0.10
- [ ] `CustodianName` - score: 0.15
- [ ] `Location` - score: 0.20
- [ ] `Identifier` - score: 0.25
- [ ] `Provenance` - score: 0.25
- [ ] `GHCID` - score: 0.20
### 2.2 General Utility Classes (Moderate Specificity: 0.3-0.5)
These classes are **frequently relevant** across many contexts:
- [ ] `DigitalPlatform` - score: 0.40
- [ ] `WebClaim` - score: 0.45
- [ ] `Collection` - score: 0.35
- [ ] `ChangeEvent` - score: 0.45
- [ ] `ContactPoint` - score: 0.40
### 2.3 Domain-Specific Classes (Higher Specificity: 0.5-0.8)
These classes are **context-dependent**:
- [ ] `Archive` - score: 0.75
- [ ] `Museum` - score: 0.75
- [ ] `Library` - score: 0.75
- [ ] `Gallery` - score: 0.75
- [ ] `ResearchCenter` - score: 0.70
- [ ] `PersonProfile` - score: 0.65
- [ ] `Staff` - score: 0.70
- [ ] (Continue for all CustodianType subclasses)
### 2.4 Highly Specific Classes (High Specificity: 0.8-1.0)
These classes are **rarely needed** except in specialized queries:
- [ ] `LinkedInConnectionExtraction` - score: 0.95
- [ ] `GHCIDHistoryEntry` - score: 0.90
- [ ] `WebObservationDetail` - score: 0.85
- [ ] `PersonProfileExtraction` - score: 0.90
- [ ] (Continue for all extraction/technical classes)
---
## Phase 3: Bulk Scoring Implementation (Week 2)
### 3.1 Build Scoring Tool
- [ ] **Create script**: `scripts/add_specificity_scores.py`
- [ ] Parse all class YAML files in `schemas/20251121/linkml/modules/classes/`
- [ ] Add/update `annotations` section with scores
- [ ] Preserve existing annotations
- [ ] Support dry-run mode
- [ ] Generate change report
- [ ] **Create scoring configuration**: `data/specificity_scores.yaml`
- [ ] Map class names to general scores
- [ ] Map class names to template-specific scores
- [ ] Include rationale for each score
### 3.2 Score All Classes
- [ ] **Module: Core Classes** (~20 classes)
- [ ] **Module: CustodianType Hierarchy** (~50 classes)
- [ ] **Module: Digital Platform Types** (~70 classes)
- [ ] **Module: Provenance Classes** (~15 classes)
- [ ] **Module: Collection Classes** (~20 classes)
- [ ] **Module: Person/Staff Classes** (~25 classes)
- [ ] **Module: Web Observation Classes** (~30 classes)
- [ ] **Module: Extraction Classes** (~40 classes)
- [ ] **Module: Other Classes** (~34 classes)
### 3.3 Validation
- [ ] **Validate all scores** are in 0.0-1.0 range
- [ ] **Validate all classes** have scores
- [ ] **Validate template_specificity** keys match defined templates
- [ ] **Run LinkML validation** to ensure schema integrity
- [ ] **Generate coverage report**
---
## Phase 4: RAG Integration (Week 2-3)
### 4.1 Template Classifier
- [ ] **Create DSPy Signature**: `TemplateClassifier`
- [ ] Input: user question (string)
- [ ] Output: template_id (enum of defined templates)
- [ ] Include few-shot examples
- [ ] **Train classifier** on sample questions
- [ ] **Evaluate accuracy** on held-out test set
- [ ] **Deploy to RAG pipeline**
### 4.2 Specificity Lookup Service
- [ ] **Create lookup module**: `src/specificity/lookup.py`
- [ ] Load scores from schema annotations
- [ ] Cache scores in memory
- [ ] `get_score(class_name, template_id) -> float`
- [ ] `get_all_scores(template_id) -> Dict[str, float]`
- [ ] `filter_classes(template_id, threshold) -> List[str]`
### 4.3 RAG Pipeline Modification
- [ ] **Modify context builder** to filter classes by specificity
- [ ] **Add threshold configuration** (default: 0.5)
- [ ] **Log filtered classes** for debugging
- [ ] **A/B test** retrieval quality with/without filtering
---
## Phase 5: UML Visualization Integration (Week 3)
### 5.1 Frontend Changes
- [ ] **Add specificity filter slider** to UML visualization
- [ ] **Add template selector dropdown** for context-specific filtering
- [ ] **Implement node opacity** based on specificity score
- [ ] **Implement node size** based on specificity score
- [ ] **Add "show all" toggle** to disable filtering
### 5.2 Data Pipeline
- [ ] **Export scores to JSON** for frontend consumption
- [ ] **Include in RDF generation** as annotations
- [ ] **Update UML generation** to include score data
### 5.3 User Experience
- [ ] **Default view**: Filter by general specificity (threshold: 0.6)
- [ ] **Template view**: Filter by selected template
- [ ] **Expert view**: Show all classes (no filtering)
- [ ] **Tooltip**: Show specificity score on hover
---
## Phase 6: Testing & Validation (Week 3-4)
### 6.1 Unit Tests
- [ ] Test score parsing from YAML
- [ ] Test score lookup service
- [ ] Test template classifier
- [ ] Test class filtering logic
### 6.2 Integration Tests
- [ ] Test RAG pipeline with specificity filtering
- [ ] Test UML visualization with filtering
- [ ] Test score persistence through schema regeneration
### 6.3 User Acceptance Tests
- [ ] Test with 10 sample questions per template
- [ ] Measure retrieval precision improvement
- [ ] Measure UML clarity improvement
- [ ] Gather user feedback
---
## Phase 7: Documentation & Deployment (Week 4)
### 7.1 Documentation
- [ ] Update AGENTS.md with Rule 37
- [ ] Document scoring guidelines for future classes
- [ ] Document RAG integration API
- [ ] Document UML visualization features
- [ ] Create user guide for visualization filtering
### 7.2 Deployment
- [ ] Deploy updated schema to production
- [ ] Deploy updated RAG pipeline
- [ ] Deploy updated frontend
- [ ] Monitor retrieval quality metrics
### 7.3 Maintenance Plan
- [ ] Process for scoring new classes
- [ ] Process for updating scores based on feedback
- [ ] Quarterly review of score effectiveness
---
## Metrics & Success Criteria
| Metric | Baseline | Target | Actual |
|--------|----------|--------|--------|
| Classes with specificity scores | 0 | 304 | - |
| Conversation templates defined | 0 | 10 | - |
| RAG retrieval precision | TBD | +20% | - |
| UML nodes in filtered view | 304 | <50 | - |
| User satisfaction (UML clarity) | TBD | >80% | - |
---
## Risk Register
| Risk | Impact | Mitigation |
|------|--------|------------|
| Inconsistent scoring across classes | Medium | Peer review process, scoring guidelines |
| Template classifier inaccuracy | High | Extensive training data, fallback to general scores |
| Performance impact from score lookup | Low | In-memory caching, lazy loading |
| Score maintenance burden | Medium | Automation, clear guidelines for new classes |
---
## Dependencies
- LinkML schema (existing)
- DSPy RAG pipeline (existing)
- Frontend UML visualization (existing)
- Python 3.11+
- LinkML validation tools
---
**Next Action**: Complete Phase 0 documentation, then begin Phase 1.1 (Define Annotation Schema)

View file

@ -0,0 +1,707 @@
# Specificity Score System - Design Patterns
## Overview
This document describes the software design patterns used in the specificity scoring system. The patterns ensure maintainability, testability, and extensibility.
---
## Pattern 1: Strategy Pattern for Score Calculation
### Problem
Different conversation templates require different scoring logic. We need to calculate template-specific scores without hardcoding logic for each template.
### Solution
Use the **Strategy Pattern** to encapsulate scoring algorithms for each template type.
```python
from abc import ABC, abstractmethod
from typing import Dict
class ScoringStrategy(ABC):
"""Abstract base class for template-specific scoring strategies."""
@abstractmethod
def calculate_score(self, class_name: str, class_metadata: Dict) -> float:
"""Calculate specificity score for a class in this template context."""
pass
@abstractmethod
def get_template_id(self) -> str:
"""Return the template ID this strategy handles."""
pass
class ArchiveSearchStrategy(ScoringStrategy):
"""Scoring strategy for archive-related queries."""
# Classes highly relevant to archive searches
HIGH_RELEVANCE = {"Archive", "RecordSet", "Collection", "Fonds", "Series"}
MEDIUM_RELEVANCE = {"HeritageCustodian", "Location", "GHCID", "Identifier"}
LOW_RELEVANCE = {"Museum", "Library", "Gallery", "PersonProfile"}
def calculate_score(self, class_name: str, class_metadata: Dict) -> float:
if class_name in self.HIGH_RELEVANCE:
return 0.90 + (0.05 * self._has_archival_properties(class_metadata))
elif class_name in self.MEDIUM_RELEVANCE:
return 0.60
elif class_name in self.LOW_RELEVANCE:
return 0.20
else:
return 0.40 # Default moderate relevance
def _has_archival_properties(self, metadata: Dict) -> int:
"""Boost score if class has archival-specific properties."""
archival_props = {"record_type", "finding_aid", "extent", "date_range"}
return 1 if any(p in metadata.get("slots", []) for p in archival_props) else 0
def get_template_id(self) -> str:
return "archive_search"
class ScoringStrategyFactory:
"""Factory for creating scoring strategies based on template ID."""
_strategies: Dict[str, ScoringStrategy] = {}
@classmethod
def register(cls, strategy: ScoringStrategy):
"""Register a scoring strategy."""
cls._strategies[strategy.get_template_id()] = strategy
@classmethod
def get_strategy(cls, template_id: str) -> ScoringStrategy:
"""Get the scoring strategy for a template."""
if template_id not in cls._strategies:
return DefaultScoringStrategy()
return cls._strategies[template_id]
# Register strategies at module load
ScoringStrategyFactory.register(ArchiveSearchStrategy())
ScoringStrategyFactory.register(MuseumSearchStrategy())
ScoringStrategyFactory.register(LocationBrowseStrategy())
# ... register all strategies
```
### Benefits
- **Open/Closed Principle**: Add new templates without modifying existing code
- **Single Responsibility**: Each strategy handles one template's logic
- **Testability**: Test each strategy in isolation
---
## Pattern 2: Decorator Pattern for Score Modifiers
### Problem
Scores may need adjustment based on multiple factors:
- Custodian type annotations (GLAMORCUBESFIXPHDNT)
- Inheritance depth in class hierarchy
- Slot count (more complex classes may be more specific)
### Solution
Use the **Decorator Pattern** to layer score modifications.
```python
from abc import ABC, abstractmethod
class ScoreCalculator(ABC):
"""Base interface for score calculation."""
@abstractmethod
def calculate(self, class_name: str, template_id: str) -> float:
pass
class BaseScoreCalculator(ScoreCalculator):
"""Base calculator using stored annotation scores."""
def __init__(self, schema_loader):
self.schema_loader = schema_loader
def calculate(self, class_name: str, template_id: str) -> float:
class_def = self.schema_loader.get_class(class_name)
annotations = class_def.get("annotations", {})
# Try template-specific score first
template_scores = annotations.get("template_specificity", {})
if template_id in template_scores:
return template_scores[template_id]
# Fall back to general score
return annotations.get("specificity_score", 0.5)
class ScoreDecorator(ScoreCalculator):
"""Base decorator class."""
def __init__(self, wrapped: ScoreCalculator):
self._wrapped = wrapped
def calculate(self, class_name: str, template_id: str) -> float:
return self._wrapped.calculate(class_name, template_id)
class CustodianTypeBoostDecorator(ScoreDecorator):
"""Boost scores for classes matching custodian type context."""
def __init__(self, wrapped: ScoreCalculator, custodian_type: str):
super().__init__(wrapped)
self.custodian_type = custodian_type
def calculate(self, class_name: str, template_id: str) -> float:
base_score = self._wrapped.calculate(class_name, template_id)
# Check if class has matching custodian_types annotation
class_def = self.schema_loader.get_class(class_name)
custodian_types = class_def.get("annotations", {}).get("custodian_types", [])
if self.custodian_type in custodian_types or "*" in custodian_types:
return min(1.0, base_score + 0.15) # Boost by 0.15, cap at 1.0
return base_score
class InheritanceDepthDecorator(ScoreDecorator):
"""Adjust scores based on class hierarchy depth."""
def __init__(self, wrapped: ScoreCalculator, schema_loader):
super().__init__(wrapped)
self.schema_loader = schema_loader
def calculate(self, class_name: str, template_id: str) -> float:
base_score = self._wrapped.calculate(class_name, template_id)
depth = self._get_inheritance_depth(class_name)
# Deeper classes are more specific (higher score)
# Depth 0 (root) = no change, Depth 3+ = +0.10
depth_boost = min(0.10, depth * 0.03)
return min(1.0, base_score + depth_boost)
def _get_inheritance_depth(self, class_name: str) -> int:
"""Calculate inheritance depth from root class."""
depth = 0
current = class_name
while True:
class_def = self.schema_loader.get_class(current)
parent = class_def.get("is_a")
if not parent:
break
depth += 1
current = parent
return depth
# Usage: Compose decorators
calculator = BaseScoreCalculator(schema_loader)
calculator = CustodianTypeBoostDecorator(calculator, custodian_type="A") # Archive context
calculator = InheritanceDepthDecorator(calculator, schema_loader)
score = calculator.calculate("ArchivalFonds", "archive_search")
```
### Benefits
- **Flexible composition**: Mix and match score modifiers
- **Separation of concerns**: Each decorator handles one modification
- **Runtime configuration**: Add/remove decorators based on context
---
## Pattern 3: Observer Pattern for Score Updates
### Problem
When scores are updated (manually or via feedback), multiple components need notification:
- RAG pipeline cache
- UML visualization
- Exported JSON files
- Validation reports
### Solution
Use the **Observer Pattern** to notify interested components of score changes.
```python
from abc import ABC, abstractmethod
from typing import List, Dict
class ScoreObserver(ABC):
"""Interface for components that react to score changes."""
@abstractmethod
def on_score_update(self, class_name: str, old_score: float, new_score: float, template_id: str = None):
"""Called when a class's specificity score is updated."""
pass
class ScoreSubject:
"""Manages score data and notifies observers of changes."""
def __init__(self):
self._observers: List[ScoreObserver] = []
self._scores: Dict[str, Dict] = {} # class_name -> {general: float, templates: {}}
def attach(self, observer: ScoreObserver):
self._observers.append(observer)
def detach(self, observer: ScoreObserver):
self._observers.remove(observer)
def notify(self, class_name: str, old_score: float, new_score: float, template_id: str = None):
for observer in self._observers:
observer.on_score_update(class_name, old_score, new_score, template_id)
def update_score(self, class_name: str, new_score: float, template_id: str = None):
"""Update a score and notify observers."""
if class_name not in self._scores:
self._scores[class_name] = {"general": 0.5, "templates": {}}
if template_id:
old_score = self._scores[class_name]["templates"].get(template_id, 0.5)
self._scores[class_name]["templates"][template_id] = new_score
else:
old_score = self._scores[class_name]["general"]
self._scores[class_name]["general"] = new_score
self.notify(class_name, old_score, new_score, template_id)
# Concrete observers
class RAGCacheInvalidator(ScoreObserver):
"""Invalidates RAG cache when scores change."""
def __init__(self, cache_manager):
self.cache_manager = cache_manager
def on_score_update(self, class_name: str, old_score: float, new_score: float, template_id: str = None):
# Invalidate cached class rankings for affected template
if template_id:
self.cache_manager.invalidate(f"class_rankings_{template_id}")
else:
self.cache_manager.invalidate_all("class_rankings_*")
class UMLVisualizationUpdater(ScoreObserver):
"""Triggers UML refresh when scores change."""
def __init__(self, websocket_manager):
self.ws_manager = websocket_manager
def on_score_update(self, class_name: str, old_score: float, new_score: float, template_id: str = None):
# Push update to connected frontend clients
self.ws_manager.broadcast({
"type": "score_update",
"class": class_name,
"old_score": old_score,
"new_score": new_score,
"template": template_id
})
class ScoreChangeLogger(ScoreObserver):
"""Logs score changes for audit trail."""
def __init__(self, logger):
self.logger = logger
def on_score_update(self, class_name: str, old_score: float, new_score: float, template_id: str = None):
self.logger.info(
f"Score updated: {class_name} "
f"[{template_id or 'general'}] {old_score:.2f} -> {new_score:.2f}"
)
# Usage
score_subject = ScoreSubject()
score_subject.attach(RAGCacheInvalidator(cache_manager))
score_subject.attach(UMLVisualizationUpdater(websocket_manager))
score_subject.attach(ScoreChangeLogger(logger))
# When a score is updated, all observers are notified
score_subject.update_score("Archive", 0.80, template_id="collection_discovery")
```
### Benefits
- **Loose coupling**: Score management doesn't know about consumers
- **Extensibility**: Add new observers without modifying core logic
- **Consistency**: All components stay synchronized
---
## Pattern 4: Repository Pattern for Score Persistence
### Problem
Scores are stored as LinkML annotations in YAML files. We need a clean abstraction for reading/writing scores without coupling to file format.
### Solution
Use the **Repository Pattern** to abstract score persistence.
```python
from abc import ABC, abstractmethod
from typing import Dict, Optional
from pathlib import Path
import yaml
class ScoreRepository(ABC):
"""Abstract repository for specificity scores."""
@abstractmethod
def get_score(self, class_name: str, template_id: Optional[str] = None) -> float:
"""Get specificity score for a class."""
pass
@abstractmethod
def set_score(self, class_name: str, score: float, template_id: Optional[str] = None):
"""Set specificity score for a class."""
pass
@abstractmethod
def get_all_scores(self, template_id: Optional[str] = None) -> Dict[str, float]:
"""Get all class scores for a template (or general scores)."""
pass
@abstractmethod
def bulk_update(self, scores: Dict[str, float], template_id: Optional[str] = None):
"""Update multiple scores at once."""
pass
class LinkMLScoreRepository(ScoreRepository):
"""Repository that reads/writes scores from LinkML YAML files."""
def __init__(self, schema_dir: Path):
self.schema_dir = schema_dir
self.classes_dir = schema_dir / "modules" / "classes"
self._cache: Dict[str, Dict] = {}
def get_score(self, class_name: str, template_id: Optional[str] = None) -> float:
class_data = self._load_class(class_name)
annotations = class_data.get("annotations", {})
if template_id:
return annotations.get("template_specificity", {}).get(template_id, 0.5)
return annotations.get("specificity_score", 0.5)
def set_score(self, class_name: str, score: float, template_id: Optional[str] = None):
class_data = self._load_class(class_name)
if "annotations" not in class_data:
class_data["annotations"] = {}
if template_id:
if "template_specificity" not in class_data["annotations"]:
class_data["annotations"]["template_specificity"] = {}
class_data["annotations"]["template_specificity"][template_id] = score
else:
class_data["annotations"]["specificity_score"] = score
self._save_class(class_name, class_data)
def get_all_scores(self, template_id: Optional[str] = None) -> Dict[str, float]:
scores = {}
for yaml_file in self.classes_dir.glob("*.yaml"):
class_name = yaml_file.stem
scores[class_name] = self.get_score(class_name, template_id)
return scores
def bulk_update(self, scores: Dict[str, float], template_id: Optional[str] = None):
for class_name, score in scores.items():
self.set_score(class_name, score, template_id)
def _load_class(self, class_name: str) -> Dict:
if class_name in self._cache:
return self._cache[class_name]
yaml_path = self.classes_dir / f"{class_name}.yaml"
if not yaml_path.exists():
raise ValueError(f"Class file not found: {yaml_path}")
with open(yaml_path) as f:
data = yaml.safe_load(f)
# Extract the class definition (may be nested under 'classes' key)
if "classes" in data:
class_data = data["classes"].get(class_name, {})
else:
class_data = data
self._cache[class_name] = class_data
return class_data
def _save_class(self, class_name: str, class_data: Dict):
yaml_path = self.classes_dir / f"{class_name}.yaml"
# Preserve original file structure
with open(yaml_path) as f:
original = yaml.safe_load(f)
if "classes" in original:
original["classes"][class_name] = class_data
else:
original = class_data
with open(yaml_path, 'w') as f:
yaml.dump(original, f, default_flow_style=False, allow_unicode=True)
# Update cache
self._cache[class_name] = class_data
class InMemoryScoreRepository(ScoreRepository):
"""In-memory repository for testing."""
def __init__(self):
self._scores: Dict[str, Dict] = {}
def get_score(self, class_name: str, template_id: Optional[str] = None) -> float:
if class_name not in self._scores:
return 0.5
if template_id:
return self._scores[class_name].get("templates", {}).get(template_id, 0.5)
return self._scores[class_name].get("general", 0.5)
def set_score(self, class_name: str, score: float, template_id: Optional[str] = None):
if class_name not in self._scores:
self._scores[class_name] = {"general": 0.5, "templates": {}}
if template_id:
self._scores[class_name]["templates"][template_id] = score
else:
self._scores[class_name]["general"] = score
def get_all_scores(self, template_id: Optional[str] = None) -> Dict[str, float]:
return {
name: self.get_score(name, template_id)
for name in self._scores
}
def bulk_update(self, scores: Dict[str, float], template_id: Optional[str] = None):
for class_name, score in scores.items():
self.set_score(class_name, score, template_id)
```
### Benefits
- **Abstraction**: Business logic doesn't depend on file format
- **Testability**: Use in-memory repository for tests
- **Flexibility**: Easy to add new persistence backends (database, API, etc.)
---
## Pattern 5: Command Pattern for Score Updates
### Problem
Score updates may need to be:
- Undone (revert accidental changes)
- Batched (apply multiple changes atomically)
- Audited (track who changed what)
### Solution
Use the **Command Pattern** to encapsulate score changes as objects.
```python
from abc import ABC, abstractmethod
from dataclasses import dataclass
from datetime import datetime
from typing import List, Optional
@dataclass
class ScoreChange:
"""Represents a single score change."""
class_name: str
old_score: float
new_score: float
template_id: Optional[str]
timestamp: datetime
author: str
rationale: str
class ScoreCommand(ABC):
"""Abstract command for score operations."""
@abstractmethod
def execute(self) -> ScoreChange:
"""Execute the command and return the change record."""
pass
@abstractmethod
def undo(self):
"""Undo the command."""
pass
class UpdateScoreCommand(ScoreCommand):
"""Command to update a single score."""
def __init__(
self,
repository: ScoreRepository,
class_name: str,
new_score: float,
template_id: Optional[str] = None,
author: str = "system",
rationale: str = ""
):
self.repository = repository
self.class_name = class_name
self.new_score = new_score
self.template_id = template_id
self.author = author
self.rationale = rationale
self._old_score: Optional[float] = None
def execute(self) -> ScoreChange:
self._old_score = self.repository.get_score(self.class_name, self.template_id)
self.repository.set_score(self.class_name, self.new_score, self.template_id)
return ScoreChange(
class_name=self.class_name,
old_score=self._old_score,
new_score=self.new_score,
template_id=self.template_id,
timestamp=datetime.now(),
author=self.author,
rationale=self.rationale
)
def undo(self):
if self._old_score is not None:
self.repository.set_score(self.class_name, self._old_score, self.template_id)
class BatchScoreCommand(ScoreCommand):
"""Command to update multiple scores atomically."""
def __init__(self, commands: List[UpdateScoreCommand]):
self.commands = commands
self._executed: List[UpdateScoreCommand] = []
def execute(self) -> List[ScoreChange]:
changes = []
try:
for cmd in self.commands:
change = cmd.execute()
changes.append(change)
self._executed.append(cmd)
except Exception as e:
# Rollback on failure
self.undo()
raise e
return changes
def undo(self):
for cmd in reversed(self._executed):
cmd.undo()
self._executed.clear()
class ScoreCommandInvoker:
"""Manages command execution and history."""
def __init__(self):
self._history: List[ScoreCommand] = []
self._redo_stack: List[ScoreCommand] = []
def execute(self, command: ScoreCommand):
result = command.execute()
self._history.append(command)
self._redo_stack.clear()
return result
def undo(self):
if not self._history:
return
command = self._history.pop()
command.undo()
self._redo_stack.append(command)
def redo(self):
if not self._redo_stack:
return
command = self._redo_stack.pop()
command.execute()
self._history.append(command)
def get_history(self) -> List[ScoreCommand]:
return self._history.copy()
# Usage
invoker = ScoreCommandInvoker()
# Single update
cmd = UpdateScoreCommand(
repository=repo,
class_name="Archive",
new_score=0.85,
template_id="archive_search",
author="kempersc",
rationale="Increased based on user feedback"
)
change = invoker.execute(cmd)
# Batch update
batch = BatchScoreCommand([
UpdateScoreCommand(repo, "Museum", 0.90, "museum_search"),
UpdateScoreCommand(repo, "Gallery", 0.85, "museum_search"),
UpdateScoreCommand(repo, "Archive", 0.30, "museum_search"),
])
changes = invoker.execute(batch)
# Undo last change
invoker.undo()
```
### Benefits
- **Undo/Redo**: Easy to revert changes
- **Audit trail**: Track all changes with metadata
- **Atomicity**: Batch changes succeed or fail together
- **Testability**: Test commands in isolation
---
## Pattern Summary
| Pattern | Purpose | Key Benefit |
|---------|---------|-------------|
| **Strategy** | Different scoring algorithms per template | Open/Closed Principle |
| **Decorator** | Layer score modifications | Flexible composition |
| **Observer** | Notify components of changes | Loose coupling |
| **Repository** | Abstract score persistence | Testability |
| **Command** | Encapsulate score updates | Undo/Redo, Audit |
---
## Implementation Priority
1. **Repository Pattern** - Foundation for score storage (Week 1)
2. **Strategy Pattern** - Template-specific scoring (Week 1)
3. **Command Pattern** - Score updates with audit (Week 2)
4. **Observer Pattern** - Cross-component updates (Week 2)
5. **Decorator Pattern** - Score modifiers (Week 3)
---
## References
- Gang of Four: Design Patterns
- Martin Fowler: Patterns of Enterprise Application Architecture
- LinkML Documentation: Annotations
- Project: `docs/plan/prompt-query_template_mapping/design-patterns.md`

View file

@ -0,0 +1,750 @@
# Specificity Score System - Test-Driven Development Strategy
## Overview
This document outlines the TDD approach for implementing the specificity scoring system. All components will be developed test-first to ensure correctness and maintainability.
---
## Testing Pyramid
```
/\
/ \
/ E2E \ ← 5% - Full pipeline tests
/______\
/ \
/ Integr. \ ← 20% - Cross-component tests
/____________\
/ \
/ Unit \ ← 75% - Individual function tests
/__________________\
```
---
## Unit Tests
### 1. Score Repository Tests
```python
# tests/unit/test_score_repository.py
import pytest
from specificity.repository import LinkMLScoreRepository, InMemoryScoreRepository
class TestInMemoryScoreRepository:
"""Tests for in-memory repository (used in other tests)."""
def test_get_score_default(self):
"""Unknown classes return default score of 0.5."""
repo = InMemoryScoreRepository()
assert repo.get_score("UnknownClass") == 0.5
def test_set_and_get_general_score(self):
"""Can set and retrieve general specificity score."""
repo = InMemoryScoreRepository()
repo.set_score("Archive", 0.75)
assert repo.get_score("Archive") == 0.75
def test_set_and_get_template_score(self):
"""Can set and retrieve template-specific score."""
repo = InMemoryScoreRepository()
repo.set_score("Archive", 0.95, template_id="archive_search")
repo.set_score("Archive", 0.20, template_id="museum_search")
assert repo.get_score("Archive", "archive_search") == 0.95
assert repo.get_score("Archive", "museum_search") == 0.20
assert repo.get_score("Archive") == 0.5 # General score unchanged
def test_get_all_scores(self):
"""Can retrieve all scores for a template."""
repo = InMemoryScoreRepository()
repo.set_score("Archive", 0.95, "archive_search")
repo.set_score("Museum", 0.30, "archive_search")
repo.set_score("Library", 0.40, "archive_search")
scores = repo.get_all_scores("archive_search")
assert scores == {"Archive": 0.95, "Museum": 0.30, "Library": 0.40}
def test_bulk_update(self):
"""Can update multiple scores at once."""
repo = InMemoryScoreRepository()
repo.bulk_update({
"Archive": 0.90,
"Museum": 0.85,
"Library": 0.80
}, template_id="general_heritage")
assert repo.get_score("Archive", "general_heritage") == 0.90
assert repo.get_score("Museum", "general_heritage") == 0.85
assert repo.get_score("Library", "general_heritage") == 0.80
class TestLinkMLScoreRepository:
"""Tests for LinkML file-based repository."""
@pytest.fixture
def temp_schema_dir(self, tmp_path):
"""Create temporary schema directory with sample class files."""
classes_dir = tmp_path / "modules" / "classes"
classes_dir.mkdir(parents=True)
# Create sample class file
archive_yaml = classes_dir / "Archive.yaml"
archive_yaml.write_text("""
classes:
Archive:
is_a: HeritageCustodian
description: An archive institution
annotations:
specificity_score: 0.75
template_specificity:
archive_search: 0.95
museum_search: 0.20
""")
return tmp_path
def test_load_existing_score(self, temp_schema_dir):
"""Loads existing score from YAML file."""
repo = LinkMLScoreRepository(temp_schema_dir)
assert repo.get_score("Archive") == 0.75
assert repo.get_score("Archive", "archive_search") == 0.95
def test_update_score_persists(self, temp_schema_dir):
"""Updated scores are persisted to file."""
repo = LinkMLScoreRepository(temp_schema_dir)
repo.set_score("Archive", 0.80)
# Create new repository instance to verify persistence
repo2 = LinkMLScoreRepository(temp_schema_dir)
assert repo2.get_score("Archive") == 0.80
def test_missing_class_raises_error(self, temp_schema_dir):
"""Raises ValueError for non-existent class."""
repo = LinkMLScoreRepository(temp_schema_dir)
with pytest.raises(ValueError, match="Class file not found"):
repo.get_score("NonExistentClass")
```
### 2. Scoring Strategy Tests
```python
# tests/unit/test_scoring_strategies.py
import pytest
from specificity.strategies import (
ArchiveSearchStrategy,
MuseumSearchStrategy,
LocationBrowseStrategy,
ScoringStrategyFactory
)
class TestArchiveSearchStrategy:
"""Tests for archive search scoring strategy."""
@pytest.fixture
def strategy(self):
return ArchiveSearchStrategy()
def test_archive_class_high_score(self, strategy):
"""Archive class gets high score for archive_search template."""
score = strategy.calculate_score("Archive", {})
assert score >= 0.90
def test_museum_class_low_score(self, strategy):
"""Museum class gets low score for archive_search template."""
score = strategy.calculate_score("Museum", {})
assert score <= 0.30
def test_location_class_moderate_score(self, strategy):
"""Location class gets moderate score (useful across templates)."""
score = strategy.calculate_score("Location", {})
assert 0.50 <= score <= 0.70
def test_archival_properties_boost(self, strategy):
"""Classes with archival properties get score boost."""
metadata_without = {"slots": ["name", "description"]}
metadata_with = {"slots": ["name", "finding_aid", "extent"]}
score_without = strategy.calculate_score("Collection", metadata_without)
score_with = strategy.calculate_score("Collection", metadata_with)
assert score_with > score_without
def test_template_id(self, strategy):
"""Strategy returns correct template ID."""
assert strategy.get_template_id() == "archive_search"
class TestScoringStrategyFactory:
"""Tests for strategy factory."""
def test_get_registered_strategy(self):
"""Factory returns registered strategy."""
strategy = ScoringStrategyFactory.get_strategy("archive_search")
assert isinstance(strategy, ArchiveSearchStrategy)
def test_get_unregistered_returns_default(self):
"""Factory returns default strategy for unknown template."""
strategy = ScoringStrategyFactory.get_strategy("unknown_template")
assert strategy.get_template_id() == "default"
def test_register_custom_strategy(self):
"""Can register custom strategy."""
class CustomStrategy(ScoringStrategy):
def calculate_score(self, class_name, metadata):
return 0.99
def get_template_id(self):
return "custom"
ScoringStrategyFactory.register(CustomStrategy())
strategy = ScoringStrategyFactory.get_strategy("custom")
assert strategy.calculate_score("Any", {}) == 0.99
```
### 3. Score Calculator (Decorator) Tests
```python
# tests/unit/test_score_calculator.py
import pytest
from specificity.calculator import (
BaseScoreCalculator,
CustodianTypeBoostDecorator,
InheritanceDepthDecorator
)
from specificity.repository import InMemoryScoreRepository
class TestBaseScoreCalculator:
"""Tests for base score calculator."""
@pytest.fixture
def calculator(self):
repo = InMemoryScoreRepository()
repo.set_score("Archive", 0.75)
repo.set_score("Archive", 0.95, "archive_search")
return BaseScoreCalculator(repo)
def test_returns_general_score(self, calculator):
"""Returns general score when no template specified."""
score = calculator.calculate("Archive", None)
assert score == 0.75
def test_returns_template_score(self, calculator):
"""Returns template-specific score when template specified."""
score = calculator.calculate("Archive", "archive_search")
assert score == 0.95
def test_fallback_to_general_for_unknown_template(self, calculator):
"""Falls back to general score for unknown template."""
score = calculator.calculate("Archive", "unknown_template")
assert score == 0.75
class TestCustodianTypeBoostDecorator:
"""Tests for custodian type boost decorator."""
@pytest.fixture
def decorated_calculator(self):
repo = InMemoryScoreRepository()
repo.set_score("Archive", 0.70)
# Mock schema loader with custodian_types annotation
schema_loader = MockSchemaLoader({
"Archive": {"annotations": {"custodian_types": ["A", "O"]}},
"Museum": {"annotations": {"custodian_types": ["M"]}},
"Location": {"annotations": {"custodian_types": ["*"]}} # Universal
})
base = BaseScoreCalculator(repo)
return CustodianTypeBoostDecorator(base, custodian_type="A")
def test_boost_matching_custodian_type(self, decorated_calculator):
"""Boosts score for matching custodian type."""
score = decorated_calculator.calculate("Archive", None)
assert score == 0.85 # 0.70 + 0.15 boost
def test_no_boost_non_matching_type(self, decorated_calculator):
"""No boost for non-matching custodian type."""
score = decorated_calculator.calculate("Museum", None)
assert score == 0.50 # Default score, no boost
def test_boost_universal_type(self, decorated_calculator):
"""Boosts score for universal (*) custodian type."""
score = decorated_calculator.calculate("Location", None)
assert score >= 0.65 # Gets boost because "*" matches all
class TestInheritanceDepthDecorator:
"""Tests for inheritance depth decorator."""
@pytest.fixture
def decorated_calculator(self):
repo = InMemoryScoreRepository()
repo.set_score("HeritageCustodian", 0.10)
repo.set_score("Archive", 0.70)
repo.set_score("NationalArchive", 0.80)
# Mock schema loader with inheritance hierarchy
schema_loader = MockSchemaLoader({
"HeritageCustodian": {}, # Root class, depth 0
"Archive": {"is_a": "HeritageCustodian"}, # Depth 1
"NationalArchive": {"is_a": "Archive"} # Depth 2
})
base = BaseScoreCalculator(repo)
return InheritanceDepthDecorator(base, schema_loader)
def test_root_class_no_boost(self, decorated_calculator):
"""Root class (depth 0) gets no depth boost."""
score = decorated_calculator.calculate("HeritageCustodian", None)
assert score == 0.10
def test_child_class_small_boost(self, decorated_calculator):
"""Direct child (depth 1) gets small boost."""
score = decorated_calculator.calculate("Archive", None)
assert score == 0.73 # 0.70 + 0.03 (depth 1 * 0.03)
def test_grandchild_class_larger_boost(self, decorated_calculator):
"""Grandchild (depth 2) gets larger boost."""
score = decorated_calculator.calculate("NationalArchive", None)
assert score == 0.86 # 0.80 + 0.06 (depth 2 * 0.03)
```
### 4. Command Tests
```python
# tests/unit/test_commands.py
import pytest
from datetime import datetime
from specificity.commands import (
UpdateScoreCommand,
BatchScoreCommand,
ScoreCommandInvoker
)
from specificity.repository import InMemoryScoreRepository
class TestUpdateScoreCommand:
"""Tests for single score update command."""
def test_execute_updates_score(self):
"""Execute updates the score in repository."""
repo = InMemoryScoreRepository()
repo.set_score("Archive", 0.50)
cmd = UpdateScoreCommand(repo, "Archive", 0.75)
change = cmd.execute()
assert repo.get_score("Archive") == 0.75
assert change.old_score == 0.50
assert change.new_score == 0.75
def test_undo_restores_original(self):
"""Undo restores the original score."""
repo = InMemoryScoreRepository()
repo.set_score("Archive", 0.50)
cmd = UpdateScoreCommand(repo, "Archive", 0.75)
cmd.execute()
cmd.undo()
assert repo.get_score("Archive") == 0.50
def test_execute_records_metadata(self):
"""Execute records change metadata."""
repo = InMemoryScoreRepository()
cmd = UpdateScoreCommand(
repo, "Archive", 0.75,
author="kempersc",
rationale="User feedback indicated higher relevance"
)
change = cmd.execute()
assert change.author == "kempersc"
assert "feedback" in change.rationale
assert isinstance(change.timestamp, datetime)
class TestBatchScoreCommand:
"""Tests for batch score update command."""
def test_execute_all_updates(self):
"""Execute updates all scores in batch."""
repo = InMemoryScoreRepository()
batch = BatchScoreCommand([
UpdateScoreCommand(repo, "Archive", 0.90),
UpdateScoreCommand(repo, "Museum", 0.85),
UpdateScoreCommand(repo, "Library", 0.80),
])
changes = batch.execute()
assert len(changes) == 3
assert repo.get_score("Archive") == 0.90
assert repo.get_score("Museum") == 0.85
assert repo.get_score("Library") == 0.80
def test_rollback_on_failure(self):
"""Rollback all changes if any update fails."""
repo = InMemoryScoreRepository()
repo.set_score("Archive", 0.50)
repo.set_score("Museum", 0.50)
# Create a command that will fail
class FailingCommand(UpdateScoreCommand):
def execute(self):
raise ValueError("Simulated failure")
batch = BatchScoreCommand([
UpdateScoreCommand(repo, "Archive", 0.90),
FailingCommand(repo, "Fail", 0.00),
UpdateScoreCommand(repo, "Museum", 0.85),
])
with pytest.raises(ValueError):
batch.execute()
# First update should be rolled back
assert repo.get_score("Archive") == 0.50
class TestScoreCommandInvoker:
"""Tests for command invoker with undo/redo."""
def test_undo_reverts_last_command(self):
"""Undo reverts the most recent command."""
repo = InMemoryScoreRepository()
repo.set_score("Archive", 0.50)
invoker = ScoreCommandInvoker()
invoker.execute(UpdateScoreCommand(repo, "Archive", 0.75))
invoker.execute(UpdateScoreCommand(repo, "Archive", 0.90))
assert repo.get_score("Archive") == 0.90
invoker.undo()
assert repo.get_score("Archive") == 0.75
invoker.undo()
assert repo.get_score("Archive") == 0.50
def test_redo_reapplies_undone_command(self):
"""Redo reapplies an undone command."""
repo = InMemoryScoreRepository()
invoker = ScoreCommandInvoker()
invoker.execute(UpdateScoreCommand(repo, "Archive", 0.75))
invoker.undo()
assert repo.get_score("Archive") == 0.50
invoker.redo()
assert repo.get_score("Archive") == 0.75
def test_redo_cleared_after_new_execute(self):
"""Redo stack is cleared after new command execution."""
repo = InMemoryScoreRepository()
invoker = ScoreCommandInvoker()
invoker.execute(UpdateScoreCommand(repo, "Archive", 0.75))
invoker.undo()
invoker.execute(UpdateScoreCommand(repo, "Archive", 0.80))
invoker.redo() # Should have no effect
assert repo.get_score("Archive") == 0.80
```
---
## Integration Tests
### 1. RAG Pipeline Integration
```python
# tests/integration/test_rag_integration.py
import pytest
from specificity.rag import SpecificityFilteredRetriever
from specificity.repository import InMemoryScoreRepository
class TestSpecificityFilteredRetriever:
"""Tests for RAG retriever with specificity filtering."""
@pytest.fixture
def retriever(self):
repo = InMemoryScoreRepository()
# Set up scores for archive_search template
repo.set_score("Archive", 0.95, "archive_search")
repo.set_score("Collection", 0.85, "archive_search")
repo.set_score("Location", 0.70, "archive_search")
repo.set_score("Museum", 0.20, "archive_search")
repo.set_score("Gallery", 0.15, "archive_search")
return SpecificityFilteredRetriever(repo, threshold=0.5)
def test_filters_low_score_classes(self, retriever):
"""Filters out classes below threshold."""
classes = retriever.get_relevant_classes("archive_search")
assert "Archive" in classes
assert "Collection" in classes
assert "Location" in classes
assert "Museum" not in classes
assert "Gallery" not in classes
def test_ranks_by_score(self, retriever):
"""Returns classes ranked by specificity score."""
classes = retriever.get_relevant_classes("archive_search")
assert classes.index("Archive") < classes.index("Collection")
assert classes.index("Collection") < classes.index("Location")
def test_threshold_adjustment(self, retriever):
"""Can adjust threshold at query time."""
classes = retriever.get_relevant_classes("archive_search", threshold=0.80)
assert "Archive" in classes
assert "Collection" in classes
assert "Location" not in classes # 0.70 < 0.80
```
### 2. Template Classifier Integration
```python
# tests/integration/test_template_classifier.py
import pytest
from specificity.classifier import TemplateClassifier
class TestTemplateClassifier:
"""Tests for question-to-template classification."""
@pytest.fixture
def classifier(self):
return TemplateClassifier()
@pytest.mark.parametrize("question,expected_template", [
("What archives are in Drenthe?", "archive_search"),
("Which museums have art collections?", "museum_search"),
("Find libraries in Amsterdam", "library_search"),
("Who is the director of the Rijksmuseum?", "person_research"),
("Where is the National Archive located?", "location_browse"),
("What is the ISIL code for Amsterdam Museum?", "identifier_lookup"),
("When did the museum merge with the archive?", "organizational_change"),
])
def test_classifies_common_questions(self, classifier, question, expected_template):
"""Classifies common question patterns correctly."""
result = classifier.classify(question)
assert result.template_id == expected_template
def test_returns_confidence_score(self, classifier):
"""Returns confidence score with classification."""
result = classifier.classify("What archives are in Drenthe?")
assert hasattr(result, "confidence")
assert 0.0 <= result.confidence <= 1.0
def test_fallback_for_ambiguous_questions(self, classifier):
"""Falls back to general_heritage for ambiguous questions."""
result = classifier.classify("Tell me about heritage in the Netherlands")
assert result.template_id == "general_heritage"
```
---
## End-to-End Tests
### 1. Full Pipeline Test
```python
# tests/e2e/test_full_pipeline.py
import pytest
from specificity.pipeline import SpecificityPipeline
class TestFullPipeline:
"""End-to-end tests for complete specificity scoring pipeline."""
@pytest.fixture
def pipeline(self, real_schema_dir):
"""Create pipeline with real schema files."""
return SpecificityPipeline(real_schema_dir)
def test_archive_question_filters_correctly(self, pipeline):
"""Archive question filters to archive-relevant classes."""
question = "What archives in Noord-Holland have photo collections?"
result = pipeline.process(question)
# Should include archive-relevant classes
assert "Archive" in result.relevant_classes
assert "Collection" in result.relevant_classes
assert "Location" in result.relevant_classes
# Should exclude irrelevant classes
assert "LinkedInConnectionExtraction" not in result.relevant_classes
assert "PersonProfileExtraction" not in result.relevant_classes
def test_person_question_includes_person_classes(self, pipeline):
"""Person research question includes person-relevant classes."""
question = "Who are the curators at the Rijksmuseum?"
result = pipeline.process(question)
assert "PersonProfile" in result.relevant_classes
assert "Staff" in result.relevant_classes
assert "HeritageCustodian" in result.relevant_classes
def test_context_reduces_class_count(self, pipeline):
"""Template-specific filtering reduces total class count."""
# Without filtering
all_classes = pipeline.get_all_classes()
# With filtering
question = "What archives are in Drenthe?"
result = pipeline.process(question)
# Filtered should be significantly smaller
assert len(result.relevant_classes) < len(all_classes) * 0.5
```
---
## Test Fixtures
### Shared Fixtures
```python
# tests/conftest.py
import pytest
from pathlib import Path
import yaml
@pytest.fixture
def temp_schema_dir(tmp_path):
"""Create temporary schema directory with sample classes."""
classes_dir = tmp_path / "modules" / "classes"
classes_dir.mkdir(parents=True)
sample_classes = {
"HeritageCustodian": {
"description": "Base class for heritage institutions",
"annotations": {"specificity_score": 0.10}
},
"Archive": {
"is_a": "HeritageCustodian",
"description": "An archive institution",
"annotations": {
"specificity_score": 0.75,
"template_specificity": {
"archive_search": 0.95,
"museum_search": 0.20
}
}
},
"Museum": {
"is_a": "HeritageCustodian",
"description": "A museum institution",
"annotations": {
"specificity_score": 0.75,
"template_specificity": {
"archive_search": 0.20,
"museum_search": 0.95
}
}
},
"Location": {
"description": "Geographic location",
"annotations": {
"specificity_score": 0.30,
"custodian_types": ["*"]
}
}
}
for class_name, class_def in sample_classes.items():
yaml_path = classes_dir / f"{class_name}.yaml"
yaml_path.write_text(yaml.dump({"classes": {class_name: class_def}}))
return tmp_path
@pytest.fixture
def real_schema_dir():
"""Path to real schema directory for integration tests."""
return Path("/Users/kempersc/apps/glam/schemas/20251121/linkml")
class MockSchemaLoader:
"""Mock schema loader for unit tests."""
def __init__(self, classes: dict):
self._classes = classes
def get_class(self, class_name: str) -> dict:
return self._classes.get(class_name, {})
```
---
## Test Coverage Targets
| Component | Target Coverage |
|-----------|-----------------|
| Repository | 95% |
| Strategies | 90% |
| Calculator/Decorators | 90% |
| Commands | 95% |
| Classifier | 85% |
| RAG Integration | 80% |
| UML Integration | 80% |
| **Overall** | **85%** |
---
## CI/CD Integration
```yaml
# .github/workflows/specificity-tests.yml
name: Specificity Score Tests
on:
push:
paths:
- 'src/specificity/**'
- 'tests/**/*specificity*'
- 'schemas/**/classes/**'
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install dependencies
run: |
pip install -r requirements-dev.txt
- name: Run unit tests
run: |
pytest tests/unit -v --cov=src/specificity --cov-report=xml
- name: Run integration tests
run: |
pytest tests/integration -v
- name: Upload coverage
uses: codecov/codecov-action@v4
with:
file: coverage.xml
```
---
## References
- pytest documentation: https://docs.pytest.org/
- pytest-cov: https://pytest-cov.readthedocs.io/
- TDD best practices: https://martinfowler.com/bliki/TestDrivenDevelopment.html

View file

@ -0,0 +1,638 @@
# Specificity Score System - RAG/DSPy Integration
## Overview
This document describes how the specificity scoring system integrates with the existing RAG pipeline and DSPy framework to improve retrieval precision for follow-up questions.
---
## Current RAG Architecture
```
User Question
|
v
+------------------+
| DSPy ChainOfThought | <-- Generates reasoning
+------------------+
|
v
+------------------+
| Vector Retriever | <-- Retrieves ALL relevant chunks
+------------------+
|
v
+------------------+
| SPARQL Generator | <-- Generates query from context
+------------------+
|
v
+------------------+
| Response Synth. | <-- Synthesizes answer
+------------------+
```
### Problem
The vector retriever returns chunks from **all ontology classes** regardless of conversation context. This causes:
1. **Context pollution**: Irrelevant classes dilute the LLM context
2. **Token waste**: Limited context window filled with low-value information
3. **Retrieval noise**: Follow-up questions get wrong class context
---
## Enhanced Architecture with Specificity Filtering
```
User Question
|
v
+----------------------+
| Template Classifier | <-- NEW: DSPy Signature for template classification
+----------------------+
|
v
+----------------------+
| Specificity Filter | <-- NEW: Filters classes by template scores
+----------------------+
|
v
+----------------------+
| Scoped Retriever | <-- MODIFIED: Only retrieves from relevant classes
+----------------------+
|
v
+----------------------+
| DSPy ChainOfThought | <-- Existing: Better reasoning with cleaner context
+----------------------+
|
v
+----------------------+
| SPARQL Generator | <-- Existing: More accurate queries
+----------------------+
|
v
+----------------------+
| Response Synthesizer | <-- Existing: More focused answers
+----------------------+
```
---
## DSPy Signatures
### 1. Template Classifier Signature
```python
import dspy
from typing import Literal
# Define template types
TemplateType = Literal[
"archive_search",
"museum_search",
"library_search",
"collection_discovery",
"person_research",
"location_browse",
"identifier_lookup",
"organizational_change",
"digital_platform",
"general_heritage"
]
class TemplateClassifier(dspy.Signature):
"""Classify a heritage-related question into a conversation template.
Templates represent common question patterns about heritage institutions.
Choose the template that best matches the user's information need.
"""
question: str = dspy.InputField(
desc="The user's question about heritage institutions"
)
template_id: TemplateType = dspy.OutputField(
desc="The conversation template that best matches this question"
)
confidence: float = dspy.OutputField(
desc="Confidence score for the classification (0.0 to 1.0)"
)
reasoning: str = dspy.OutputField(
desc="Brief explanation for why this template was chosen"
)
# Create predictor
template_classifier = dspy.ChainOfThought(TemplateClassifier)
```
### 2. Few-Shot Examples for Template Classifier
```python
# Training examples for template classifier
TEMPLATE_EXAMPLES = [
# Archive search
dspy.Example(
question="What archives are in Drenthe?",
template_id="archive_search",
confidence=0.95,
reasoning="Question asks about archives in a specific location"
).with_inputs("question"),
dspy.Example(
question="Which archives have photo collections?",
template_id="archive_search",
confidence=0.90,
reasoning="Question focuses on archive holdings"
).with_inputs("question"),
# Museum search
dspy.Example(
question="Find art museums in Amsterdam",
template_id="museum_search",
confidence=0.95,
reasoning="Question asks about museums by type and location"
).with_inputs("question"),
# Person research
dspy.Example(
question="Who is the director of the Rijksmuseum?",
template_id="person_research",
confidence=0.95,
reasoning="Question asks about a specific person's role"
).with_inputs("question"),
dspy.Example(
question="What curators work at the National Archive?",
template_id="person_research",
confidence=0.90,
reasoning="Question asks about staff at an institution"
).with_inputs("question"),
# Location browse
dspy.Example(
question="Where is the Bonnefantenmuseum located?",
template_id="location_browse",
confidence=0.95,
reasoning="Question asks about institution location"
).with_inputs("question"),
# Identifier lookup
dspy.Example(
question="What is the ISIL code for Amsterdam Museum?",
template_id="identifier_lookup",
confidence=0.95,
reasoning="Question asks about specific identifier"
).with_inputs("question"),
dspy.Example(
question="Find the Wikidata ID for the Rijksarchief",
template_id="identifier_lookup",
confidence=0.95,
reasoning="Question asks for external identifier"
).with_inputs("question"),
# Organizational change
dspy.Example(
question="When did the museum merge with the archive?",
template_id="organizational_change",
confidence=0.95,
reasoning="Question asks about organizational history"
).with_inputs("question"),
dspy.Example(
question="What happened to the Gemeentearchief after 2000?",
template_id="organizational_change",
confidence=0.90,
reasoning="Question asks about institutional changes over time"
).with_inputs("question"),
# General heritage
dspy.Example(
question="Tell me about heritage institutions in the Netherlands",
template_id="general_heritage",
confidence=0.70,
reasoning="Broad question without specific focus"
).with_inputs("question"),
]
# Compile with few-shot examples
template_classifier_compiled = dspy.BootstrapFewShot(
metric=lambda example, pred: pred.template_id == example.template_id
).compile(template_classifier, trainset=TEMPLATE_EXAMPLES)
```
### 3. Specificity-Aware Retriever Module
```python
class SpecificityAwareRetriever(dspy.Module):
"""DSPy module that retrieves context filtered by specificity scores."""
def __init__(self, score_repository, vector_store, threshold=0.5):
super().__init__()
self.score_repo = score_repository
self.vector_store = vector_store
self.threshold = threshold
self.classifier = template_classifier_compiled
def forward(self, question: str, k: int = 10) -> dspy.Prediction:
# Step 1: Classify question into template
classification = self.classifier(question=question)
template_id = classification.template_id
# Step 2: Get relevant classes above threshold
all_scores = self.score_repo.get_all_scores(template_id)
relevant_classes = [
cls for cls, score in all_scores.items()
if score >= self.threshold
]
# Step 3: Retrieve chunks only from relevant classes
# Filter vector store by class metadata
results = self.vector_store.similarity_search(
question,
k=k,
filter={"class_name": {"$in": relevant_classes}}
)
# Step 4: Rank results by combined relevance + specificity
ranked_results = self._rank_by_specificity(results, all_scores)
return dspy.Prediction(
template_id=template_id,
template_confidence=classification.confidence,
relevant_classes=relevant_classes,
context=ranked_results,
scores=all_scores
)
def _rank_by_specificity(self, results, scores):
"""Re-rank results by combining vector similarity with specificity score."""
for result in results:
class_name = result.metadata.get("class_name", "Unknown")
specificity = scores.get(class_name, 0.5)
# Combine scores: 70% vector similarity, 30% specificity
result.combined_score = (0.7 * result.score) + (0.3 * specificity)
return sorted(results, key=lambda r: r.combined_score, reverse=True)
```
---
## Integration with Existing Pipeline
### Modified RAG Pipeline
```python
# apps/archief-assistent/backend/dspy_heritage_rag.py
class HeritageRAG(dspy.Module):
"""Enhanced Heritage RAG with specificity filtering."""
def __init__(self, config):
super().__init__()
# Existing components
self.llm = dspy.OpenAI(model=config.model)
self.vector_store = config.vector_store
# NEW: Specificity components
self.score_repo = LinkMLScoreRepository(config.schema_dir)
self.specificity_retriever = SpecificityAwareRetriever(
self.score_repo,
self.vector_store,
threshold=config.specificity_threshold # Default: 0.5
)
# Existing generation components
self.cot = dspy.ChainOfThought(HeritageQA)
self.sparql_gen = dspy.ChainOfThought(SPARQLGenerator)
def forward(self, question: str) -> dspy.Prediction:
# Step 1: Retrieve with specificity filtering (NEW)
retrieval = self.specificity_retriever(question)
# Step 2: Generate reasoning with filtered context
reasoning = self.cot(
question=question,
context=retrieval.context,
template_hint=retrieval.template_id # NEW: Provide template context
)
# Step 3: Generate SPARQL (existing)
sparql = self.sparql_gen(
question=question,
reasoning=reasoning.rationale,
relevant_classes=retrieval.relevant_classes # NEW: Scope to classes
)
return dspy.Prediction(
answer=reasoning.answer,
sparql=sparql.query,
template=retrieval.template_id,
classes_used=retrieval.relevant_classes
)
```
### Configuration
```python
# config.py
class RAGConfig:
model: str = "gpt-4"
schema_dir: Path = Path("schemas/20251121/linkml")
specificity_threshold: float = 0.5 # Minimum score for inclusion
# Template-specific thresholds (optional)
template_thresholds: dict = {
"archive_search": 0.4, # More inclusive for archives
"person_research": 0.6, # More restrictive for person queries
"general_heritage": 0.3, # Very inclusive for general queries
}
```
---
## Conversation Context Integration
### Follow-up Question Handling
```python
class ConversationContext:
"""Manages conversation context for follow-up questions."""
def __init__(self):
self.history: List[Turn] = []
self.current_template: str = None
self.active_classes: Set[str] = set()
def add_turn(self, question: str, template_id: str, classes: List[str]):
"""Record a conversation turn."""
self.history.append(Turn(
question=question,
template_id=template_id,
classes=classes,
timestamp=datetime.now()
))
# Update active context
self.current_template = template_id
self.active_classes.update(classes)
def get_context_boost(self) -> Dict[str, float]:
"""Get score boosts for classes mentioned in conversation."""
boosts = {}
# Recent classes get higher boost
for i, turn in enumerate(reversed(self.history[-5:])):
recency_factor = 1.0 - (i * 0.15) # 1.0, 0.85, 0.70, 0.55, 0.40
for class_name in turn.classes:
current_boost = boosts.get(class_name, 0)
boosts[class_name] = max(current_boost, 0.1 * recency_factor)
return boosts
class ConversationAwareRetriever(SpecificityAwareRetriever):
"""Retriever that considers conversation history."""
def __init__(self, *args, context: ConversationContext = None, **kwargs):
super().__init__(*args, **kwargs)
self.context = context or ConversationContext()
def forward(self, question: str, k: int = 10) -> dspy.Prediction:
# Get base prediction
prediction = super().forward(question, k)
# Apply conversation context boosts
context_boosts = self.context.get_context_boost()
for class_name, boost in context_boosts.items():
if class_name in prediction.scores:
prediction.scores[class_name] = min(
1.0,
prediction.scores[class_name] + boost
)
# Re-filter with boosted scores
prediction.relevant_classes = [
cls for cls, score in prediction.scores.items()
if score >= self.threshold
]
# Update conversation context
self.context.add_turn(
question,
prediction.template_id,
prediction.relevant_classes
)
return prediction
```
---
## DSPy History Integration
```python
# Using DSPy's built-in history tracking
class HeritageRAGWithHistory(dspy.Module):
"""Heritage RAG using DSPy history for multi-turn conversations."""
def __init__(self, config):
super().__init__()
self.config = config
self.retriever = ConversationAwareRetriever(...)
self.qa = dspy.ChainOfThought(HeritageQA)
def forward(self, question: str, history: List[dict] = None) -> dspy.Prediction:
# Build context from history
context_prompt = ""
if history:
context_prompt = "Previous conversation:\n"
for turn in history[-3:]: # Last 3 turns
context_prompt += f"Q: {turn['question']}\n"
context_prompt += f"A: {turn['answer']}\n\n"
# Retrieve with conversation awareness
retrieval = self.retriever(
question=f"{context_prompt}Current question: {question}"
)
# Generate answer
answer = self.qa(
question=question,
context=retrieval.context,
conversation_history=context_prompt
)
return dspy.Prediction(
answer=answer.answer,
template=retrieval.template_id,
classes_used=retrieval.relevant_classes
)
```
---
## Metrics and Evaluation
### Retrieval Quality Metrics
```python
def evaluate_specificity_filtering(test_set, retriever):
"""Evaluate retrieval quality with specificity filtering."""
metrics = {
"precision": [],
"recall": [],
"class_reduction": [],
"response_time": []
}
for example in test_set:
start_time = time.time()
prediction = retriever(example.question)
elapsed = time.time() - start_time
# Calculate precision: relevant classes / retrieved classes
relevant = set(example.expected_classes)
retrieved = set(prediction.relevant_classes)
precision = len(relevant & retrieved) / len(retrieved) if retrieved else 0
recall = len(relevant & retrieved) / len(relevant) if relevant else 0
# Calculate class reduction
all_classes = retriever.score_repo.get_all_scores()
reduction = 1 - (len(retrieved) / len(all_classes))
metrics["precision"].append(precision)
metrics["recall"].append(recall)
metrics["class_reduction"].append(reduction)
metrics["response_time"].append(elapsed)
return {
k: sum(v) / len(v) for k, v in metrics.items()
}
```
### A/B Testing Configuration
```python
class SpecificityExperiment:
"""A/B test configuration for specificity filtering."""
def __init__(self, traffic_split=0.5):
self.traffic_split = traffic_split
self.metrics = {"control": [], "treatment": []}
def get_retriever(self, session_id: str):
"""Get retriever based on traffic split."""
# Deterministic assignment based on session ID
use_specificity = hash(session_id) % 100 < (self.traffic_split * 100)
if use_specificity:
return SpecificityAwareRetriever(...) # Treatment
else:
return BaseRetriever(...) # Control
def log_result(self, session_id: str, quality_score: float):
"""Log result for analysis."""
group = "treatment" if self.is_treatment(session_id) else "control"
self.metrics[group].append(quality_score)
```
---
## Deployment Considerations
### Caching Strategy
```python
from functools import lru_cache
from datetime import datetime, timedelta
class CachedScoreRepository:
"""Score repository with caching for production performance."""
def __init__(self, base_repo, cache_ttl_seconds=300):
self.base_repo = base_repo
self.cache_ttl = cache_ttl_seconds
self._cache = {}
self._cache_time = {}
def get_all_scores(self, template_id: str) -> Dict[str, float]:
cache_key = f"scores_{template_id}"
# Check cache validity
if cache_key in self._cache:
cache_age = (datetime.now() - self._cache_time[cache_key]).seconds
if cache_age < self.cache_ttl:
return self._cache[cache_key]
# Refresh cache
scores = self.base_repo.get_all_scores(template_id)
self._cache[cache_key] = scores
self._cache_time[cache_key] = datetime.now()
return scores
def invalidate(self, template_id: str = None):
"""Invalidate cache (called when scores are updated)."""
if template_id:
cache_key = f"scores_{template_id}"
self._cache.pop(cache_key, None)
else:
self._cache.clear()
self._cache_time.clear()
```
### Monitoring
```python
# Prometheus metrics for specificity filtering
from prometheus_client import Counter, Histogram, Gauge
# Track template classification
template_classifications = Counter(
'specificity_template_classifications_total',
'Number of questions classified by template',
['template_id']
)
# Track filtering effectiveness
classes_before_filter = Histogram(
'specificity_classes_before_filter',
'Number of classes before specificity filtering'
)
classes_after_filter = Histogram(
'specificity_classes_after_filter',
'Number of classes after specificity filtering'
)
# Track threshold adjustments
current_threshold = Gauge(
'specificity_threshold',
'Current specificity threshold',
['template_id']
)
```
---
## References
- DSPy Documentation: https://dspy-docs.vercel.app/
- DSPy History Module: https://dspy-docs.vercel.app/docs/building-blocks/modules#history
- Project: `apps/archief-assistent/backend/dspy_heritage_rag.py`
- Project: `docs/plan/prompt-query_template_mapping/dspy-compatibility.md`

View file

@ -0,0 +1,434 @@
# Specificity Score System - Prompt/Conversation Templates
## Overview
This document defines the conversation templates used for template-based specificity scoring. Each template represents a common question pattern about heritage institutions.
---
## Template Catalog
### 1. `archive_search` - Archive Discovery
**Description**: Questions focused on finding or learning about archival institutions and their holdings.
**Question Patterns**:
- "What archives are in {location}?"
- "Which archives have {collection_type} collections?"
- "Find archives with records from {time_period}"
- "Are there any {archive_type} archives in {region}?"
**High Relevance Classes** (score ≥ 0.8):
| Class | Score | Rationale |
|-------|-------|-----------|
| Archive | 0.95 | Primary focus |
| RecordSet | 0.90 | Archival holdings |
| Fonds | 0.90 | Archival organization |
| FindingAid | 0.85 | Access to archives |
| Collection | 0.85 | Archive contents |
**Medium Relevance Classes** (score 0.5-0.8):
| Class | Score | Rationale |
|-------|-------|-----------|
| Location | 0.70 | Where archives are |
| GHCID | 0.65 | Institution identifier |
| HeritageCustodian | 0.65 | Parent class |
| CustodianName | 0.60 | Institution naming |
| DigitalPlatform | 0.55 | Online access |
**Low Relevance Classes** (score < 0.5):
| Class | Score | Rationale |
|-------|-------|-----------|
| Museum | 0.20 | Different institution type |
| Gallery | 0.15 | Different institution type |
| PersonProfile | 0.30 | Not primary focus |
| LinkedInConnectionExtraction | 0.05 | Technical extraction |
---
### 2. `museum_search` - Museum Discovery
**Description**: Questions focused on finding museums, exhibitions, and museum collections.
**Question Patterns**:
- "What museums are in {location}?"
- "Find {museum_type} museums"
- "Which museums have {artifact_type} collections?"
- "Are there any open-air museums in {region}?"
**High Relevance Classes** (score ≥ 0.8):
| Class | Score | Rationale |
|-------|-------|-----------|
| Museum | 0.95 | Primary focus |
| Gallery | 0.85 | Often co-located |
| Exhibition | 0.85 | Museum activity |
| Collection | 0.85 | Museum holdings |
| Artifact | 0.80 | Museum objects |
**Medium Relevance Classes** (score 0.5-0.8):
| Class | Score | Rationale |
|-------|-------|-----------|
| Location | 0.70 | Where museums are |
| GHCID | 0.65 | Institution identifier |
| HeritageCustodian | 0.65 | Parent class |
| CustodianName | 0.60 | Institution naming |
| OpeningHours | 0.55 | Visitor information |
**Low Relevance Classes** (score < 0.5):
| Class | Score | Rationale |
|-------|-------|-----------|
| Archive | 0.20 | Different institution type |
| RecordSet | 0.15 | Archival concept |
| PersonProfileExtraction | 0.05 | Technical extraction |
---
### 3. `library_search` - Library Discovery
**Description**: Questions about libraries, catalogs, and bibliographic collections.
**Question Patterns**:
- "What libraries are in {location}?"
- "Find {library_type} libraries"
- "Which libraries have {subject} collections?"
- "Are there any special collections libraries in {region}?"
**High Relevance Classes** (score ≥ 0.8):
| Class | Score | Rationale |
|-------|-------|-----------|
| Library | 0.95 | Primary focus |
| Catalog | 0.90 | Library resource |
| BibliographicCollection | 0.85 | Library holdings |
| Collection | 0.85 | Library contents |
**Medium Relevance Classes** (score 0.5-0.8):
| Class | Score | Rationale |
|-------|-------|-----------|
| Location | 0.70 | Where libraries are |
| GHCID | 0.65 | Institution identifier |
| HeritageCustodian | 0.65 | Parent class |
| DigitalPlatform | 0.60 | Online catalogs |
| Identifier | 0.55 | ISIL codes |
---
### 4. `collection_discovery` - Collection Research
**Description**: Questions about collections, holdings, and what institutions contain.
**Question Patterns**:
- "What collections does {institution} have?"
- "Find institutions with {subject} collections"
- "Which archives have photo collections?"
- "What is in the {collection_name}?"
**High Relevance Classes** (score ≥ 0.8):
| Class | Score | Rationale |
|-------|-------|-----------|
| Collection | 0.95 | Primary focus |
| RecordSet | 0.85 | Collection type |
| Fonds | 0.85 | Archival collection |
| Accession | 0.80 | How items entered |
| Extent | 0.80 | Collection size |
**Medium Relevance Classes** (score 0.5-0.8):
| Class | Score | Rationale |
|-------|-------|-----------|
| Archive | 0.75 | Collection holder |
| Museum | 0.75 | Collection holder |
| Library | 0.75 | Collection holder |
| HeritageCustodian | 0.70 | Collection holder |
| DigitalPlatform | 0.55 | Collection access |
---
### 5. `person_research` - People & Staff
**Description**: Questions about people associated with heritage institutions.
**Question Patterns**:
- "Who is the director of {institution}?"
- "What curators work at {institution}?"
- "Find archivists in {region}"
- "Who founded {institution}?"
**High Relevance Classes** (score ≥ 0.8):
| Class | Score | Rationale |
|-------|-------|-----------|
| PersonProfile | 0.95 | Primary focus |
| Staff | 0.95 | Institution employees |
| Role | 0.90 | Person's position |
| Affiliation | 0.85 | Person-institution link |
| Director | 0.85 | Leadership role |
**Medium Relevance Classes** (score 0.5-0.8):
| Class | Score | Rationale |
|-------|-------|-----------|
| HeritageCustodian | 0.70 | Where people work |
| CustodianName | 0.60 | Institution context |
| ContactPoint | 0.55 | How to reach people |
**Low Relevance Classes** (score < 0.5):
| Class | Score | Rationale |
|-------|-------|-----------|
| Collection | 0.30 | Not person-focused |
| Location | 0.35 | Secondary context |
| LinkedInConnectionExtraction | 0.40 | Source data (higher here) |
---
### 6. `location_browse` - Geographic Exploration
**Description**: Questions focused on location and geographic distribution.
**Question Patterns**:
- "Where is {institution} located?"
- "What heritage institutions are in {city}?"
- "Show me archives in {province}"
- "Find museums near {coordinates}"
**High Relevance Classes** (score ≥ 0.8):
| Class | Score | Rationale |
|-------|-------|-----------|
| Location | 0.95 | Primary focus |
| Address | 0.90 | Physical location |
| GeoCoordinates | 0.90 | Map positioning |
| City | 0.85 | Location level |
| Region | 0.85 | Location level |
**Medium Relevance Classes** (score 0.5-0.8):
| Class | Score | Rationale |
|-------|-------|-----------|
| HeritageCustodian | 0.75 | What's at location |
| Archive | 0.65 | Institution type |
| Museum | 0.65 | Institution type |
| Library | 0.65 | Institution type |
| GHCID | 0.60 | Contains location code |
---
### 7. `identifier_lookup` - Identifier Search
**Description**: Questions about specific identifiers (ISIL, Wikidata, GHCID, etc.).
**Question Patterns**:
- "What is the ISIL code for {institution}?"
- "Find institution with Wikidata ID {id}"
- "Look up GHCID {ghcid}"
- "What VIAF ID does {institution} have?"
**High Relevance Classes** (score ≥ 0.8):
| Class | Score | Rationale |
|-------|-------|-----------|
| Identifier | 0.95 | Primary focus |
| GHCID | 0.95 | Heritage identifier |
| ISIL | 0.90 | Library/archive ID |
| WikidataIdentifier | 0.90 | Linked data ID |
| VIAF | 0.85 | Authority ID |
**Medium Relevance Classes** (score 0.5-0.8):
| Class | Score | Rationale |
|-------|-------|-----------|
| HeritageCustodian | 0.70 | Identifier owner |
| CustodianName | 0.65 | Name resolution |
| ExternalLink | 0.60 | Related URLs |
---
### 8. `organizational_change` - History & Changes
**Description**: Questions about institutional history, mergers, closures, and changes.
**Question Patterns**:
- "When was {institution} founded?"
- "What happened to {institution} after {year}?"
- "Did {institution_a} merge with {institution_b}?"
- "Why did {institution} close?"
**High Relevance Classes** (score ≥ 0.8):
| Class | Score | Rationale |
|-------|-------|-----------|
| ChangeEvent | 0.95 | Primary focus |
| Founding | 0.90 | Origin event |
| Merger | 0.90 | Combination event |
| Closure | 0.90 | End event |
| GHCIDHistoryEntry | 0.85 | ID changes |
**Medium Relevance Classes** (score 0.5-0.8):
| Class | Score | Rationale |
|-------|-------|-----------|
| HeritageCustodian | 0.75 | Subject of change |
| CustodianName | 0.70 | Name changes |
| Provenance | 0.65 | Data history |
| TemporalExtent | 0.60 | Time periods |
---
### 9. `digital_platform` - Online Resources
**Description**: Questions about digital platforms, websites, and online access.
**Question Patterns**:
- "What is the website for {institution}?"
- "Does {institution} have an online catalog?"
- "Find archives with SPARQL endpoints"
- "Which institutions use {platform_name}?"
**High Relevance Classes** (score ≥ 0.8):
| Class | Score | Rationale |
|-------|-------|-----------|
| DigitalPlatform | 0.95 | Primary focus |
| Website | 0.90 | Online presence |
| API | 0.85 | Technical access |
| OnlineCatalog | 0.85 | Digital collection |
| DiscoveryPortal | 0.80 | Aggregator |
**Medium Relevance Classes** (score 0.5-0.8):
| Class | Score | Rationale |
|-------|-------|-----------|
| HeritageCustodian | 0.70 | Platform owner |
| Collection | 0.60 | Online content |
| ContactPoint | 0.55 | Digital contact |
---
### 10. `general_heritage` - General Questions
**Description**: Broad questions without specific focus. Used as fallback.
**Question Patterns**:
- "Tell me about heritage in {region}"
- "What cultural institutions exist?"
- "How is heritage preserved?"
- General exploratory questions
**Scoring Strategy**: Use **general specificity scores** (not template-specific). All classes get their default context-free scores.
**Threshold**: Lower threshold (0.3) to be more inclusive for exploratory queries.
---
## Template Selection Algorithm
```python
def select_template(question: str, classifier_result: dict) -> str:
"""Select the most appropriate template for a question."""
template_id = classifier_result["template_id"]
confidence = classifier_result["confidence"]
# High confidence: use classified template
if confidence >= 0.8:
return template_id
# Medium confidence: check for keyword confirmation
if confidence >= 0.5:
if confirms_template(question, template_id):
return template_id
# Low confidence: fall back to general
return "general_heritage"
def confirms_template(question: str, template_id: str) -> bool:
"""Check if question keywords confirm the template."""
confirmations = {
"archive_search": ["archive", "records", "fonds", "finding aid"],
"museum_search": ["museum", "exhibit", "gallery", "artifact"],
"library_search": ["library", "catalog", "book", "bibliographic"],
"person_research": ["who", "director", "curator", "staff", "archivist"],
"location_browse": ["where", "located", "address", "city", "region"],
"identifier_lookup": ["isil", "wikidata", "ghcid", "viaf", "code", "id"],
"organizational_change": ["when", "founded", "merged", "closed", "history"],
"digital_platform": ["website", "online", "api", "portal", "digital"],
}
keywords = confirmations.get(template_id, [])
question_lower = question.lower()
return any(kw in question_lower for kw in keywords)
```
---
## Score Assignment Guidelines
### General Principles
1. **Primary Focus Classes**: Score 0.90-0.95
- Classes directly answering the template's question type
2. **Supporting Classes**: Score 0.70-0.85
- Classes providing essential context
3. **Contextual Classes**: Score 0.50-0.70
- Classes that may be useful but not central
4. **Low Relevance Classes**: Score 0.20-0.45
- Classes rarely needed for this template
5. **Irrelevant Classes**: Score 0.05-0.15
- Technical/extraction classes not useful for answers
### Cross-Template Consistency
Some classes should maintain consistent relative scores across templates:
| Class | Minimum Score | Rationale |
|-------|---------------|-----------|
| HeritageCustodian | 0.60 | Always relevant as base class |
| CustodianName | 0.55 | Names needed everywhere |
| Location | 0.50 | Geography usually relevant |
| GHCID | 0.50 | Identifiers useful for linking |
| Provenance | 0.40 | Data quality context |
### Template-Specific Adjustments
When a class is the **primary focus** of a template, boost by +0.30 (max 0.95):
```python
def calculate_template_score(class_name: str, template_id: str, general_score: float) -> float:
"""Calculate template-specific score from general score."""
primary_classes = {
"archive_search": ["Archive", "RecordSet", "Fonds"],
"museum_search": ["Museum", "Gallery", "Exhibition"],
"library_search": ["Library", "Catalog"],
"person_research": ["PersonProfile", "Staff", "Role"],
"location_browse": ["Location", "Address", "GeoCoordinates"],
"identifier_lookup": ["Identifier", "GHCID", "ISIL"],
"organizational_change": ["ChangeEvent", "Founding", "Merger"],
"digital_platform": ["DigitalPlatform", "Website", "API"],
}
if class_name in primary_classes.get(template_id, []):
return min(0.95, general_score + 0.30)
# Check for anti-correlation (wrong institution type)
if is_competing_type(class_name, template_id):
return max(0.10, general_score - 0.40)
return general_score
```
---
## Validation Checklist
For each template definition, verify:
- [ ] At least 3 question patterns defined
- [ ] High relevance classes identified (≥3 classes with score ≥0.8)
- [ ] Low relevance classes identified (≥3 classes with score <0.3)
- [ ] Scores sum to reasonable distribution (not all high or all low)
- [ ] Cross-template consistency maintained for universal classes
- [ ] Competing institution types have reduced scores
---
## References
- `docs/plan/prompt-query_template_mapping/competency-questions.md`
- `docs/plan/prompt-query_template_mapping/templates-schema.md`
- `schemas/20251121/linkml/modules/classes/` - All class definitions

View file

@ -0,0 +1,426 @@
# Specificity Score System - External Dependencies
## Overview
This document lists the external dependencies required for the specificity score system. Dependencies are categorized by purpose and include both required and optional packages.
---
## Required Dependencies
### Core Python Packages
These packages are essential for the specificity score system to function:
| Package | Version | Purpose | PyPI |
|---------|---------|---------|------|
| `pydantic` | >=2.0 | Score model validation and structured output | [pydantic](https://pypi.org/project/pydantic/) |
| `pyyaml` | >=6.0 | LinkML schema parsing, template definitions | [PyYAML](https://pypi.org/project/PyYAML/) |
| `dspy-ai` | >=2.6 | Template classification, RAG integration | [dspy-ai](https://pypi.org/project/dspy-ai/) |
| `linkml` | >=1.6 | Schema validation, annotations access | [linkml](https://pypi.org/project/linkml/) |
### Already in Project
These packages are already in `pyproject.toml` and will be available:
```toml
# From pyproject.toml
dependencies = [
"pydantic>=2.0",
"pyyaml>=6.0",
"dspy-ai>=2.6",
"linkml>=1.6",
]
```
---
## Optional Dependencies
### Schema Processing (Recommended)
For batch processing of LinkML schema annotations:
| Package | Version | Purpose | PyPI |
|---------|---------|---------|------|
| `linkml-runtime` | >=1.6 | Runtime schema loading and traversal | [linkml-runtime](https://pypi.org/project/linkml-runtime/) |
| `linkml-validator` | >=0.5 | Validate annotated schemas | [linkml-validator](https://pypi.org/project/linkml-validator/) |
**Usage Example:**
```python
from linkml_runtime import SchemaView
# Load schema and access annotations
schema = SchemaView("schemas/20251121/linkml/01_custodian_name.yaml")
# Get specificity score for a class
archive_class = schema.get_class("Archive")
specificity = archive_class.annotations.get("specificity_score")
rationale = archive_class.annotations.get("specificity_rationale")
print(f"Archive specificity: {specificity.value}")
# Output: Archive specificity: 0.75
```
**Installation:**
```bash
pip install linkml-runtime linkml-validator
```
---
### Caching (Recommended)
For caching computed scores during RAG retrieval:
| Package | Version | Purpose | PyPI |
|---------|---------|---------|------|
| `cachetools` | >=5.0 | In-memory LRU cache for scores | [cachetools](https://pypi.org/project/cachetools/) |
| `diskcache` | >=5.6 | Persistent disk cache for large deployments | [diskcache](https://pypi.org/project/diskcache/) |
**Usage Example:**
```python
from cachetools import TTLCache
from functools import wraps
# Cache with 1-hour TTL, max 1000 entries
_score_cache = TTLCache(maxsize=1000, ttl=3600)
def cached_template_score(class_name: str, template_id: str) -> float:
"""Get template-specific score with caching."""
cache_key = f"{template_id}:{class_name}"
if cache_key in _score_cache:
return _score_cache[cache_key]
score = compute_template_score(class_name, template_id)
_score_cache[cache_key] = score
return score
```
**Installation:**
```bash
pip install cachetools diskcache
```
---
### UML Visualization (Optional)
For generating filtered UML diagrams based on specificity scores:
| Package | Version | Purpose | PyPI |
|---------|---------|---------|------|
| `graphviz` | >=0.20 | DOT graph generation for UML | [graphviz](https://pypi.org/project/graphviz/) |
| `pydot` | >=1.4 | DOT file parsing and manipulation | [pydot](https://pypi.org/project/pydot/) |
| `plantuml` | >=0.3 | PlantUML diagram generation | [plantuml](https://pypi.org/project/plantuml/) |
**Usage Example:**
```python
from graphviz import Digraph
def create_filtered_uml(
schema: SchemaView,
template_id: str,
threshold: float = 0.5
) -> Digraph:
"""Generate UML with classes filtered by specificity threshold."""
dot = Digraph(comment=f"Heritage Ontology - {template_id}")
dot.attr(rankdir="TB", splines="ortho")
for class_name in schema.all_classes():
cls = schema.get_class(class_name)
score = get_template_score(cls, template_id)
if score >= threshold:
# Add node with opacity based on score
opacity = int(score * 255)
color = f"#4A90D9{opacity:02X}"
dot.node(class_name, fillcolor=color, style="filled")
return dot
```
**System Dependency:**
```bash
# macOS
brew install graphviz
# Ubuntu/Debian
sudo apt-get install graphviz
# Windows
choco install graphviz
```
**Installation:**
```bash
pip install graphviz pydot plantuml
```
---
### Monitoring & Observability (Optional)
For production monitoring of score calculations:
| Package | Version | Purpose | PyPI |
|---------|---------|---------|------|
| `prometheus-client` | >=0.17 | Metrics collection for score usage | [prometheus-client](https://pypi.org/project/prometheus-client/) |
| `structlog` | >=23.0 | Structured logging for score decisions | [structlog](https://pypi.org/project/structlog/) |
**Usage Example:**
```python
from prometheus_client import Counter, Histogram
# Track template classification distribution
TEMPLATE_COUNTER = Counter(
"specificity_template_classifications_total",
"Number of questions classified per template",
["template_id"]
)
# Track score computation latency
SCORE_LATENCY = Histogram(
"specificity_score_computation_seconds",
"Time to compute specificity scores",
["score_type"] # "general" or "template"
)
def classify_with_metrics(question: str) -> str:
"""Classify question and record metrics."""
with SCORE_LATENCY.labels(score_type="template").time():
template_id = classify_template(question)
TEMPLATE_COUNTER.labels(template_id=template_id).inc()
return template_id
```
**Installation:**
```bash
pip install prometheus-client structlog
```
---
## External Services
### Required Services
| Service | Endpoint | Purpose |
|---------|----------|---------|
| None | - | Specificity scoring is self-contained |
The specificity score system is **fully self-contained** and does not require external services. All scores are computed from:
1. Static annotations in LinkML schema files
2. In-memory template definitions
3. DSPy classification (optional LLM backend)
### Optional Services
| Service | Endpoint | Purpose |
|---------|----------|---------|
| Qdrant Vector DB | `http://localhost:6333` | RAG integration for score-weighted retrieval |
| Oxigraph SPARQL | `http://localhost:7878/query` | Schema metadata queries |
| LLM API (OpenAI, Z.AI) | Varies | DSPy template classification |
---
## Project Files Required
### Existing Files
These files must exist for the specificity score system to function:
| File | Purpose | Status |
|------|---------|--------|
| `schemas/20251121/linkml/01_custodian_name.yaml` | Main schema with annotations | ✅ Exists |
| `schemas/20251121/linkml/modules/classes/*.yaml` | 304 class YAML files to annotate | ✅ Exists |
| `backend/rag/dspy_heritage_rag.py` | RAG integration point | ✅ Exists |
| `docs/plan/specificity_score/04-prompt-conversation-templates.md` | Template definitions | ✅ Exists |
### New Files to Create
| File | Purpose | Status |
|------|---------|--------|
| `backend/rag/specificity_scorer.py` | Score calculation engine | ❌ To create |
| `backend/rag/template_classifier.py` | DSPy template classifier | ❌ To create |
| `backend/rag/specificity_aware_retriever.py` | Score-weighted retrieval | ❌ To create |
| `data/validation/specificity_scores.json` | Cached general scores | ❌ To create |
| `tests/rag/test_specificity_scorer.py` | Unit tests | ❌ To create |
| `scripts/annotate_specificity_scores.py` | Batch annotation script | ❌ To create |
---
## pyproject.toml Updates
Add optional dependencies for specificity scoring:
```toml
[project.optional-dependencies]
# Core specificity scoring
specificity = [
"linkml-runtime>=1.6",
"cachetools>=5.0",
]
# Full specificity system with visualization
specificity-full = [
"linkml-runtime>=1.6",
"linkml-validator>=0.5",
"cachetools>=5.0",
"diskcache>=5.6",
"graphviz>=0.20",
"pydot>=1.4",
]
# Specificity with monitoring
specificity-monitored = [
"linkml-runtime>=1.6",
"cachetools>=5.0",
"prometheus-client>=0.17",
"structlog>=23.0",
]
```
**Installation:**
```bash
# Minimal specificity support
pip install -e ".[specificity]"
# Full specificity support with visualization
pip install -e ".[specificity-full]"
# Specificity with production monitoring
pip install -e ".[specificity-monitored]"
```
---
## Environment Variables
| Variable | Default | Purpose |
|----------|---------|---------|
| `SPECIFICITY_CACHE_TTL` | `3600` | Cache TTL in seconds |
| `SPECIFICITY_DEFAULT_THRESHOLD` | `0.5` | Default filtering threshold |
| `SPECIFICITY_TEMPLATE_FALLBACK` | `general_heritage` | Fallback template ID |
| `SPECIFICITY_ENABLE_METRICS` | `false` | Enable Prometheus metrics |
| `ZAI_API_TOKEN` | (required for DSPy) | Z.AI API token for classification |
---
## Version Compatibility Matrix
| Python | LinkML | DSPy | Pydantic | Status |
|--------|--------|------|----------|--------|
| 3.11+ | 1.6+ | 2.6+ | 2.0+ | ✅ Supported |
| 3.10 | 1.6+ | 2.6+ | 2.0+ | ✅ Supported |
| 3.9 | 1.5+ | 2.5+ | 2.0+ | ⚠️ Limited |
| <3.9 | - | - | - | Not supported |
---
## Docker Considerations
If deploying in Docker, ensure these are in the Dockerfile:
```dockerfile
# System dependencies for graphviz (if using UML visualization)
RUN apt-get update && apt-get install -y graphviz && rm -rf /var/lib/apt/lists/*
# Python dependencies
RUN pip install --no-cache-dir \
pydantic>=2.0 \
pyyaml>=6.0 \
dspy-ai>=2.6 \
linkml>=1.6 \
linkml-runtime>=1.6 \
cachetools>=5.0
# Optional: graphviz Python bindings
# RUN pip install graphviz>=0.20 pydot>=1.4
```
---
## Dependency Security
All recommended packages are actively maintained and have no known critical CVEs as of 2025-01.
| Package | Last Updated | Security Status |
|---------|--------------|-----------------|
| pydantic | 2024-12 | ✅ No known CVEs |
| linkml | 2024-12 | ✅ No known CVEs |
| linkml-runtime | 2024-12 | ✅ No known CVEs |
| dspy-ai | 2025-01 | ✅ No known CVEs |
| cachetools | 2024-11 | ✅ No known CVEs |
Run security audit:
```bash
pip-audit --requirement requirements.txt
```
---
## Dependency Graph
```
specificity_scorer.py
├── linkml-runtime (schema loading)
│ └── pyyaml
├── pydantic (data models)
├── cachetools (performance)
└── dspy-ai (classification)
└── httpx (LLM API calls)
specificity_aware_retriever.py
├── specificity_scorer.py
├── qdrant-client (vector store)
└── numpy (score calculations)
uml_visualizer.py (optional)
├── graphviz
├── pydot
└── specificity_scorer.py
```
---
## Summary
**Minimum viable installation:**
```bash
pip install pydantic pyyaml linkml linkml-runtime
```
**Recommended installation:**
```bash
pip install pydantic pyyaml linkml linkml-runtime cachetools dspy-ai
```
**Full installation (with visualization and monitoring):**
```bash
pip install pydantic pyyaml linkml linkml-runtime linkml-validator cachetools diskcache dspy-ai graphviz pydot prometheus-client structlog
```
---
## References
- `docs/plan/prompt-query_template_mapping/external-dependencies.md` - Related dependencies
- `docs/plan/specificity_score/03-rag-dspy-integration.md` - DSPy integration details
- `pyproject.toml` - Current project dependencies

View file

@ -0,0 +1,777 @@
# Specificity Score System - UML Visualization Integration
## Overview
This document describes how specificity scores integrate with UML diagram generation to create filtered, readable visualizations of the Heritage Custodian Ontology's 304+ classes.
---
## Problem Statement
### Current UML Challenges
The Heritage Custodian Ontology contains **304+ classes**, making full UML diagrams:
1. **Visually overwhelming** - Too many nodes to comprehend
2. **Difficult to navigate** - No clear entry point or hierarchy
3. **Context-blind** - Shows everything regardless of current task
4. **Slow to render** - Large graphs take seconds to generate
### Solution: Specificity-Based Filtering
Use specificity scores to:
- Filter classes by relevance threshold
- Adjust visual prominence (opacity, size, position)
- Create template-specific focused views
- Generate progressive disclosure diagrams
---
## Filtering Strategies
### Strategy 1: Threshold Filtering
Show only classes above a specificity threshold:
```python
def filter_classes_by_threshold(
schema: SchemaView,
template_id: str,
threshold: float = 0.5
) -> list[str]:
"""Return class names meeting specificity threshold."""
included = []
for class_name in schema.all_classes():
cls = schema.get_class(class_name)
score = get_template_score(cls, template_id)
if score >= threshold:
included.append(class_name)
return included
# Example: archive_search with threshold 0.6
# Returns: ["Archive", "RecordSet", "Fonds", "FindingAid",
# "Collection", "Location", "HeritageCustodian", ...]
```
**Threshold Guidelines:**
| Threshold | Result | Use Case |
|-----------|--------|----------|
| 0.8+ | 5-10 classes | Focused overview, quick reference |
| 0.6+ | 15-30 classes | Detailed task view |
| 0.4+ | 40-60 classes | Comprehensive view |
| 0.2+ | 80-150 classes | Near-complete (excludes technical) |
| 0.0+ | 304 classes | Full ontology (overwhelming) |
---
### Strategy 2: Top-N Filtering
Show the N most relevant classes for a template:
```python
def top_n_classes(
schema: SchemaView,
template_id: str,
n: int = 20
) -> list[str]:
"""Return top N classes by specificity for template."""
class_scores = []
for class_name in schema.all_classes():
cls = schema.get_class(class_name)
score = get_template_score(cls, template_id)
class_scores.append((class_name, score))
# Sort by score descending
class_scores.sort(key=lambda x: x[1], reverse=True)
return [name for name, _ in class_scores[:n]]
# Example: top_n_classes(schema, "person_research", n=10)
# Returns: ["PersonProfile", "Staff", "Role", "Affiliation",
# "Director", "HeritageCustodian", "ContactPoint", ...]
```
---
### Strategy 3: Tier-Based Grouping
Group classes into visual tiers based on score ranges:
```python
from dataclasses import dataclass
from enum import Enum
class VisualTier(Enum):
PRIMARY = "primary" # Score >= 0.8
SECONDARY = "secondary" # Score 0.5-0.8
TERTIARY = "tertiary" # Score 0.3-0.5
BACKGROUND = "background" # Score < 0.3
@dataclass
class TieredClass:
name: str
score: float
tier: VisualTier
def tier_classes(
schema: SchemaView,
template_id: str
) -> dict[VisualTier, list[TieredClass]]:
"""Group classes into visual tiers."""
tiers = {tier: [] for tier in VisualTier}
for class_name in schema.all_classes():
cls = schema.get_class(class_name)
score = get_template_score(cls, template_id)
if score >= 0.8:
tier = VisualTier.PRIMARY
elif score >= 0.5:
tier = VisualTier.SECONDARY
elif score >= 0.3:
tier = VisualTier.TERTIARY
else:
tier = VisualTier.BACKGROUND
tiers[tier].append(TieredClass(class_name, score, tier))
return tiers
```
---
## Visual Styling
### Style 1: Opacity Mapping
Map specificity score to node opacity:
```python
def score_to_opacity(score: float) -> str:
"""Convert score to hex opacity (00-FF)."""
# Score 1.0 -> fully opaque (FF)
# Score 0.0 -> nearly transparent (20)
opacity = int(32 + (score * 223)) # Range: 32-255
return f"{opacity:02X}"
def style_node_by_score(
class_name: str,
score: float,
base_color: str = "#4A90D9"
) -> dict:
"""Generate node styling based on specificity score."""
opacity = score_to_opacity(score)
return {
"fillcolor": f"{base_color}{opacity}",
"style": "filled",
"fontcolor": "#333333" if score > 0.5 else "#888888",
"penwidth": str(1 + score * 2), # 1-3px border
}
```
**Visual Result:**
| Score | Opacity | Appearance |
|-------|---------|------------|
| 0.95 | ~100% | Solid, prominent |
| 0.75 | ~75% | Clear, visible |
| 0.50 | ~50% | Semi-transparent |
| 0.25 | ~25% | Faded, background |
| 0.10 | ~10% | Nearly invisible |
---
### Style 2: Size Mapping
Adjust node size based on importance:
```python
def score_to_size(score: float) -> tuple[float, float]:
"""Convert score to width and height."""
# Base size 1.0, max size 2.5
size = 1.0 + (score * 1.5)
return (size, size * 0.6) # Width, height
def style_node_with_size(
class_name: str,
score: float
) -> dict:
"""Generate node styling with size variation."""
width, height = score_to_size(score)
return {
"width": str(width),
"height": str(height),
"fontsize": str(int(10 + score * 6)), # 10-16pt
}
```
---
### Style 3: Color Gradients
Use color to indicate relevance:
```python
from colorsys import hsv_to_rgb
def score_to_color(score: float) -> str:
"""Map score to color gradient (red -> yellow -> green)."""
# Hue: 0.0 (red) -> 0.33 (green)
hue = score * 0.33
saturation = 0.6
value = 0.9
r, g, b = hsv_to_rgb(hue, saturation, value)
return f"#{int(r*255):02X}{int(g*255):02X}{int(b*255):02X}"
def style_node_with_color(class_name: str, score: float) -> dict:
"""Generate node styling with score-based color."""
return {
"fillcolor": score_to_color(score),
"style": "filled",
}
```
**Color Mapping:**
| Score | Color | Meaning |
|-------|-------|---------|
| 0.9+ | Green | Highly relevant |
| 0.6-0.9 | Yellow-Green | Relevant |
| 0.3-0.6 | Yellow | Somewhat relevant |
| 0.1-0.3 | Orange | Low relevance |
| <0.1 | Red | Not relevant |
---
## Diagram Generation
### Graphviz DOT Generation
```python
from graphviz import Digraph
def generate_filtered_uml(
schema: SchemaView,
template_id: str,
threshold: float = 0.5,
show_edges: bool = True
) -> Digraph:
"""Generate UML diagram filtered by specificity."""
dot = Digraph(
name=f"Heritage Ontology - {template_id}",
comment=f"Classes with specificity >= {threshold}",
)
# Graph attributes
dot.attr(
rankdir="TB", # Top to bottom
splines="ortho",
nodesep="0.5",
ranksep="0.8",
)
# Node defaults
dot.attr("node", shape="record", fontname="Helvetica")
# Get filtered classes
included_classes = set()
for class_name in schema.all_classes():
cls = schema.get_class(class_name)
score = get_template_score(cls, template_id)
if score >= threshold:
included_classes.add(class_name)
# Add node with styling
style = style_node_by_score(class_name, score)
label = create_uml_label(cls)
dot.node(class_name, label=label, **style)
# Add edges (inheritance, relationships)
if show_edges:
for class_name in included_classes:
cls = schema.get_class(class_name)
# Inheritance (is_a)
if cls.is_a and cls.is_a in included_classes:
dot.edge(cls.is_a, class_name, arrowhead="empty")
# Associations (slot ranges)
for slot in cls.slots or []:
slot_def = schema.get_slot(slot)
if slot_def.range and slot_def.range in included_classes:
dot.edge(
class_name,
slot_def.range,
label=slot,
arrowhead="open"
)
return dot
def create_uml_label(cls) -> str:
"""Create UML class label with attributes."""
slots = []
for slot_name in cls.slots or []:
slots.append(f"+ {slot_name}")
slot_str = "\\l".join(slots) if slots else ""
return f"{{{cls.name}|{slot_str}\\l}}"
```
---
### PlantUML Generation
```python
def generate_plantuml(
schema: SchemaView,
template_id: str,
threshold: float = 0.5
) -> str:
"""Generate PlantUML diagram filtered by specificity."""
lines = [
"@startuml",
f"title Heritage Ontology - {template_id}",
"skinparam classAttributeIconSize 0",
"skinparam shadowing false",
"",
]
# Define color scale
lines.append("skinparam class {")
lines.append(" BackgroundColor<<high>> #90EE90")
lines.append(" BackgroundColor<<medium>> #FFFACD")
lines.append(" BackgroundColor<<low>> #FFB6C1")
lines.append("}")
lines.append("")
# Get filtered classes
included_classes = set()
for class_name in schema.all_classes():
cls = schema.get_class(class_name)
score = get_template_score(cls, template_id)
if score >= threshold:
included_classes.add(class_name)
# Determine stereotype
if score >= 0.8:
stereotype = "<<high>>"
elif score >= 0.5:
stereotype = "<<medium>>"
else:
stereotype = "<<low>>"
# Class definition
lines.append(f"class {class_name} {stereotype} {{")
for slot in cls.slots or []:
lines.append(f" +{slot}")
lines.append("}")
lines.append("")
# Add relationships
for class_name in included_classes:
cls = schema.get_class(class_name)
# Inheritance
if cls.is_a and cls.is_a in included_classes:
lines.append(f"{cls.is_a} <|-- {class_name}")
lines.append("@enduml")
return "\n".join(lines)
```
---
## Interactive Features
### Feature 1: Progressive Disclosure
Start with high-threshold view, allow drilling down:
```python
class ProgressiveUMLViewer:
"""UML viewer with progressive disclosure based on specificity."""
def __init__(self, schema: SchemaView, template_id: str):
self.schema = schema
self.template_id = template_id
self.current_threshold = 0.8 # Start focused
def render(self) -> Digraph:
"""Render current view."""
return generate_filtered_uml(
self.schema,
self.template_id,
self.current_threshold
)
def expand(self, step: float = 0.1):
"""Show more classes by lowering threshold."""
self.current_threshold = max(0.1, self.current_threshold - step)
return self.render()
def focus(self, step: float = 0.1):
"""Show fewer classes by raising threshold."""
self.current_threshold = min(0.95, self.current_threshold + step)
return self.render()
def expand_around(self, class_name: str, depth: int = 1):
"""Expand to show neighbors of a specific class."""
# Find classes connected to the given class
neighbors = self._find_neighbors(class_name, depth)
# Temporarily lower threshold for neighbors
# Implementation depends on visualization framework
pass
```
---
### Feature 2: Template Switching
Quick view switching between conversation templates:
```python
class MultiTemplateViewer:
"""UML viewer supporting multiple template perspectives."""
TEMPLATES = [
"archive_search",
"museum_search",
"library_search",
"collection_discovery",
"person_research",
"location_browse",
"identifier_lookup",
"organizational_change",
"digital_platform",
"general_heritage",
]
def __init__(self, schema: SchemaView):
self.schema = schema
self.current_template = "general_heritage"
self.threshold = 0.5
def switch_template(self, template_id: str) -> Digraph:
"""Switch to a different template perspective."""
if template_id not in self.TEMPLATES:
raise ValueError(f"Unknown template: {template_id}")
self.current_template = template_id
return self.render()
def compare_templates(
self,
template_a: str,
template_b: str
) -> tuple[Digraph, Digraph]:
"""Generate side-by-side comparison of two templates."""
return (
generate_filtered_uml(self.schema, template_a, self.threshold),
generate_filtered_uml(self.schema, template_b, self.threshold),
)
```
---
### Feature 3: Hover Information
Add score metadata to tooltips:
```python
def add_tooltip_info(
dot: Digraph,
class_name: str,
cls,
template_id: str
) -> None:
"""Add tooltip with specificity information."""
general_score = get_general_score(cls)
template_score = get_template_score(cls, template_id)
rationale = cls.annotations.get("specificity_rationale", {}).value
tooltip = f"""Class: {class_name}
General Specificity: {general_score:.2f}
{template_id} Specificity: {template_score:.2f}
Rationale: {rationale}"""
dot.node(
class_name,
tooltip=tooltip,
URL=f"#class-{class_name}", # Link to documentation
)
```
---
## Pre-generated Views
### Standard View Set
Generate a set of pre-computed views for common use cases:
```python
STANDARD_VIEWS = {
# Overview views
"overview_core": {
"template": "general_heritage",
"threshold": 0.7,
"description": "Core classes for heritage custodian modeling"
},
"overview_full": {
"template": "general_heritage",
"threshold": 0.3,
"description": "Comprehensive view of all semantic classes"
},
# Task-specific views
"task_archive_research": {
"template": "archive_search",
"threshold": 0.5,
"description": "Classes relevant for archive research"
},
"task_person_lookup": {
"template": "person_research",
"threshold": 0.5,
"description": "Classes for finding people in heritage institutions"
},
"task_collection_discovery": {
"template": "collection_discovery",
"threshold": 0.5,
"description": "Classes for exploring collections"
},
# Technical views
"technical_identifiers": {
"template": "identifier_lookup",
"threshold": 0.6,
"description": "Identifier and linking classes"
},
"technical_platforms": {
"template": "digital_platform",
"threshold": 0.6,
"description": "Digital platform and API classes"
},
}
def generate_all_standard_views(schema: SchemaView, output_dir: Path):
"""Generate all standard views as SVG files."""
for view_id, config in STANDARD_VIEWS.items():
dot = generate_filtered_uml(
schema,
config["template"],
config["threshold"]
)
# Add title and description
dot.attr(label=config["description"])
# Render to SVG
output_path = output_dir / f"uml_{view_id}"
dot.render(output_path, format="svg", cleanup=True)
print(f"Generated: {output_path}.svg")
```
---
## Integration with Frontend
### API Endpoint for Dynamic Diagrams
```python
from fastapi import FastAPI, Query
from fastapi.responses import Response
app = FastAPI()
@app.get("/api/uml/filtered")
async def get_filtered_uml(
template: str = Query("general_heritage"),
threshold: float = Query(0.5, ge=0.0, le=1.0),
format: str = Query("svg", regex="^(svg|png|dot)$"),
):
"""Generate filtered UML diagram."""
schema = load_schema()
dot = generate_filtered_uml(schema, template, threshold)
if format == "dot":
return Response(
content=dot.source,
media_type="text/plain"
)
else:
rendered = dot.pipe(format=format)
media_type = "image/svg+xml" if format == "svg" else "image/png"
return Response(content=rendered, media_type=media_type)
@app.get("/api/uml/templates")
async def list_available_templates():
"""List available template perspectives."""
return {
"templates": [
{"id": "archive_search", "name": "Archive Search"},
{"id": "museum_search", "name": "Museum Search"},
{"id": "library_search", "name": "Library Search"},
{"id": "collection_discovery", "name": "Collection Discovery"},
{"id": "person_research", "name": "Person Research"},
{"id": "location_browse", "name": "Location Browse"},
{"id": "identifier_lookup", "name": "Identifier Lookup"},
{"id": "organizational_change", "name": "Organizational Change"},
{"id": "digital_platform", "name": "Digital Platform"},
{"id": "general_heritage", "name": "General (Default)"},
]
}
```
### React Component Example
```tsx
// components/FilteredUMLViewer.tsx
import { useState } from 'react';
interface Props {
initialTemplate?: string;
initialThreshold?: number;
}
export function FilteredUMLViewer({
initialTemplate = 'general_heritage',
initialThreshold = 0.5,
}: Props) {
const [template, setTemplate] = useState(initialTemplate);
const [threshold, setThreshold] = useState(initialThreshold);
const umlUrl = `/api/uml/filtered?template=${template}&threshold=${threshold}&format=svg`;
return (
<div className="uml-viewer">
<div className="controls">
<select
value={template}
onChange={(e) => setTemplate(e.target.value)}
>
<option value="archive_search">Archive Search</option>
<option value="museum_search">Museum Search</option>
<option value="person_research">Person Research</option>
<option value="general_heritage">General</option>
{/* ... more templates */}
</select>
<input
type="range"
min="0"
max="1"
step="0.1"
value={threshold}
onChange={(e) => setThreshold(parseFloat(e.target.value))}
/>
<span>Threshold: {threshold.toFixed(1)}</span>
</div>
<div className="diagram">
<img src={umlUrl} alt={`UML diagram for ${template}`} />
</div>
</div>
);
}
```
---
## Performance Considerations
### Caching Strategy
```python
from functools import lru_cache
from hashlib import md5
@lru_cache(maxsize=100)
def get_cached_uml(
template_id: str,
threshold: float,
format: str
) -> bytes:
"""Cache rendered UML diagrams."""
schema = load_schema()
dot = generate_filtered_uml(schema, template_id, threshold)
return dot.pipe(format=format)
def invalidate_uml_cache():
"""Clear cache when schema changes."""
get_cached_uml.cache_clear()
```
### Pre-rendering for Production
```bash
# scripts/prerender_uml_views.sh
#!/bin/bash
# Pre-render all standard UML views for production
TEMPLATES="archive_search museum_search library_search collection_discovery person_research location_browse identifier_lookup organizational_change digital_platform general_heritage"
THRESHOLDS="0.3 0.5 0.7 0.9"
for template in $TEMPLATES; do
for threshold in $THRESHOLDS; do
echo "Rendering: $template @ $threshold"
python scripts/render_uml.py \
--template "$template" \
--threshold "$threshold" \
--output "static/uml/${template}_${threshold}.svg"
done
done
echo "Pre-rendering complete!"
```
---
## Validation Checklist
- [ ] All templates have corresponding view generation
- [ ] Threshold range validated (0.0-1.0)
- [ ] Edge cases handled (no classes meet threshold)
- [ ] Large diagrams render within timeout
- [ ] SVG output is valid XML
- [ ] Interactive features work in target browsers
- [ ] Cache invalidation triggers on schema change
- [ ] Standard views regenerated on deployment
---
## References
- `docs/plan/specificity_score/04-prompt-conversation-templates.md` - Template definitions
- `docs/plan/specificity_score/05-dependencies.md` - Visualization dependencies
- `frontend/src/components/` - Existing frontend components
- `scripts/generate_uml.py` - Current UML generation script

View file

@ -0,0 +1,220 @@
# Specificity Score System for Heritage Custodian Ontology
## Overview
This plan documents the implementation of a **specificity scoring system** for all classes in the GLAM Heritage Custodian Ontology. The system assigns numerical scores (0.0-1.0) to each class indicating:
1. **General Specificity Score**: Context-free relevance indicating whether a class is highly specific or of general relevance
2. **Template-Based Specificity Scores**: Multiple scores keyed by prompt/conversation template IDs indicating the likelihood of a class being relevant for follow-up questions
## Problem Statement
The Heritage Custodian Ontology contains **304+ classes** across multiple modules. When users interact with the RAG system or view UML visualizations, they face information overload:
1. **UML Overwhelm**: Visualizations showing all classes are too dense to comprehend
2. **RAG Retrieval Noise**: Follow-up questions retrieve irrelevant classes
3. **No Context Sensitivity**: Same classes shown regardless of conversation topic
4. **Missing Relevance Signals**: No way to filter or highlight based on topic
### Example Scenario
**Initial Question**: "What archives are in Drenthe?"
**Current RAG Response**: Returns 50+ classes including:
- `CustodianName` (highly relevant for follow-up)
- `Location` (highly relevant)
- `WebObservation` (low relevance for this context)
- `PersonProfileExtraction` (low relevance for this context)
**Desired Behavior**: Use specificity scores to prioritize `Archive`, `Location`, `GHCID`, `Collection` for follow-up questions.
## Solution: Dual-Layer Specificity Scoring
### Layer 1: General Specificity Score
A single **context-free score** (0.0-1.0) stored as a LinkML annotation on each class:
| Score Range | Interpretation | Examples |
|-------------|----------------|----------|
| 0.9-1.0 | Highly specific, rarely needed | `LinkedInConnectionExtraction`, `GHCIDHistoryEntry` |
| 0.7-0.9 | Domain-specific | `Archive`, `Museum`, `Collection` |
| 0.5-0.7 | Moderately general | `DigitalPlatform`, `ChangeEvent` |
| 0.3-0.5 | General utility | `Location`, `Identifier`, `Provenance` |
| 0.0-0.3 | Core/foundational | `HeritageCustodian`, `CustodianName` |
**Lower scores = more generally relevant (always useful)**
**Higher scores = more specific (only useful in specialized contexts)**
### Layer 2: Template-Based Specificity Scores
Multiple scores per class, keyed by **conversation template IDs**:
```yaml
# Example: Archive class
annotations:
specificity_score: 0.75 # General score
template_specificity:
archive_search: 0.95 # Highly relevant for archive queries
museum_search: 0.10 # Not relevant for museum queries
collection_discovery: 0.70 # Moderately relevant
person_research: 0.20 # Low relevance
location_browse: 0.60 # Somewhat relevant
```
## Architecture
```
User Question
|
v
+----------------------+
| Template Classifier | <-- DSPy Signature identifies conversation template
+----------------------+
|
v
+----------------------+
| Specificity Lookup | <-- Retrieves template-specific scores for all classes
+----------------------+
|
v
+----------------------+
| Class Filter/Ranker | <-- Filters classes below threshold, ranks by score
+----------------------+
|
v
+----------------------+
| RAG Context Builder | <-- Builds context from high-specificity classes
+----------------------+
|
v
+----------------------+
| UML View Renderer | <-- Filters/highlights UML based on specificity
+----------------------+
```
## Documentation Index
| Document | Description |
|----------|-------------|
| [00-master-checklist.md](00-master-checklist.md) | Implementation checklist with phases and tasks |
| [01-design-patterns.md](01-design-patterns.md) | Software patterns (Strategy, Decorator, Observer) |
| [02-tdd.md](02-tdd.md) | Test-driven development approach with test cases |
| [03-rag-dspy-integration.md](03-rag-dspy-integration.md) | DSPy integration for template classification |
| [04-prompt-conversation-templates.md](04-prompt-conversation-templates.md) | Template definitions and scoring guidelines |
| [05-dependencies.md](05-dependencies.md) | Required libraries and services |
| [06-uml-visualization.md](06-uml-visualization.md) | UML filtering and highlighting based on scores |
## Quick Start
### 1. Schema Annotation Format
```yaml
# schemas/20251121/linkml/modules/classes/Archive.yaml
classes:
Archive:
is_a: HeritageCustodian
class_uri: hc:Archive
description: An archive holding historical records and documents
annotations:
# General specificity score (context-free)
specificity_score: 0.75
specificity_rationale: >-
Domain-specific class for archival institutions. High relevance
for record management, genealogy, and historical research queries.
# Template-based specificity scores
template_specificity:
archive_search: 0.95
museum_search: 0.10
library_search: 0.30
collection_discovery: 0.70
person_research: 0.40
location_browse: 0.60
identifier_lookup: 0.50
organizational_change: 0.65
```
### 2. Usage in RAG Pipeline
```python
# 1. Classify user question into template
template_id = classifier.classify("Which archives in Drenthe have photo collections?")
# -> "archive_search"
# 2. Retrieve template-specific scores for all classes
scores = specificity_lookup.get_scores(template_id)
# -> {"Archive": 0.95, "Collection": 0.85, "Location": 0.80, ...}
# 3. Filter classes above threshold
relevant_classes = [cls for cls, score in scores.items() if score > 0.5]
# -> ["Archive", "Collection", "Location", "GHCID", "CustodianName"]
# 4. Build RAG context with relevant classes only
context = build_context(relevant_classes)
```
### 3. Usage in UML Visualization
```typescript
// Filter nodes by specificity for cleaner visualization
const visibleNodes = nodes.filter(node => {
const score = getSpecificityScore(node.class, currentTemplate);
return score >= specificityThreshold;
});
// Or highlight by specificity (opacity/size based on score)
nodes.forEach(node => {
const score = getSpecificityScore(node.class, currentTemplate);
node.opacity = 0.3 + (score * 0.7); // 0.3-1.0 opacity range
node.radius = 10 + (score * 20); // 10-30 radius range
});
```
## Scope
### In Scope
- **304 class files** in `schemas/20251121/linkml/modules/classes/`
- General specificity score (0.0-1.0) for each class
- Template-based scores for 10-15 conversation templates
- RAG integration for class filtering
- UML visualization filtering/highlighting
- Validation tooling
### Out of Scope
- Slot-level specificity scores (future enhancement)
- Dynamic score learning (future ML enhancement)
- User preference customization (future feature)
## Key Metrics
| Metric | Current | Target |
|--------|---------|--------|
| Classes with specificity scores | 0 | 304 |
| Conversation templates defined | 0 | 10-15 |
| RAG retrieval precision | Unknown | +20% improvement |
| UML node count (filtered view) | 304 | <50 per template |
| Follow-up question relevance | Unknown | >80% precision |
## Next Steps After Planning
1. **Define conversation templates** (Task 4) - Identify 10-15 common query patterns
2. **Score foundational classes** - Start with core classes (HeritageCustodian, Location, etc.)
3. **Build scoring tool** - Create script to add annotations to all 304 classes
4. **Integrate with RAG** - Modify DSPy pipeline to use scores
5. **Integrate with UML** - Add filtering/highlighting to frontend
6. **Validate with users** - Test retrieval quality improvements
## References
- AGENTS.md - Rule 37: Specificity Score Convention
- `.opencode/rules/specificity-score-convention.md` - Full scoring rules
- `schemas/20251121/linkml/` - Target schema files
- `docs/plan/prompt-query_template_mapping/` - Related template-based query system
---
**Version**: 0.1.0
**Last Updated**: 2025-01-04
**Status**: Planning Phase

View file

@ -1,5 +1,5 @@
{
"generated": "2026-01-04T12:04:33.319Z",
"generated": "2026-01-04T22:18:27.627Z",
"version": "1.0.0",
"categories": [
{
@ -1989,6 +1989,11 @@
"path": "modules/slots/appellations.yaml",
"category": "slots"
},
{
"name": "approval_date",
"path": "modules/slots/approval_date.yaml",
"category": "slots"
},
{
"name": "archived_at",
"path": "modules/slots/archived_at.yaml",
@ -1999,6 +2004,11 @@
"path": "modules/slots/arrangement_system.yaml",
"category": "slots"
},
{
"name": "authentication_required",
"path": "modules/slots/authentication_required.yaml",
"category": "slots"
},
{
"name": "auxiliary_places",
"path": "modules/slots/auxiliary_places.yaml",
@ -2039,6 +2049,11 @@
"path": "modules/slots/canonical_value.yaml",
"category": "slots"
},
{
"name": "capacity_items",
"path": "modules/slots/capacity_items.yaml",
"category": "slots"
},
{
"name": "cataloging_standard",
"path": "modules/slots/cataloging_standard.yaml",
@ -2139,6 +2154,11 @@
"path": "modules/slots/conflict_status.yaml",
"category": "slots"
},
{
"name": "conservation_lab",
"path": "modules/slots/conservation_lab.yaml",
"category": "slots"
},
{
"name": "contact",
"path": "modules/slots/contact.yaml",
@ -2159,6 +2179,11 @@
"path": "modules/slots/content_hash.yaml",
"category": "slots"
},
{
"name": "cost_usd",
"path": "modules/slots/cost_usd.yaml",
"category": "slots"
},
{
"name": "country",
"path": "modules/slots/country.yaml",
@ -2234,6 +2259,11 @@
"path": "modules/slots/defined_by_standard.yaml",
"category": "slots"
},
{
"name": "deliverables",
"path": "modules/slots/deliverables.yaml",
"category": "slots"
},
{
"name": "derived_from_entity",
"path": "modules/slots/derived_from_entity.yaml",
@ -2329,6 +2359,11 @@
"path": "modules/slots/event_description.yaml",
"category": "slots"
},
{
"name": "event_id",
"path": "modules/slots/event_id.yaml",
"category": "slots"
},
{
"name": "event_type",
"path": "modules/slots/event_type.yaml",
@ -2399,6 +2434,11 @@
"path": "modules/slots/feeds_portal.yaml",
"category": "slots"
},
{
"name": "follow_up_date",
"path": "modules/slots/follow_up_date.yaml",
"category": "slots"
},
{
"name": "funding_source",
"path": "modules/slots/funding_source.yaml",
@ -2724,6 +2764,11 @@
"path": "modules/slots/oai_pmh_endpoint.yaml",
"category": "slots"
},
{
"name": "object_ref",
"path": "modules/slots/object_ref.yaml",
"category": "slots"
},
{
"name": "observation_context",
"path": "modules/slots/observation_context.yaml",
@ -2894,6 +2939,16 @@
"path": "modules/slots/preservation_level.yaml",
"category": "slots"
},
{
"name": "price",
"path": "modules/slots/price.yaml",
"category": "slots"
},
{
"name": "price_currency",
"path": "modules/slots/price_currency.yaml",
"category": "slots"
},
{
"name": "primary_register",
"path": "modules/slots/primary_register.yaml",
@ -2904,11 +2959,21 @@
"path": "modules/slots/pronouns.yaml",
"category": "slots"
},
{
"name": "protocol",
"path": "modules/slots/protocol.yaml",
"category": "slots"
},
{
"name": "provenance_note",
"path": "modules/slots/provenance_note.yaml",
"category": "slots"
},
{
"name": "provenance_text",
"path": "modules/slots/provenance_text.yaml",
"category": "slots"
},
{
"name": "publication_date",
"path": "modules/slots/publication_date.yaml",
@ -2924,6 +2989,11 @@
"path": "modules/slots/reconstruction_method.yaml",
"category": "slots"
},
{
"name": "record_type",
"path": "modules/slots/record_type.yaml",
"category": "slots"
},
{
"name": "refers_to_custodian",
"path": "modules/slots/refers_to_custodian.yaml",
@ -2954,6 +3024,11 @@
"path": "modules/slots/religion.yaml",
"category": "slots"
},
{
"name": "response_formats",
"path": "modules/slots/response_formats.yaml",
"category": "slots"
},
{
"name": "responsible_agent",
"path": "modules/slots/responsible_agent.yaml",
@ -3109,6 +3184,11 @@
"path": "modules/slots/started_at_time.yaml",
"category": "slots"
},
{
"name": "status",
"path": "modules/slots/status.yaml",
"category": "slots"
},
{
"name": "storage_location",
"path": "modules/slots/storage_location.yaml",

View file

@ -16,6 +16,7 @@ imports:
- ./OrganizationalStructure
- ./ReconstructedEntity
- ../slots/revision_date
- ../slots/approval_date
prefixes:
linkml: https://w3id.org/linkml/
@ -647,9 +648,7 @@ slots:
description: Endowment draw amount
range: decimal
approval_date:
description: Date budget was approved
range: date
# NOTE: approval_date imported from ../slots/approval_date.yaml
approved_by:
description: Authority that approved budget

View file

@ -11,7 +11,9 @@ imports:
- ../enums/ConflictStatusEnum
- ./TimeSpan
- ../slots/description
- ../slots/date
# NOTE: ../slots/date contains 'date_value' slot (renamed to avoid type/slot collision)
# Using local 'date' attribute with slot_usage instead
- ../slots/status
prefixes:
linkml: https://w3id.org/linkml/
@ -45,14 +47,14 @@ classes:
**DATA FLOW**:
1. Source documents (reports, news) → `conflict_status` extraction
2. `conflict_status.date` → `time_of_destruction.begin_of_the_end`
2. `conflict_status.destruction_date` → `time_of_destruction.begin_of_the_end`
3. Frontend displays both in CustodianTimeline component
**EXAMPLE - Gaza Institution**:
```yaml
conflict_status:
status: destroyed
date: "2023-12-08"
destruction_date: "2023-12-08"
reported_date: "2024-01-15"
description: "Library destroyed by Israeli airstrike during Gaza conflict."
is_rebuilding: false
@ -70,15 +72,10 @@ classes:
The causing event is documented in OrganizationalChangeEvent.
mixins: []
slots:
- status
- date
- reported_date
- description
- is_rebuilding
- sources
slot_usage:
# Using attributes instead of slots to define local properties
# This avoids needing separate slot files for class-specific properties
attributes:
status:
slot_uri: hc:conflictStatusValue
range: ConflictStatusEnum
@ -92,7 +89,7 @@ classes:
- value: "damaged"
description: "Institution significantly damaged but recoverable"
date:
destruction_date:
slot_uri: crm:P4_has_time-span
range: date
description: |
@ -101,18 +98,23 @@ classes:
For gradual destruction, use start of period.
**Note**: For fuzzy temporal bounds, use `time_of_destruction` (TimeSpan).
**Renamed**: Was 'date', renamed to 'destruction_date' to avoid collision
with built-in 'date' type.
examples:
- value: "2023-12-08"
description: "Exact date of airstrike"
- value: "2023-10-07"
description: "Start of siege period"
aliases:
- date
reported_date:
slot_uri: prov:generatedAtTime
range: date
description: |
Date when the destruction/damage was reported or documented.
May differ from `date` when reports are delayed.
May differ from `destruction_date` when reports are delayed.
Important for provenance tracking.
examples:
- value: "2024-01-15"
@ -173,9 +175,8 @@ classes:
- https://github.com/nde-lab/glam/blob/main/scripts/convert_palestinian_to_custodian.py
slots:
status:
description: Conflict/disaster impact status value
range: ConflictStatusEnum
# NOTE: status imported from ../slots/status.yaml
# Range overridden in slot_usage to ConflictStatusEnum
# NOTE: date imported from ../slots/date.yaml

View file

@ -26,7 +26,9 @@ classes:
ConnectionNetwork:
class_uri: schema:ItemList
tree_root: true
# NOTE: tree_root: true removed to fix duplicate tree_root warning.
# Container.yaml is the single tree_root for the schema.
# ConnectionNetwork instances can be validated standalone with -C ConnectionNetwork flag.
description: |
Collection of LinkedIn network connections with source metadata.
@ -102,7 +104,7 @@ classes:
inlined: true
comments:
- "Root class for connection network JSON files (tree_root: true)"
- "Root class for connection network JSON files (validated with -C ConnectionNetwork)"
- "Per AGENTS.md Rule 15: ALL connections must be fully registered"
- "Enables heritage sector network analysis"
- "File naming: {linkedin-slug}_connections_{timestamp}.json"

View file

@ -32,6 +32,11 @@ imports:
- ../metadata
- ./TimeSpan
- ../enums/ConservationStatusEnum
- ../slots/record_type
- ../slots/conservation_lab
- ../slots/follow_up_date
- ../slots/funding_source
- ../slots/object_ref
default_prefix: hc
@ -592,15 +597,9 @@ slots:
range: uriorcurie
slot_uri: dcterms:identifier
object_ref:
description: Reference to the object this record documents
range: uriorcurie
slot_uri: crm:P140_assigned_attribute_to
# NOTE: object_ref imported from ../slots/object_ref.yaml
record_type:
description: Type of conservation record
range: string
slot_uri: dcterms:type
# NOTE: record_type imported from ../slots/record_type.yaml
record_date:
description: Date of assessment, treatment, or examination
@ -649,10 +648,7 @@ slots:
range: string
slot_uri: schema:affiliation
conservation_lab:
description: Conservation laboratory location
range: string
slot_uri: schema:location
# NOTE: conservation_lab imported from ../slots/conservation_lab.yaml
materials_used:
description: Materials and supplies used in treatment
@ -699,9 +695,7 @@ slots:
multivalued: true
slot_uri: skos:note
follow_up_date:
description: Date for recommended follow-up
range: date
# NOTE: follow_up_date imported from ../slots/follow_up_date.yaml
related_loan:
description: Associated loan record
@ -717,10 +711,7 @@ slots:
range: string
slot_uri: schema:priceCurrency
funding_source:
description: Source of funding for conservation
range: string
slot_uri: schema:funder
# NOTE: funding_source imported from ../slots/funding_source.yaml
conservation_notes:
description: Additional notes

View file

@ -40,6 +40,12 @@ imports:
- ./PersonObservation
- ../enums/CurationActivityTypeEnum
- ../slots/notes
- ../slots/activity_type
- ../slots/start_date
- ../slots/end_date
- ../slots/deliverables
- ../slots/funding_source
- ../slots/status
classes:
CurationActivity:
@ -690,9 +696,8 @@ slots:
description: Human-readable name for this activity
range: string
activity_type:
description: Classification from CurationActivityTypeEnum
range: CurationActivityTypeEnum
# NOTE: activity_type imported from ../slots/activity_type.yaml
# Range overridden in slot_usage to CurationActivityTypeEnum
activity_description:
description: Detailed narrative description of the activity
@ -719,15 +724,9 @@ slots:
range: TimeSpan
slot_uri: crm:P4_has_time-span
start_date:
description: Start date of this activity
range: date
slot_uri: schema:startDate
# NOTE: start_date imported from ../slots/start_date.yaml
end_date:
description: End date of this activity
range: date
slot_uri: schema:endDate
# NOTE: end_date imported from ../slots/end_date.yaml
is_recurring:
description: Whether this activity recurs on a regular schedule
@ -763,15 +762,9 @@ slots:
multivalued: true
slot_uri: prov:generated
deliverables:
description: URLs or references to deliverable documents
range: uri
multivalued: true
# NOTE: deliverables imported from ../slots/deliverables.yaml
funding_source:
description: Source of funding for this activity
range: string
slot_uri: schema:funder
# NOTE: funding_source imported from ../slots/funding_source.yaml
budget:
description: Budget allocated for this activity
@ -792,10 +785,7 @@ slots:
range: CurationActivity
slot_uri: prov:informed
status:
description: Current status of this activity
range: string
slot_uri: schema:eventStatus
# NOTE: status imported from ../slots/status.yaml
priority:
description: Priority level for this activity

View file

@ -15,6 +15,7 @@ imports:
- ./OrganizationalStructure
- ./DigitalPlatform
- ./ReconstructedEntity
- ../slots/record_type
prefixes:
linkml: https://w3id.org/linkml/
@ -644,9 +645,7 @@ slots:
description: Description of administrative records
range: string
record_type:
description: Types of records in system
range: string
# NOTE: record_type imported from ../slots/record_type.yaml
creating_function:
description: Business function generating records

View file

@ -30,11 +30,18 @@ imports:
- linkml:types
- ../metadata
- ./DataServiceEndpointType
- ../slots/protocol
- ../slots/response_formats
- ../slots/authentication_required
classes:
DataServiceEndpoint:
abstract: true
class_uri: dcat:DataService
slots:
- protocol
- response_formats
- authentication_required
description: |
Abstract base class for API service endpoints exposed by heritage digital platforms.
@ -158,50 +165,9 @@ classes:
- "https://www.nationaalarchief.nl/onderzoeken/oai-pmh?verb=Identify"
range: uri
protocol:
slot_uri: dcterms:conformsTo
description: |
Protocol or standard the endpoint implements.
Values from DataServiceProtocolEnum:
- OAI_PMH: Open Archives Initiative Protocol for Metadata Harvesting
- REST: RESTful HTTP API
- SOAP: SOAP web services
- GRAPHQL: GraphQL API
- SPARQL: SPARQL endpoint
- IIIF_IMAGE: IIIF Image API
- IIIF_PRESENTATION: IIIF Presentation API
- IIP: Internet Imaging Protocol
- ZOOMIFY: Zoomify tile protocol
- SRU: Search/Retrieve via URL
range: DataServiceProtocolEnum
required: true
response_formats:
slot_uri: dcterms:format
description: |
MIME types of response formats supported by this endpoint.
Examples:
- ["application/json"]
- ["application/xml", "text/xml"]
- ["image/jpeg", "image/png", "image/tiff"]
- ["application/ld+json", "text/turtle"]
range: string
multivalued: true
authentication_required:
slot_uri: schema:authenticationType
description: |
Whether authentication is required to access this endpoint.
Values:
- true: API key, OAuth, or other authentication required
- false: Public/anonymous access allowed
- null: Unknown
If true, see authentication_method for details.
range: boolean
# NOTE: protocol imported from ../slots/protocol.yaml
# NOTE: response_formats imported from ../slots/response_formats.yaml
# NOTE: authentication_required imported from ../slots/authentication_required.yaml
authentication_method:
slot_uri: schema:potentialAction

View file

@ -218,7 +218,7 @@ slots:
description: |
Wikidata entity ID (Q-number) that maps to this platform type.
Provides semantic alignment with Wikidata knowledge graph.
range: uriorcurie
range: string
slot_uri: skos:exactMatch
# NOTE: typical_technical_features imported from ../slots/typical_technical_features.yaml

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