From 01b9d775666ddeafc624574d7a199e64191fbafb Mon Sep 17 00:00:00 2001 From: kempersc Date: Sat, 10 Jan 2026 12:57:03 +0100 Subject: [PATCH] feat(archief-assistent): add ontology-driven types vocabulary for cache segmentation Add LinkML-derived vocabulary for semantic cache entity extraction (Rule 46): - types-vocab.json: 10,142 lines of institution type vocabulary from LinkML - 19 GLAMORCUBESFIXPHDNT type codes with Dutch/English/German/French labels - Includes subtypes (kunstmuseum, rijksmuseum, streekarchief, etc.) - Extracted from CustodianType.yaml and CustodianTypes.yaml - types-vocabulary.ts: TypeScript module for entity extraction - Exports INSTITUTION_TYPES with regex patterns per type code - Replaces hardcoded patterns with schema-derived vocabulary - Supports multilingual matching - Rule 46 documentation (.opencode/rules/) - Specifies vocabulary extraction workflow - Defines cache key generation algorithm - Migration path from hardcoded patterns --- .../ontology-driven-cache-segmentation.md | 503 + .../archief-assistent/public/types-vocab.json | 10142 ++++++++++++++++ .../src/lib/types-vocabulary.ts | 432 + 3 files changed, 11077 insertions(+) create mode 100644 .opencode/rules/ontology-driven-cache-segmentation.md create mode 100644 apps/archief-assistent/public/types-vocab.json create mode 100644 apps/archief-assistent/src/lib/types-vocabulary.ts diff --git a/.opencode/rules/ontology-driven-cache-segmentation.md b/.opencode/rules/ontology-driven-cache-segmentation.md new file mode 100644 index 0000000000..7a49f677d9 --- /dev/null +++ b/.opencode/rules/ontology-driven-cache-segmentation.md @@ -0,0 +1,503 @@ +# Rule 46: Ontology-Driven Cache Segmentation + +🚨 **CRITICAL**: The semantic cache MUST use vocabulary derived from LinkML `*Type.yaml` and `*Types.yaml` schema files to extract entities for cache key generation. Hardcoded regex patterns are deprecated. + +## Problem Statement + +The ArchiefAssistent semantic cache prevents geographic false positives using entity extraction: + +``` +Query: "Hoeveel musea in Amsterdam?" +Cached: "Hoeveel musea in Noord-Holland?" +Result: BLOCKED (location mismatch) βœ… +``` + +However, the current implementation uses **hardcoded regex patterns**: + +```typescript +// DEPRECATED: Hardcoded patterns in semantic-cache.ts +const INSTITUTION_PATTERNS: Record = { + M: /\b(muse(um|a|ums?)|musea)/i, + A: /\b(archie[fv]en?|archives?|archief)/i, + // ... 19 patterns to maintain manually +}; +``` + +**Problems with hardcoded patterns**: +1. **Maintenance burden** - Every new institution type requires code changes +2. **Missing subtypes** - "kunstmuseum" vs "museum" should cache separately +3. **No multilingual support** - Only Dutch/English, misses German/French labels +4. **Duplication** - Same vocabulary exists in LinkML schemas +5. **No record type awareness** - "burgerlijke stand" queries mixed with general archive queries + +## Solution: Schema-Derived Vocabulary + +The LinkML schema already contains rich vocabulary: + +| Schema File | Content | Cache Utility | +|-------------|---------|---------------| +| `CustodianType.yaml` | 19 top-level types | Primary segmentation (M/A/L/G...) | +| `MuseumType.yaml` | 187+ museum subtypes | Subtype segmentation | +| `ArchiveOrganizationType.yaml` | 144+ archive subtypes | Subtype segmentation | +| `*RecordSetTypes.yaml` | Record type taxonomies | Finding aids specificity | + +### Vocabulary Sources in Schema + +1. **`type_label`** - Multilingual labels via `skos:prefLabel` +2. **`structured_aliases`** - Language-tagged alternative names +3. **`keywords`** - Search terms for entity recognition +4. **`wikidata_entity`** - Linked Data identifiers + +## Architecture + +### Overview: Two-Tier Embedding Hierarchy + +The system uses a **hierarchical embedding approach** for fast semantic routing: + +1. **Tier 1: Types File Embeddings** - Which category? (Museum vs Archive vs Library) +2. **Tier 2: Individual Type Embeddings** - Which specific type? (ArtMuseum vs NaturalHistoryMuseum) + +``` +β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β” +β”‚ BUILD TIME: Extract vocabulary + generate embeddings β”‚ +β”‚ β”‚ +β”‚ schemas/20251121/linkml/modules/classes/*Type.yaml β”‚ +β”‚ schemas/20251121/linkml/modules/classes/*Types.yaml β”‚ +β”‚ ↓ β”‚ +β”‚ scripts/extract-types-vocab.ts β”‚ +β”‚ ↓ β”‚ +β”‚ β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β” β”‚ +β”‚ β”‚ types-vocab.json β”‚ β”‚ +β”‚ β”‚ β”œβ”€β”€ tier1Embeddings: { MuseumType: [...], ArchiveType: [...] } β”‚ β”‚ +β”‚ β”‚ β”œβ”€β”€ tier2Embeddings: { ArtMuseum: [...], MunicipalArchive: [...]}β”‚ β”‚ +β”‚ β”‚ └── termLog: { "kunstmuseum": { type: "M", subtype: "ART_MUSEUM"}β”‚ β”‚ +β”‚ β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜ β”‚ +β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜ + β”‚ + β–Ό (loaded at runtime) +β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β” +β”‚ RUNTIME: Two-Tier Semantic Routing β”‚ +β”‚ β”‚ +β”‚ Query: "Hoeveel gemeentearchieven in Amsterdam?" β”‚ +β”‚ ↓ β”‚ +β”‚ β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β” β”‚ +β”‚ β”‚ TIER 1: Types File Selection β”‚ β”‚ +β”‚ β”‚ Query embedding vs Tier1 embeddings (19 categories) β”‚ β”‚ +β”‚ β”‚ Result: ArchiveOrganizationType (similarity: 0.89) β”‚ β”‚ +β”‚ β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜ β”‚ +β”‚ ↓ β”‚ +β”‚ β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β” β”‚ +β”‚ β”‚ TIER 2: Specific Type Selection β”‚ β”‚ +β”‚ β”‚ Query embedding vs Tier2 embeddings (144 archive subtypes) β”‚ β”‚ +β”‚ β”‚ Result: MunicipalArchive (similarity: 0.94) β”‚ β”‚ +β”‚ β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜ β”‚ +β”‚ ↓ β”‚ +β”‚ Structured cache key: "count:A.MUNICIPAL_ARCHIVE:amsterdam" β”‚ +β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜ +``` + +### Tier 1: Types File Embeddings + +Each Types file (e.g., `MuseumType.yaml`, `ArchiveOrganizationType.yaml`) gets ONE embedding +representing the **accumulated vocabulary** of all types within that file. + +**Embedding Text Construction**: +``` +MuseumType: museum musea kunstmuseum art museum natural history museum + science museum open-air museum ecomuseum virtual museum + heritage farm national museum regional museum university museum + [... all keywords from all 187 subtypes ...] +``` + +**Purpose**: Fast first-pass filter to identify which GLAMORCUBESFIXPHDNT category the query relates to. + +| Types File | Code | Accumulated Terms Count | +|------------|------|------------------------| +| MuseumType | M | ~500+ terms from 187 subtypes | +| ArchiveOrganizationType | A | ~400+ terms from 144 subtypes | +| LibraryType | L | ~200+ terms from subtypes | +| GalleryType | G | ~100+ terms from subtypes | +| ... | ... | ... | + +### Tier 2: Individual Type Embeddings + +Each **specific type** within a Types file gets its own embedding from its accumulated terms. + +**Embedding Text Construction**: +``` +MunicipalArchive: gemeentearchief stadsarchief city archive municipal archive + town archive local government records burgerlijke stand + bevolkingsregister council minutes building permits + [... all keywords + structured_aliases + labels ...] +``` + +**Purpose**: Precise subtype identification after Tier 1 narrows the category. + +### Term Log Structure + +A lookup table mapping every extracted term to its type/subtype: + +```json +{ + "termLog": { + "kunstmuseum": { + "typeCode": "M", + "typeName": "MuseumType", + "subtypeName": "ART_MUSEUM", + "wikidata": "Q207694", + "language": "nl" + }, + "art museum": { + "typeCode": "M", + "typeName": "MuseumType", + "subtypeName": "ART_MUSEUM", + "wikidata": "Q207694", + "language": "en" + }, + "gemeentearchief": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "subtypeName": "MUNICIPAL_ARCHIVE", + "wikidata": "Q8362876", + "language": "nl" + } + } +} +``` + +**Purpose**: +1. Fast O(1) keyword lookup (no embedding needed for exact matches) +2. Audit trail of which terms map to which types +3. Debugging which queries match which types + +### Runtime Lookup Strategy + +```typescript +async function extractEntitiesWithEmbeddings(query: string): Promise { + const vocab = await loadTypesVocabulary(); + const normalized = query.toLowerCase(); + + // FAST PATH: Check termLog for exact keyword matches + for (const [term, mapping] of Object.entries(vocab.termLog)) { + if (normalized.includes(term)) { + return { + institutionType: mapping.typeCode, + institutionSubtype: mapping.subtypeName, + subtypeWikidata: mapping.wikidata, + // ... location and intent extraction + }; + } + } + + // SLOW PATH: Embedding-based semantic matching + const queryEmbedding = await generateEmbedding(query); + + // Tier 1: Find best matching Types file + let bestType: string | null = null; + let bestTypeSimilarity = 0; + for (const [typeName, typeEmbedding] of Object.entries(vocab.tier1Embeddings)) { + const similarity = cosineSimilarity(queryEmbedding, typeEmbedding); + if (similarity > bestTypeSimilarity && similarity > 0.7) { + bestTypeSimilarity = similarity; + bestType = typeName; + } + } + + if (!bestType) return {}; // No type matched + + // Tier 2: Find best matching subtype within the Types file + const typeCode = vocab.institutionTypes[bestType].code; + let bestSubtype: string | null = null; + let bestSubtypeSimilarity = 0; + + for (const [subtypeName, subtypeEmbedding] of Object.entries(vocab.tier2Embeddings[typeCode] || {})) { + const similarity = cosineSimilarity(queryEmbedding, subtypeEmbedding); + if (similarity > bestSubtypeSimilarity && similarity > 0.75) { + bestSubtypeSimilarity = similarity; + bestSubtype = subtypeName; + } + } + + return { + institutionType: typeCode, + institutionSubtype: bestSubtype, + // ... location and intent extraction + }; +} +``` + +### Embedding Model Choice + +For build-time embedding generation, use the same model as the semantic cache: + +| Option | Model | Dimensions | Quality | +|--------|-------|------------|---------| +| **Primary** | `sentence-transformers/paraphrase-multilingual-MiniLM-L12-v2` | 384 | Good multilingual | +| Fallback | `all-MiniLM-L6-v2` | 384 | English-focused | +| High Quality | `multilingual-e5-large` | 1024 | Best multilingual | + +**Build-time generation**: Embeddings are generated ONCE at build time and stored in JSON. +This avoids runtime embedding API calls for type classification. + +## TypesVocabulary JSON Structure + +Generated at build time with **pre-computed embeddings**: + +```json +{ + "version": "2026-01-10T12:00:00Z", + "schemaVersion": "20251121", + "embeddingModel": "paraphrase-multilingual-MiniLM-L12-v2", + "embeddingDimensions": 384, + + "tier1Embeddings": { + "MuseumType": [0.023, -0.045, 0.087, ...], + "ArchiveOrganizationType": [0.012, 0.056, -0.034, ...], + "LibraryType": [-0.034, 0.089, 0.012, ...], + "GalleryType": [0.045, -0.023, 0.067, ...] + }, + + "tier2Embeddings": { + "M": { + "ART_MUSEUM": [0.034, -0.056, 0.078, ...], + "NATURAL_HISTORY_MUSEUM": [0.045, 0.023, -0.089, ...], + "SCIENCE_MUSEUM": [0.067, -0.012, 0.045, ...] + }, + "A": { + "MUNICIPAL_ARCHIVE": [0.089, 0.034, -0.056, ...], + "NATIONAL_ARCHIVE": [0.012, -0.078, 0.045, ...], + "CHURCH_ARCHIVE": [-0.023, 0.067, 0.034, ...] + } + }, + + "termLog": { + "kunstmuseum": {"typeCode": "M", "subtypeName": "ART_MUSEUM", "wikidata": "Q207694", "lang": "nl"}, + "art museum": {"typeCode": "M", "subtypeName": "ART_MUSEUM", "wikidata": "Q207694", "lang": "en"}, + "gemeentearchief": {"typeCode": "A", "subtypeName": "MUNICIPAL_ARCHIVE", "wikidata": "Q8362876", "lang": "nl"}, + "stadsarchief": {"typeCode": "A", "subtypeName": "MUNICIPAL_ARCHIVE", "wikidata": "Q8362876", "lang": "nl"}, + "city archive": {"typeCode": "A", "subtypeName": "MUNICIPAL_ARCHIVE", "wikidata": "Q8362876", "lang": "en"}, + "burgerlijke stand": {"typeCode": "A", "recordSetType": "CIVIL_REGISTRY", "lang": "nl"}, + "geboorteakte": {"typeCode": "A", "recordSetType": "CIVIL_REGISTRY", "lang": "nl"} + }, + + "institutionTypes": { + "M": { + "code": "M", + "className": "MuseumType", + "baseWikidata": "Q33506", + "accumulatedTerms": "museum musea kunstmuseum art museum natural history museum science museum open-air museum ecomuseum virtual museum heritage farm national museum regional museum university museum...", + "keywords": { + "nl": ["museum", "musea"], + "en": ["museum", "museums"], + "de": ["Museum", "Museen"] + }, + "subtypes": { + "ART_MUSEUM": { + "className": "ArtMuseum", + "wikidata": "Q207694", + "accumulatedTerms": "kunstmuseum art museum kunstmusea art museums fine art museum visual arts museum painting gallery sculpture museum", + "keywords": { + "nl": ["kunstmuseum", "kunstmusea"], + "en": ["art museum", "art museums"] + } + }, + "NATURAL_HISTORY_MUSEUM": { + "className": "NaturalHistoryMuseum", + "wikidata": "Q559049", + "accumulatedTerms": "natuurhistorisch museum natuurmuseum natural history museum science museum fossils taxidermy specimens geology biology", + "keywords": { + "nl": ["natuurhistorisch museum", "natuurmuseum"], + "en": ["natural history museum"] + } + } + } + }, + "A": { + "code": "A", + "className": "ArchiveOrganizationType", + "baseWikidata": "Q166118", + "accumulatedTerms": "archief archieven archive archives gemeentearchief stadsarchief nationaal archief rijksarchief church archive company archive film archive...", + "keywords": { + "nl": ["archief", "archieven"], + "en": ["archive", "archives"] + }, + "subtypes": { + "MUNICIPAL_ARCHIVE": { + "className": "MunicipalArchive", + "wikidata": "Q8362876", + "accumulatedTerms": "gemeentearchief stadsarchief municipal archive city archive town archive local government records civil registry population register building permits council minutes", + "keywords": { + "nl": ["gemeentearchief", "stadsarchief", "gemeentelijke archiefdienst"], + "en": ["municipal archive", "city archive", "town archive"] + } + }, + "NATIONAL_ARCHIVE": { + "className": "NationalArchive", + "wikidata": "Q1188452", + "accumulatedTerms": "nationaal archief rijksarchief national archive state archive government records national records federal archive", + "keywords": { + "nl": ["nationaal archief", "rijksarchief"], + "en": ["national archive", "state archive"] + } + } + } + } + }, + + "recordSetTypes": { + "CIVIL_REGISTRY": { + "className": "CivilRegistrySeries", + "accumulatedTerms": "burgerlijke stand geboorteakte huwelijksakte overlijdensakte bevolkingsregister civil registry birth records marriage records death records population register vital records genealogy", + "keywords": { + "nl": ["burgerlijke stand", "geboorteakte", "huwelijksakte", "overlijdensakte", "bevolkingsregister"], + "en": ["civil registry", "birth records", "marriage records", "death records"] + } + }, + "COUNCIL_GOVERNANCE": { + "className": "CouncilGovernanceFonds", + "accumulatedTerms": "gemeenteraad raadsnotulen raadsbesluit verordening council minutes ordinances resolutions bylaws municipal council town council city council", + "keywords": { + "nl": ["gemeenteraad", "raadsnotulen", "raadsbesluit", "verordening"], + "en": ["council minutes", "ordinances", "resolutions"] + } + } + } +} +``` + +### Key Additions for Embedding Support + +| Field | Purpose | +|-------|---------| +| `tier1Embeddings` | Pre-computed embeddings for each Types file (19 categories) | +| `tier2Embeddings` | Pre-computed embeddings for each subtype (500+ types) | +| `termLog` | Fast O(1) lookup table for exact keyword matches | +| `accumulatedTerms` | Raw text used to generate embeddings (for debugging/regeneration) | +| `embeddingModel` | Model used to generate embeddings (for reproducibility) | + +## Enhanced ExtractedEntities Interface + +```typescript +export interface ExtractedEntities { + // Existing fields + institutionType?: InstitutionTypeCode | null; + location?: string | null; + locationType?: 'city' | 'province' | null; + intent?: 'count' | 'list' | 'info' | null; + + // NEW: Ontology-derived fields + institutionSubtype?: string | null; // e.g., 'MUNICIPAL_ARCHIVE', 'ART_MUSEUM' + recordSetType?: string | null; // e.g., 'CIVIL_REGISTRY', 'COUNCIL_GOVERNANCE' + subtypeWikidata?: string | null; // e.g., 'Q8362876' for LOD integration +} +``` + +## Enhanced Cache Key Format + +``` +{intent}:{institutionType}[.{subtype}][:{recordSetType}]:{location} + +Examples: +- "count:m:amsterdam" # Basic museum count +- "count:m.art_museum:amsterdam" # Art museum count (subtype) +- "list:a.municipal_archive:nh" # Municipal archives in Noord-Holland +- "query:a:civil_registry:utrecht" # Civil registry in Utrecht +- "info:a.national_archive::nl" # National archive info (no location filter) +``` + +## Implementation Files + +| File | Purpose | +|------|---------| +| `scripts/extract-types-vocab.ts` | Build-time vocabulary extraction from LinkML | +| `apps/archief-assistent/public/types-vocab.json` | Generated vocabulary file | +| `apps/archief-assistent/src/lib/types-vocabulary.ts` | Runtime vocabulary loader | +| `apps/archief-assistent/src/lib/semantic-cache.ts` | Updated entity extraction | + +## Build Integration + +Add to `apps/archief-assistent/package.json`: + +```json +{ + "scripts": { + "prebuild": "tsx ../../scripts/extract-types-vocab.ts", + "build": "vite build" + } +} +``` + +## Keyword Extraction Priority + +When extracting keywords from schema files: + +1. **`keywords`** array (highest priority) - Explicit search terms +2. **`structured_aliases.literal_form`** - Multilingual alternative names +3. **`type_label`** - Preferred labels per language +4. **Class name conversion** - `MunicipalArchive` β†’ "municipal archive" + +## Cache Segmentation Rules + +### Rule 1: Subtype Specificity + +Queries with **specific subtypes** should NOT match **generic type** cache entries: + +``` +Query: "kunstmusea in Amsterdam" β†’ key: "count:m.art_museum:amsterdam" +Cached: "musea in Amsterdam" β†’ key: "count:m:amsterdam" +Result: MISS (subtype mismatch) βœ… +``` + +### Rule 2: Record Set Type Isolation + +Queries about **specific record types** should cache separately: + +``` +Query: "burgerlijke stand Utrecht" β†’ key: "query:a:civil_registry:utrecht" +Cached: "archieven in Utrecht" β†’ key: "list:a:utrecht" +Result: MISS (record set type mismatch) βœ… +``` + +### Rule 3: Subtype-to-Type Fallback + +Generic queries CAN match subtype cache entries (broader is acceptable): + +``` +Query: "musea in Amsterdam" β†’ key: "count:m:amsterdam" +Cached: "kunstmusea in Amsterdam" β†’ key: "count:m.art_museum:amsterdam" +Result: MISS (don't return subset for superset query) +``` + +## Migration Notes + +1. **Backwards Compatible**: Existing cache entries without `institutionSubtype` continue to work +2. **Gradual Rollout**: New cache entries get subtype, old entries remain valid +3. **Cache Clear**: Consider clearing cache after deployment to ensure consistency + +## Validation + +Run E2E tests to verify: + +```bash +cd apps/archief-assistent +npm run test:e2e +``` + +Key test cases: +- Geographic isolation (Amsterdam β‰  Rotterdam β‰  Noord-Holland) +- Subtype isolation (kunstmuseum β‰  museum) +- Record set isolation (burgerlijke stand β‰  archive) +- Intent isolation (count β‰  list β‰  info) + +## References + +- **Rule 41**: Types classes define SPARQL template variables +- **Rule 0b**: Type/Types file naming convention +- **CustodianType.yaml**: Base taxonomy definition +- **AGENTS.md**: GLAMORCUBESFIXPHDNT taxonomy documentation + +--- + +**Created**: 2026-01-10 +**Author**: OpenCode Agent +**Status**: Implementing diff --git a/apps/archief-assistent/public/types-vocab.json b/apps/archief-assistent/public/types-vocab.json new file mode 100644 index 0000000000..1cb43ff9b3 --- /dev/null +++ b/apps/archief-assistent/public/types-vocab.json @@ -0,0 +1,10142 @@ +{ + "version": "2026-01-10T11:52:33.558Z", + "schemaVersion": "20251121", + "embeddingModel": "paraphrase-multilingual-MiniLM-L12-v2", + "embeddingDimensions": 384, + "tier1Embeddings": { + "ArchiveOrganizationType": [], + "BioCustodianType": [], + "CommercialOrganizationType": [], + "DigitalPlatformType": [], + "EducationProviderType": [], + "FeatureCustodianType": [], + "GalleryType": [], + "HeritageSocietyType": [], + "HolySacredSiteType": [], + "IntangibleHeritageGroupType": [], + "LibraryType": [], + "MixedCustodianType": [], + "MuseumType": [], + "NonProfitType": [], + "OfficialInstitutionType": [], + "PersonalCollectionType": [], + "ResearchOrganizationType": [], + "TasteScentHeritageType": [], + "UnspecifiedType": [] + }, + "tier2Embeddings": { + "A": {}, + "B": {}, + "C": {}, + "D": { + "DIGITAL_LIBRARY": [], + "DIGITAL_ARCHIVE_PLATFORM": [], + "DOCUMENT_REPOSITORY": [], + "ARCHIVAL_REPOSITORY": [], + "OPEN_ACCESS_REPOSITORY": [], + "PRESERVATION_REPOSITORY": [], + "TRUSTED_DIGITAL_REPOSITORY": [], + "EARKIV": [], + "ONLINE_LIBRARY": [], + "ONLINE_ACADEMIC_LIBRARY": [], + "ONLINE_DIGITAL_MUSICAL_DOCUMENT_LIBRARY": [], + "SHADOW_LIBRARY": [], + "PHOTOGRAPH_COLLECTION": [], + "AGGREGATOR": [], + "AGGREGATED_ONLINE_DATABASE": [], + "BIBLIOGRAPHIC_DATABASE_PLATFORM": [], + "SPECIALIZED_DATABASE": [], + "ARCHIVES_PORTAL": [], + "REGIONAL_PORTAL": [], + "TORAH_DATABASE": [], + "WEB_PORTAL_PLATFORM": [], + "WEBSITE": [], + "INSTITUTIONAL_WEBSITE": [], + "ONLINE_DATABASE": [], + "DATABASE_PLATFORM": [], + "DATA_PLATFORM": [], + "OPEN_DATA_PORTAL": [], + "INTEGRATING_RESOURCE": [], + "SERVICE_ON_INTERNET": [], + "VIRTUAL_MUSEUM": [], + "VIRTUAL_LIBRARY": [], + "VIRTUAL_SPECIALIST_LIBRARY": [], + "VIRTUAL_HERBARIUM": [], + "VIRTUAL_MAP_LIBRARY": [], + "ONLINE_ART_GALLERY": [], + "COMMONS_GALLERY": [], + "DISCIPLINARY_REPOSITORY": [], + "PRE_PRINT_SERVER": [], + "GENEALOGY_DATABASE": [], + "GEOSPATIAL_REPOSITORY": [], + "GEOSPATIAL_DATA_REPOSITORY": [], + "GEOSPATIAL_INFORMATION_REPOSITORY": [], + "GEOSPATIAL_DATA_COLLECTION": [], + "OPEN_GEODATA_PORTAL": [], + "CROWDSOURCING_PLATFORM": [], + "EDUCATIONAL_PORTAL": [], + "SOCIAL_MEDIA": [], + "BLOG_NEWS": [], + "PODCAST_CHANNEL": [], + "VIRTUAL_TOUR": [], + "COLLECTION_BROWSER": [], + "ESERVICE": [], + "BOOKING_SYSTEM": [], + "WEBSHOP": [], + "PROJECT_WEBSITE": [], + "EXHIBITION_MICROSITE": [], + "APIENDPOINT": [], + "MOBILE_APP": [], + "DATA_PORTAL_AUXILIARY": [], + "LEGACY_PLATFORM": [], + "NEWSLETTER": [], + "PROJECT_PLATFORM": [], + "MEMORY_INSTITUTION": [], + "LOCAL_HERITAGE_INSTITUTION_IN_SWEDEN": [], + "SCIENTIFIC_TECHNIC_AND_INDUSTRIAL_CULTURE_CENTER": [], + "PUBLIC_SPACE": [], + "SOCIAL_SPACE": [], + "CLOSED_SPACE": [] + }, + "E": {}, + "F": {}, + "G": {}, + "S": {}, + "H": {}, + "I": {}, + "L": {}, + "X": {}, + "M": {}, + "N": {}, + "O": {}, + "P": {}, + "R": {}, + "T": {}, + "U": {} + }, + "termLog": { + "archive organization type": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "lang": "en" + }, + "bio custodian type": { + "typeCode": "B", + "typeName": "BioCustodianType", + "lang": "en" + }, + "commercial organization type": { + "typeCode": "C", + "typeName": "CommercialOrganizationType", + "lang": "en" + }, + "digital library": { + "typeCode": "D", + "typeName": "DigitalPlatformType", + "subtypeName": "DIGITAL_LIBRARY", + "lang": "en" + }, + "digital archive platform": { + "typeCode": "D", + "typeName": "DigitalPlatformType", + "subtypeName": "DIGITAL_ARCHIVE_PLATFORM", + "lang": "en" + }, + "document repository": { + "typeCode": "D", + "typeName": "DigitalPlatformType", + "subtypeName": "DOCUMENT_REPOSITORY", + "lang": "en" + }, + "archival repository": { + "typeCode": "D", + "typeName": "DigitalPlatformType", + "subtypeName": "ARCHIVAL_REPOSITORY", + "lang": "en" + }, + "open access repository": { + "typeCode": "D", + "typeName": "DigitalPlatformType", + "subtypeName": "OPEN_ACCESS_REPOSITORY", + "lang": "en" + }, + "preservation repository": { + "typeCode": "D", + "typeName": "DigitalPlatformType", + "subtypeName": "PRESERVATION_REPOSITORY", + "lang": "en" + }, + "trusted digital repository": { + "typeCode": "D", + "typeName": "DigitalPlatformType", + "subtypeName": "TRUSTED_DIGITAL_REPOSITORY", + "lang": "en" + }, + "e arkiv": { + "typeCode": "D", + "typeName": "DigitalPlatformType", + "subtypeName": "EARKIV", + "lang": "en" + }, + "online library": { + "typeCode": "D", + "typeName": "DigitalPlatformType", + "subtypeName": "ONLINE_LIBRARY", + "lang": "en" + }, + "online academic library": { + "typeCode": "D", + "typeName": "DigitalPlatformType", + "subtypeName": "ONLINE_ACADEMIC_LIBRARY", + "lang": "en" + }, + "online digital musical document library": { + "typeCode": "D", + "typeName": "DigitalPlatformType", + "subtypeName": "ONLINE_DIGITAL_MUSICAL_DOCUMENT_LIBRARY", + "lang": "en" + }, + "shadow library": { + "typeCode": "D", + "typeName": "DigitalPlatformType", + "subtypeName": "SHADOW_LIBRARY", + "lang": "en" + }, + "photograph collection": { + "typeCode": "D", + "typeName": "DigitalPlatformType", + "subtypeName": "PHOTOGRAPH_COLLECTION", + "lang": "en" + }, + "aggregator": { + "typeCode": "D", + "typeName": "DigitalPlatformType", + "subtypeName": "AGGREGATOR", + "lang": "en" + }, + "aggregated online database": { + "typeCode": "D", + "typeName": "DigitalPlatformType", + "subtypeName": "AGGREGATED_ONLINE_DATABASE", + "lang": "en" + }, + "bibliographic database platform": { + "typeCode": "D", + "typeName": "DigitalPlatformType", + "subtypeName": "BIBLIOGRAPHIC_DATABASE_PLATFORM", + "lang": "en" + }, + "specialized database": { + "typeCode": "D", + "typeName": "DigitalPlatformType", + "subtypeName": "SPECIALIZED_DATABASE", + "lang": "en" + }, + "archives portal": { + "typeCode": "D", + "typeName": "DigitalPlatformType", + "subtypeName": "ARCHIVES_PORTAL", + "lang": "en" + }, + "regional portal": { + "typeCode": "D", + "typeName": "DigitalPlatformType", + "subtypeName": "REGIONAL_PORTAL", + "lang": "en" + }, + "torah database": { + "typeCode": "D", + "typeName": "DigitalPlatformType", + "subtypeName": "TORAH_DATABASE", + "lang": "en" + }, + "web portal platform": { + "typeCode": "D", + "typeName": "DigitalPlatformType", + "subtypeName": "WEB_PORTAL_PLATFORM", + "lang": "en" + }, + "website": { + "typeCode": "D", + "typeName": "DigitalPlatformType", + "subtypeName": "WEBSITE", + "lang": "en" + }, + "institutional website": { + "typeCode": "D", + "typeName": "DigitalPlatformType", + "subtypeName": "INSTITUTIONAL_WEBSITE", + "lang": "en" + }, + "online database": { + "typeCode": "D", + "typeName": "DigitalPlatformType", + "subtypeName": "ONLINE_DATABASE", + "lang": "en" + }, + "database platform": { + "typeCode": "D", + "typeName": "DigitalPlatformType", + "subtypeName": "DATABASE_PLATFORM", + "lang": "en" + }, + "data platform": { + "typeCode": "D", + "typeName": "DigitalPlatformType", + "subtypeName": "DATA_PLATFORM", + "lang": "en" + }, + "open data portal": { + "typeCode": "D", + "typeName": "DigitalPlatformType", + "subtypeName": "OPEN_DATA_PORTAL", + "lang": "en" + }, + "integrating resource": { + "typeCode": "D", + "typeName": "DigitalPlatformType", + "subtypeName": "INTEGRATING_RESOURCE", + "lang": "en" + }, + "service on internet": { + "typeCode": "D", + "typeName": "DigitalPlatformType", + "subtypeName": "SERVICE_ON_INTERNET", + "lang": "en" + }, + "virtual museum": { + "typeCode": "D", + "typeName": "DigitalPlatformType", + "subtypeName": "VIRTUAL_MUSEUM", + "lang": "en" + }, + "virtual library": { + "typeCode": "D", + "typeName": "DigitalPlatformType", + "subtypeName": "VIRTUAL_LIBRARY", + "lang": "en" + }, + "virtual specialist library": { + "typeCode": "D", + "typeName": "DigitalPlatformType", + "subtypeName": "VIRTUAL_SPECIALIST_LIBRARY", + "lang": "en" + }, + "virtual herbarium": { + "typeCode": "D", + "typeName": "DigitalPlatformType", + "subtypeName": "VIRTUAL_HERBARIUM", + "lang": "en" + }, + "virtual map library": { + "typeCode": "D", + "typeName": "DigitalPlatformType", + "subtypeName": "VIRTUAL_MAP_LIBRARY", + "lang": "en" + }, + "online art gallery": { + "typeCode": "D", + "typeName": "DigitalPlatformType", + "subtypeName": "ONLINE_ART_GALLERY", + "lang": "en" + }, + "commons gallery": { + "typeCode": "D", + "typeName": "DigitalPlatformType", + "subtypeName": "COMMONS_GALLERY", + "lang": "en" + }, + "disciplinary repository": { + "typeCode": "D", + "typeName": "DigitalPlatformType", + "subtypeName": "DISCIPLINARY_REPOSITORY", + "lang": "en" + }, + "pre print server": { + "typeCode": "D", + "typeName": "DigitalPlatformType", + "subtypeName": "PRE_PRINT_SERVER", + "lang": "en" + }, + "genealogy database": { + "typeCode": "D", + "typeName": "DigitalPlatformType", + "subtypeName": "GENEALOGY_DATABASE", + "lang": "en" + }, + "geospatial repository": { + "typeCode": "D", + "typeName": "DigitalPlatformType", + "subtypeName": "GEOSPATIAL_REPOSITORY", + "lang": "en" + }, + "geospatial data repository": { + "typeCode": "D", + "typeName": "DigitalPlatformType", + "subtypeName": "GEOSPATIAL_DATA_REPOSITORY", + "lang": "en" + }, + "geospatial information repository": { + "typeCode": "D", + "typeName": "DigitalPlatformType", + "subtypeName": "GEOSPATIAL_INFORMATION_REPOSITORY", + "lang": "en" + }, + "geospatial data collection": { + "typeCode": "D", + "typeName": "DigitalPlatformType", + "subtypeName": "GEOSPATIAL_DATA_COLLECTION", + "lang": "en" + }, + "open geodata portal": { + "typeCode": "D", + "typeName": "DigitalPlatformType", + "subtypeName": "OPEN_GEODATA_PORTAL", + "lang": "en" + }, + "crowdsourcing platform": { + "typeCode": "D", + "typeName": "DigitalPlatformType", + "subtypeName": "CROWDSOURCING_PLATFORM", + "lang": "en" + }, + "educational portal": { + "typeCode": "D", + "typeName": "DigitalPlatformType", + "subtypeName": "EDUCATIONAL_PORTAL", + "lang": "en" + }, + "social media": { + "typeCode": "D", + "typeName": "DigitalPlatformType", + "subtypeName": "SOCIAL_MEDIA", + "lang": "en" + }, + "blog news": { + "typeCode": "D", + "typeName": "DigitalPlatformType", + "subtypeName": "BLOG_NEWS", + "lang": "en" + }, + "podcast channel": { + "typeCode": "D", + "typeName": "DigitalPlatformType", + "subtypeName": "PODCAST_CHANNEL", + "lang": "en" + }, + "virtual tour": { + "typeCode": "D", + "typeName": "DigitalPlatformType", + "subtypeName": "VIRTUAL_TOUR", + "lang": "en" + }, + "collection browser": { + "typeCode": "D", + "typeName": "DigitalPlatformType", + "subtypeName": "COLLECTION_BROWSER", + "lang": "en" + }, + "e service": { + "typeCode": "D", + "typeName": "DigitalPlatformType", + "subtypeName": "ESERVICE", + "lang": "en" + }, + "booking system": { + "typeCode": "D", + "typeName": "DigitalPlatformType", + "subtypeName": "BOOKING_SYSTEM", + "lang": "en" + }, + "webshop": { + "typeCode": "D", + "typeName": "DigitalPlatformType", + "subtypeName": "WEBSHOP", + "lang": "en" + }, + "project website": { + "typeCode": "D", + "typeName": "DigitalPlatformType", + "subtypeName": "PROJECT_WEBSITE", + "lang": "en" + }, + "exhibition microsite": { + "typeCode": "D", + "typeName": "DigitalPlatformType", + "subtypeName": "EXHIBITION_MICROSITE", + "lang": "en" + }, + "a p i endpoint": { + "typeCode": "D", + "typeName": "DigitalPlatformType", + "subtypeName": "APIENDPOINT", + "lang": "en" + }, + "mobile app": { + "typeCode": "D", + "typeName": "DigitalPlatformType", + "subtypeName": "MOBILE_APP", + "lang": "en" + }, + "data portal auxiliary": { + "typeCode": "D", + "typeName": "DigitalPlatformType", + "subtypeName": "DATA_PORTAL_AUXILIARY", + "lang": "en" + }, + "legacy platform": { + "typeCode": "D", + "typeName": "DigitalPlatformType", + "subtypeName": "LEGACY_PLATFORM", + "lang": "en" + }, + "newsletter": { + "typeCode": "D", + "typeName": "DigitalPlatformType", + "subtypeName": "NEWSLETTER", + "lang": "en" + }, + "project platform": { + "typeCode": "D", + "typeName": "DigitalPlatformType", + "subtypeName": "PROJECT_PLATFORM", + "lang": "en" + }, + "memory institution": { + "typeCode": "D", + "typeName": "DigitalPlatformType", + "subtypeName": "MEMORY_INSTITUTION", + "lang": "en" + }, + "local heritage institution in sweden": { + "typeCode": "D", + "typeName": "DigitalPlatformType", + "subtypeName": "LOCAL_HERITAGE_INSTITUTION_IN_SWEDEN", + "lang": "en" + }, + "scientific technic and industrial culture center": { + "typeCode": "D", + "typeName": "DigitalPlatformType", + "subtypeName": "SCIENTIFIC_TECHNIC_AND_INDUSTRIAL_CULTURE_CENTER", + "lang": "en" + }, + "public space": { + "typeCode": "D", + "typeName": "DigitalPlatformType", + "subtypeName": "PUBLIC_SPACE", + "lang": "en" + }, + "social space": { + "typeCode": "D", + "typeName": "DigitalPlatformType", + "subtypeName": "SOCIAL_SPACE", + "lang": "en" + }, + "closed space": { + "typeCode": "D", + "typeName": "DigitalPlatformType", + "subtypeName": "CLOSED_SPACE", + "lang": "en" + }, + "digital platform type": { + "typeCode": "D", + "typeName": "DigitalPlatformType", + "lang": "en" + }, + "education provider type": { + "typeCode": "E", + "typeName": "EducationProviderType", + "lang": "en" + }, + "feature custodian type": { + "typeCode": "F", + "typeName": "FeatureCustodianType", + "lang": "en" + }, + "gallery type": { + "typeCode": "G", + "typeName": "GalleryType", + "lang": "en" + }, + "heritage society type": { + "typeCode": "S", + "typeName": "HeritageSocietyType", + "lang": "en" + }, + "holy sacred site type": { + "typeCode": "H", + "typeName": "HolySacredSiteType", + "lang": "en" + }, + "intangible heritage group type": { + "typeCode": "I", + "typeName": "IntangibleHeritageGroupType", + "lang": "en" + }, + "library type": { + "typeCode": "L", + "typeName": "LibraryType", + "lang": "en" + }, + "mixed custodian type": { + "typeCode": "X", + "typeName": "MixedCustodianType", + "lang": "en" + }, + "museum type": { + "typeCode": "M", + "typeName": "MuseumType", + "lang": "en" + }, + "non profit type": { + "typeCode": "N", + "typeName": "NonProfitType", + "lang": "en" + }, + "official institution type": { + "typeCode": "O", + "typeName": "OfficialInstitutionType", + "lang": "en" + }, + "personal collection type": { + "typeCode": "P", + "typeName": "PersonalCollectionType", + "lang": "en" + }, + "research organization type": { + "typeCode": "R", + "typeName": "ResearchOrganizationType", + "lang": "en" + }, + "taste scent heritage type": { + "typeCode": "T", + "typeName": "TasteScentHeritageType", + "lang": "en" + }, + "unspecified type": { + "typeCode": "U", + "typeName": "UnspecifiedType", + "lang": "en" + }, + "board minutes": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "HOSPITAL_ADMINISTRATION_FONDS", + "lang": "nl" + }, + "committee records": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "UNIVERSITY_ADMINISTRATIVE_FONDS", + "lang": "nl" + }, + "policy records": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "UNIVERSITY_ADMINISTRATIVE_FONDS", + "lang": "nl" + }, + "faculty council records": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "UNIVERSITY_ADMINISTRATIVE_FONDS", + "lang": "nl" + }, + "strategic planning": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MILITARY_OPERATIONS_FONDS", + "lang": "nl" + }, + "accreditation records": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "UNIVERSITY_ADMINISTRATIVE_FONDS", + "lang": "nl" + }, + "executive correspondence": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "UNIVERSITY_ADMINISTRATIVE_FONDS", + "lang": "nl" + }, + "institutional bylaws": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "UNIVERSITY_ADMINISTRATIVE_FONDS", + "lang": "nl" + }, + "universiteitsbestuursarchief": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "UNIVERSITY_ADMINISTRATIVE_FONDS", + "lang": "nl" + }, + "governance records": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "UNIVERSITY_ADMINISTRATIVE_FONDS", + "lang": "en" + }, + "senate records": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "UNIVERSITY_ADMINISTRATIVE_FONDS", + "lang": "en" + }, + "university administrative fonds": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "UNIVERSITY_ADMINISTRATIVE_FONDS", + "lang": "en" + }, + "hochschulverwaltungsbestand": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "UNIVERSITY_ADMINISTRATIVE_FONDS", + "lang": "de" + }, + "fondo de administraciΓ³n universitaria": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "UNIVERSITY_ADMINISTRATIVE_FONDS", + "lang": "es" + }, + "fonds d'administration universitaire": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "UNIVERSITY_ADMINISTRATIVE_FONDS", + "lang": "fr" + }, + "fundo de administraΓ§Γ£o universitΓ‘ria": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "UNIVERSITY_ADMINISTRATIVE_FONDS", + "lang": "pt" + }, + "registration records": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "ACADEMIC_STUDENT_RECORD_SERIES", + "lang": "nl" + }, + "academic transcripts": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "ACADEMIC_STUDENT_RECORD_SERIES", + "lang": "nl" + }, + "graduation records": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "ACADEMIC_STUDENT_RECORD_SERIES", + "lang": "nl" + }, + "diploma registers": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "ACADEMIC_STUDENT_RECORD_SERIES", + "lang": "nl" + }, + "matriculation records": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "ACADEMIC_STUDENT_RECORD_SERIES", + "lang": "nl" + }, + "disciplinary records": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "ACADEMIC_STUDENT_RECORD_SERIES", + "lang": "nl" + }, + "student organizations": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "ACADEMIC_STUDENT_RECORD_SERIES", + "lang": "nl" + }, + "financial aid records": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "ACADEMIC_STUDENT_RECORD_SERIES", + "lang": "nl" + }, + "studentendossiers": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "ACADEMIC_STUDENT_RECORD_SERIES", + "lang": "nl" + }, + "enrollment records": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "ACADEMIC_STUDENT_RECORD_SERIES", + "lang": "en" + }, + "grade records": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "ACADEMIC_STUDENT_RECORD_SERIES", + "lang": "en" + }, + "academic student record series": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "ACADEMIC_STUDENT_RECORD_SERIES", + "lang": "en" + }, + "studentenaktenserie": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "ACADEMIC_STUDENT_RECORD_SERIES", + "lang": "de" + }, + "serie de expedientes estudiantiles": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "ACADEMIC_STUDENT_RECORD_SERIES", + "lang": "es" + }, + "sΓ©rie de dossiers Γ©tudiants": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "ACADEMIC_STUDENT_RECORD_SERIES", + "lang": "fr" + }, + "sΓ©rie de registros de alunos": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "ACADEMIC_STUDENT_RECORD_SERIES", + "lang": "pt" + }, + "research documentation": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "FACULTY_PAPER_COLLECTION", + "lang": "nl" + }, + "course materials": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "FACULTY_PAPER_COLLECTION", + "lang": "nl" + }, + "manuscripts": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "FACULTY_PAPER_COLLECTION", + "lang": "nl" + }, + "professional papers": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "FACULTY_PAPER_COLLECTION", + "lang": "nl" + }, + "academic papers": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "FACULTY_PAPER_COLLECTION", + "lang": "nl" + }, + "hoogleraarspapieren": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "FACULTY_PAPER_COLLECTION", + "lang": "nl" + }, + "personal papers": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "FACULTY_PAPER_COLLECTION", + "lang": "en" + }, + "faculty papers": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "FACULTY_PAPER_COLLECTION", + "lang": "en" + }, + "correspondence": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "FACULTY_PAPER_COLLECTION", + "lang": "en" + }, + "lecture notes": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "FACULTY_PAPER_COLLECTION", + "lang": "en" + }, + "drafts": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "FACULTY_PAPER_COLLECTION", + "lang": "en" + }, + "conference papers": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "FACULTY_PAPER_COLLECTION", + "lang": "en" + }, + "faculty paper collection": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "FACULTY_PAPER_COLLECTION", + "lang": "en" + }, + "professorennachlass": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "FACULTY_PAPER_COLLECTION", + "lang": "de" + }, + "archivo personal de profesores": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "FACULTY_PAPER_COLLECTION", + "lang": "es" + }, + "fonds de professeurs": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "FACULTY_PAPER_COLLECTION", + "lang": "fr" + }, + "arquivo pessoal de docentes": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "FACULTY_PAPER_COLLECTION", + "lang": "pt" + }, + "audiovisual materials": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CAMPUS_DOCUMENTATION_COLLECTION", + "lang": "nl" + }, + "university publications": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CAMPUS_DOCUMENTATION_COLLECTION", + "lang": "nl" + }, + "yearbooks": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CAMPUS_DOCUMENTATION_COLLECTION", + "lang": "nl" + }, + "memorabilia": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CAMPUS_DOCUMENTATION_COLLECTION", + "lang": "nl" + }, + "oral histories": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CAMPUS_DOCUMENTATION_COLLECTION", + "lang": "nl" + }, + "event documentation": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CAMPUS_DOCUMENTATION_COLLECTION", + "lang": "nl" + }, + "building documentation": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CAMPUS_DOCUMENTATION_COLLECTION", + "lang": "nl" + }, + "campus life": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CAMPUS_DOCUMENTATION_COLLECTION", + "lang": "nl" + }, + "campusdocumentatiecollectie": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CAMPUS_DOCUMENTATION_COLLECTION", + "lang": "nl" + }, + "campus photographs": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CAMPUS_DOCUMENTATION_COLLECTION", + "lang": "en" + }, + "student newspapers": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CAMPUS_DOCUMENTATION_COLLECTION", + "lang": "en" + }, + "ephemera": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "REGIONAL_HISTORY_COLLECTION", + "lang": "en" + }, + "campus documentation collection": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CAMPUS_DOCUMENTATION_COLLECTION", + "lang": "en" + }, + "campus-dokumentationssammlung": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CAMPUS_DOCUMENTATION_COLLECTION", + "lang": "de" + }, + "colecciΓ³n de documentaciΓ³n del campus": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CAMPUS_DOCUMENTATION_COLLECTION", + "lang": "es" + }, + "collection de documentation du campus": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CAMPUS_DOCUMENTATION_COLLECTION", + "lang": "fr" + }, + "coleΓ§Γ£o de documentaΓ§Γ£o do campus": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CAMPUS_DOCUMENTATION_COLLECTION", + "lang": "pt" + }, + "radio advertisement collection": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "RADIO_ADVERTISEMENT_COLLECTION", + "lang": "en" + }, + "campaign documentation series": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CAMPAIGN_DOCUMENTATION_SERIES", + "lang": "en" + }, + "bioacoustic recording collection": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "BIOACOUSTIC_RECORDING_COLLECTION", + "lang": "en" + }, + "field recording series": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "FIELD_RECORDING_SERIES", + "lang": "en" + }, + "architectural drawing collection": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "ARCHITECTURAL_DRAWING_COLLECTION", + "lang": "en" + }, + "architect papers collection": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "ARCHITECT_PAPERS_COLLECTION", + "lang": "en" + }, + "building project fonds": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "BUILDING_PROJECT_FONDS", + "lang": "en" + }, + "international org fonds": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "INTERNATIONAL_ORG_FONDS", + "lang": "en" + }, + "treaty collection": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "TREATY_COLLECTION", + "lang": "en" + }, + "conference record series": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CONFERENCE_RECORD_SERIES", + "lang": "en" + }, + "building permit series": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "BUILDING_PERMIT_SERIES", + "lang": "en" + }, + "construction document collection": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CONSTRUCTION_DOCUMENT_COLLECTION", + "lang": "en" + }, + "regional administration fonds": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "REGIONAL_ADMINISTRATION_FONDS", + "lang": "en" + }, + "artist papers collection": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "ARTIST_PAPERS_COLLECTION", + "lang": "en" + }, + "gallery records fonds": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "GALLERY_RECORDS_FONDS", + "lang": "en" + }, + "exhibition documentation collection": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "EXHIBITION_DOCUMENTATION_COLLECTION", + "lang": "en" + }, + "audiovisual recording collection": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "AUDIOVISUAL_RECORDING_COLLECTION", + "lang": "en" + }, + "audiovisual production fonds": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "AUDIOVISUAL_PRODUCTION_FONDS", + "lang": "en" + }, + "banking records fonds": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "BANKING_RECORDS_FONDS", + "lang": "en" + }, + "financial transaction series": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "FINANCIAL_TRANSACTION_SERIES", + "lang": "en" + }, + "customer account series": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CUSTOMER_ACCOUNT_SERIES", + "lang": "en" + }, + "cantonal government fonds": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CANTONAL_GOVERNMENT_FONDS", + "lang": "en" + }, + "cantonal legislation collection": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CANTONAL_LEGISLATION_COLLECTION", + "lang": "en" + }, + "chapter records fonds": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CHAPTER_RECORDS_FONDS", + "lang": "en" + }, + "liturgical document collection": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "LITURGICAL_DOCUMENT_COLLECTION", + "lang": "en" + }, + "fabric records series": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "FABRIC_RECORDS_SERIES", + "lang": "en" + }, + "kerkbestuur": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CHURCH_GOVERNANCE_FONDS", + "lang": "nl" + }, + "consistory": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CHURCH_GOVERNANCE_FONDS", + "lang": "nl" + }, + "kerkenraad": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CHURCH_GOVERNANCE_FONDS", + "lang": "nl" + }, + "church council": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CHURCH_GOVERNANCE_FONDS", + "lang": "nl" + }, + "visitation records": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CHURCH_GOVERNANCE_FONDS", + "lang": "nl" + }, + "membership rolls": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CHURCH_GOVERNANCE_FONDS", + "lang": "nl" + }, + "lidmatenregisters": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CHURCH_GOVERNANCE_FONDS", + "lang": "nl" + }, + "kerkbestuurarchief": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CHURCH_GOVERNANCE_FONDS", + "lang": "nl" + }, + "church governance": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CHURCH_GOVERNANCE_FONDS", + "lang": "en" + }, + "synod records": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CHURCH_GOVERNANCE_FONDS", + "lang": "en" + }, + "synode": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CHURCH_GOVERNANCE_FONDS", + "lang": "en" + }, + "kerkorde": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CHURCH_GOVERNANCE_FONDS", + "lang": "en" + }, + "church governance fonds": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CHURCH_GOVERNANCE_FONDS", + "lang": "en" + }, + "kirchenleitungsbestand": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CHURCH_GOVERNANCE_FONDS", + "lang": "de" + }, + "fondo de gobierno eclesiΓ‘stico": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CHURCH_GOVERNANCE_FONDS", + "lang": "es" + }, + "fonds du gouvernement ecclΓ©siastique": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CHURCH_GOVERNANCE_FONDS", + "lang": "fr" + }, + "fundo de governo eclesiΓ‘stico": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CHURCH_GOVERNANCE_FONDS", + "lang": "pt" + }, + "parish registers": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PARISH_REGISTER_SERIES", + "lang": "nl" + }, + "baptism records": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PARISH_REGISTER_SERIES", + "lang": "nl" + }, + "doopregisters": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PARISH_REGISTER_SERIES", + "lang": "nl" + }, + "marriage records": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CIVIL_REGISTRY_SERIES", + "lang": "nl" + }, + "trouwregisters": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PARISH_REGISTER_SERIES", + "lang": "nl" + }, + "burial records": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PARISH_REGISTER_SERIES", + "lang": "nl" + }, + "begraafregisters": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PARISH_REGISTER_SERIES", + "lang": "nl" + }, + "vital records": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CIVIL_REGISTRY_SERIES", + "lang": "nl" + }, + "kerkelijke registers": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PARISH_REGISTER_SERIES", + "lang": "nl" + }, + "doop-trouw-begraafboeken": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PARISH_REGISTER_SERIES", + "lang": "nl" + }, + "dtb boeken": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PARISH_REGISTER_SERIES", + "lang": "en" + }, + "church records": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PARISH_REGISTER_SERIES", + "lang": "en" + }, + "genealogy sources": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CIVIL_REGISTRY_SERIES", + "lang": "en" + }, + "parish register series": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PARISH_REGISTER_SERIES", + "lang": "en" + }, + "kirchenbΓΌcher": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PARISH_REGISTER_SERIES", + "lang": "de" + }, + "registros parroquiales": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PARISH_REGISTER_SERIES", + "lang": "es" + }, + "registres paroissiaux": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PARISH_REGISTER_SERIES", + "lang": "fr" + }, + "registros paroquiais": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PARISH_REGISTER_SERIES", + "lang": "pt" + }, + "predikantenarchief": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PASTORAL_CORRESPONDENCE_COLLECTION", + "lang": "nl" + }, + "sermon manuscripts": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PASTORAL_CORRESPONDENCE_COLLECTION", + "lang": "nl" + }, + "visitation reports": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PASTORAL_CORRESPONDENCE_COLLECTION", + "lang": "nl" + }, + "ecclesiastical correspondence": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PASTORAL_CORRESPONDENCE_COLLECTION", + "lang": "nl" + }, + "minister papers": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PASTORAL_CORRESPONDENCE_COLLECTION", + "lang": "nl" + }, + "priest correspondence": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PASTORAL_CORRESPONDENCE_COLLECTION", + "lang": "nl" + }, + "predikantencorrespondentie": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PASTORAL_CORRESPONDENCE_COLLECTION", + "lang": "nl" + }, + "pastoral correspondence": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PASTORAL_CORRESPONDENCE_COLLECTION", + "lang": "en" + }, + "clergy papers": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PASTORAL_CORRESPONDENCE_COLLECTION", + "lang": "en" + }, + "pastoral care": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PASTORAL_CORRESPONDENCE_COLLECTION", + "lang": "en" + }, + "pastoral correspondence collection": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PASTORAL_CORRESPONDENCE_COLLECTION", + "lang": "en" + }, + "pfarrerkorrespondenz": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PASTORAL_CORRESPONDENCE_COLLECTION", + "lang": "de" + }, + "correspondencia pastoral": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PASTORAL_CORRESPONDENCE_COLLECTION", + "lang": "es" + }, + "correspondance pastorale": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PASTORAL_CORRESPONDENCE_COLLECTION", + "lang": "fr" + }, + "correspondΓͺncia pastoral": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PASTORAL_CORRESPONDENCE_COLLECTION", + "lang": "pt" + }, + "kerkelijke goederen": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CHURCH_PROPERTY_FONDS", + "lang": "nl" + }, + "property deeds": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CHURCH_PROPERTY_FONDS", + "lang": "nl" + }, + "eigendomsakten": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CHURCH_PROPERTY_FONDS", + "lang": "nl" + }, + "building records": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CHURCH_PROPERTY_FONDS", + "lang": "nl" + }, + "bouwdossiers": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CHURCH_PROPERTY_FONDS", + "lang": "nl" + }, + "financial accounts": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CHURCH_PROPERTY_FONDS", + "lang": "nl" + }, + "rekeningen": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CHURCH_PROPERTY_FONDS", + "lang": "nl" + }, + "kerkelijk goederenarchief": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CHURCH_PROPERTY_FONDS", + "lang": "nl" + }, + "church property": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CHURCH_PROPERTY_FONDS", + "lang": "en" + }, + "endowments": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CHURCH_PROPERTY_FONDS", + "lang": "en" + }, + "legaten": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CHURCH_PROPERTY_FONDS", + "lang": "en" + }, + "cemetery records": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CHURCH_PROPERTY_FONDS", + "lang": "en" + }, + "church property fonds": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CHURCH_PROPERTY_FONDS", + "lang": "en" + }, + "kirchenvermΓΆgensbestand": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CHURCH_PROPERTY_FONDS", + "lang": "de" + }, + "fondo de bienes eclesiΓ‘sticos": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CHURCH_PROPERTY_FONDS", + "lang": "es" + }, + "fonds des biens ecclΓ©siastiques": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CHURCH_PROPERTY_FONDS", + "lang": "fr" + }, + "fundo de bens eclesiΓ‘sticos": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CHURCH_PROPERTY_FONDS", + "lang": "pt" + }, + "congregational life": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CONGREGATIONAL_LIFE_COLLECTION", + "lang": "nl" + }, + "gemeenteleven": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CONGREGATIONAL_LIFE_COLLECTION", + "lang": "nl" + }, + "church societies": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CONGREGATIONAL_LIFE_COLLECTION", + "lang": "nl" + }, + "verenigingen": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CONGREGATIONAL_LIFE_COLLECTION", + "lang": "nl" + }, + "sunday school": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CONGREGATIONAL_LIFE_COLLECTION", + "lang": "nl" + }, + "zondagsschool": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CONGREGATIONAL_LIFE_COLLECTION", + "lang": "nl" + }, + "choir records": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CONGREGATIONAL_LIFE_COLLECTION", + "lang": "nl" + }, + "koor": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CONGREGATIONAL_LIFE_COLLECTION", + "lang": "nl" + }, + "church publications": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CONGREGATIONAL_LIFE_COLLECTION", + "lang": "nl" + }, + "diaconie": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CONGREGATIONAL_LIFE_COLLECTION", + "lang": "nl" + }, + "gemeentelevenscollectie": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CONGREGATIONAL_LIFE_COLLECTION", + "lang": "nl" + }, + "kerkbladen": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CONGREGATIONAL_LIFE_COLLECTION", + "lang": "en" + }, + "photographs": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "LOCAL_HISTORY_COLLECTION", + "lang": "en" + }, + "youth groups": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CONGREGATIONAL_LIFE_COLLECTION", + "lang": "en" + }, + "congregational life collection": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CONGREGATIONAL_LIFE_COLLECTION", + "lang": "en" + }, + "gemeindelebenssammlung": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CONGREGATIONAL_LIFE_COLLECTION", + "lang": "de" + }, + "colecciΓ³n de vida parroquial": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CONGREGATIONAL_LIFE_COLLECTION", + "lang": "es" + }, + "collection de vie paroissiale": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CONGREGATIONAL_LIFE_COLLECTION", + "lang": "fr" + }, + "coleΓ§Γ£o de vida comunitΓ‘ria": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CONGREGATIONAL_LIFE_COLLECTION", + "lang": "pt" + }, + "swedish parish record series": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "SWEDISH_PARISH_RECORD_SERIES", + "lang": "en" + }, + "swedish church property fonds": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "SWEDISH_CHURCH_PROPERTY_FONDS", + "lang": "en" + }, + "climate data collection": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CLIMATE_DATA_COLLECTION", + "lang": "en" + }, + "meteorological observation series": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "METEOROLOGICAL_OBSERVATION_SERIES", + "lang": "en" + }, + "collected materials fonds": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "COLLECTED_MATERIALS_FONDS", + "lang": "en" + }, + "donated papers collection": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "DONATED_PAPERS_COLLECTION", + "lang": "en" + }, + "comarcal administration fonds": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "COMARCAL_ADMINISTRATION_FONDS", + "lang": "en" + }, + "comarcal history collection": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "COMARCAL_HISTORY_COLLECTION", + "lang": "en" + }, + "community organization fonds": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "COMMUNITY_ORGANIZATION_FONDS", + "lang": "en" + }, + "oral history collection": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "ORAL_HISTORY_COLLECTION", + "lang": "en" + }, + "local event documentation": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "LOCAL_EVENT_DOCUMENTATION", + "lang": "en" + }, + "bedrijfsbestuur": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CORPORATE_GOVERNANCE_FONDS", + "lang": "nl" + }, + "directieverslagen": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CORPORATE_GOVERNANCE_FONDS", + "lang": "nl" + }, + "aandeelhouders": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CORPORATE_GOVERNANCE_FONDS", + "lang": "nl" + }, + "executive records": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CORPORATE_GOVERNANCE_FONDS", + "lang": "nl" + }, + "mergers acquisitions": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CORPORATE_GOVERNANCE_FONDS", + "lang": "nl" + }, + "articles of incorporation": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CORPORATE_GOVERNANCE_FONDS", + "lang": "nl" + }, + "supervisory board": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CORPORATE_GOVERNANCE_FONDS", + "lang": "nl" + }, + "raad van commissarissen": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CORPORATE_GOVERNANCE_FONDS", + "lang": "nl" + }, + "bedrijfsbestuurarchief": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CORPORATE_GOVERNANCE_FONDS", + "lang": "nl" + }, + "corporate governance": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CORPORATE_GOVERNANCE_FONDS", + "lang": "en" + }, + "shareholders": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CORPORATE_GOVERNANCE_FONDS", + "lang": "en" + }, + "statuten": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "UNION_ADMINISTRATION_FONDS", + "lang": "en" + }, + "corporate governance fonds": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CORPORATE_GOVERNANCE_FONDS", + "lang": "en" + }, + "unternehmensfΓΌhrungsbestand": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CORPORATE_GOVERNANCE_FONDS", + "lang": "de" + }, + "fondo de gobierno corporativo": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CORPORATE_GOVERNANCE_FONDS", + "lang": "es" + }, + "fonds de gouvernance d'entreprise": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CORPORATE_GOVERNANCE_FONDS", + "lang": "fr" + }, + "fundo de governanΓ§a corporativa": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CORPORATE_GOVERNANCE_FONDS", + "lang": "pt" + }, + "productontwikkeling": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PRODUCT_DEVELOPMENT_COLLECTION", + "lang": "nl" + }, + "technical drawings": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PRODUCT_DEVELOPMENT_COLLECTION", + "lang": "nl" + }, + "technische tekeningen": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PRODUCT_DEVELOPMENT_COLLECTION", + "lang": "nl" + }, + "octrooien": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PRODUCT_DEVELOPMENT_COLLECTION", + "lang": "nl" + }, + "engineering records": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PRODUCT_DEVELOPMENT_COLLECTION", + "lang": "nl" + }, + "industrial design": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PRODUCT_DEVELOPMENT_COLLECTION", + "lang": "nl" + }, + "laboratory notebooks": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MEDICAL_RESEARCH_COLLECTION", + "lang": "nl" + }, + "productontwikkelingscollectie": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PRODUCT_DEVELOPMENT_COLLECTION", + "lang": "nl" + }, + "product development": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PRODUCT_DEVELOPMENT_COLLECTION", + "lang": "en" + }, + "r&d records": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PRODUCT_DEVELOPMENT_COLLECTION", + "lang": "en" + }, + "research and development": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PRODUCT_DEVELOPMENT_COLLECTION", + "lang": "en" + }, + "patents": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PRODUCT_DEVELOPMENT_COLLECTION", + "lang": "en" + }, + "prototypes": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PRODUCT_DEVELOPMENT_COLLECTION", + "lang": "en" + }, + "product development collection": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PRODUCT_DEVELOPMENT_COLLECTION", + "lang": "en" + }, + "produktentwicklungssammlung": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PRODUCT_DEVELOPMENT_COLLECTION", + "lang": "de" + }, + "colecciΓ³n de desarrollo de productos": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PRODUCT_DEVELOPMENT_COLLECTION", + "lang": "es" + }, + "collection de dΓ©veloppement de produits": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PRODUCT_DEVELOPMENT_COLLECTION", + "lang": "fr" + }, + "coleΓ§Γ£o de desenvolvimento de produtos": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PRODUCT_DEVELOPMENT_COLLECTION", + "lang": "pt" + }, + "marketing archive": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MARKETING_ARCHIVE_COLLECTION", + "lang": "nl" + }, + "marketingarchief": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MARKETING_ARCHIVE_COLLECTION", + "lang": "nl" + }, + "advertising": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MARKETING_ARCHIVE_COLLECTION", + "lang": "nl" + }, + "brand heritage": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MARKETING_ARCHIVE_COLLECTION", + "lang": "nl" + }, + "packaging": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MARKETING_ARCHIVE_COLLECTION", + "lang": "nl" + }, + "verpakking": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MARKETING_ARCHIVE_COLLECTION", + "lang": "nl" + }, + "promotional materials": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "FILM_PROMO_COLLECTION", + "lang": "nl" + }, + "promotiemateriaal": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MARKETING_ARCHIVE_COLLECTION", + "lang": "nl" + }, + "campaigns": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MARKETING_ARCHIVE_COLLECTION", + "lang": "nl" + }, + "trade fair": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MARKETING_ARCHIVE_COLLECTION", + "lang": "nl" + }, + "marketingarchiefcollectie": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MARKETING_ARCHIVE_COLLECTION", + "lang": "nl" + }, + "reclame": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "FILM_PROMO_COLLECTION", + "lang": "en" + }, + "merkerfgoed": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MARKETING_ARCHIVE_COLLECTION", + "lang": "en" + }, + "campagnes": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MARKETING_ARCHIVE_COLLECTION", + "lang": "en" + }, + "beurs": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MARKETING_ARCHIVE_COLLECTION", + "lang": "en" + }, + "marketing archive collection": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MARKETING_ARCHIVE_COLLECTION", + "lang": "en" + }, + "marketingarchivsammlung": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MARKETING_ARCHIVE_COLLECTION", + "lang": "de" + }, + "colecciΓ³n de archivo de marketing": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MARKETING_ARCHIVE_COLLECTION", + "lang": "es" + }, + "collection d'archives marketing": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MARKETING_ARCHIVE_COLLECTION", + "lang": "fr" + }, + "coleΓ§Γ£o de arquivo de marketing": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MARKETING_ARCHIVE_COLLECTION", + "lang": "pt" + }, + "personeelsdossiers": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PERSONNEL_RECORDS_SERIES", + "lang": "nl" + }, + "arbeidsovereenkomsten": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PERSONNEL_RECORDS_SERIES", + "lang": "nl" + }, + "salarisadministratie": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PERSONNEL_RECORDS_SERIES", + "lang": "nl" + }, + "training records": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PERSONNEL_RECORDS_SERIES", + "lang": "nl" + }, + "performance evaluations": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PERSONNEL_RECORDS_SERIES", + "lang": "nl" + }, + "works council": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PERSONNEL_RECORDS_SERIES", + "lang": "nl" + }, + "ondernemingsraad": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PERSONNEL_RECORDS_SERIES", + "lang": "nl" + }, + "personnel records": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MUNICIPAL_ADMINISTRATION_FONDS", + "lang": "en" + }, + "employment contracts": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PERSONNEL_RECORDS_SERIES", + "lang": "en" + }, + "payroll": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PERSONNEL_RECORDS_SERIES", + "lang": "en" + }, + "human resources": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PERSONNEL_RECORDS_SERIES", + "lang": "en" + }, + "hr records": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PERSONNEL_RECORDS_SERIES", + "lang": "en" + }, + "personnel records series": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PERSONNEL_RECORDS_SERIES", + "lang": "en" + }, + "personalakten": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PERSONNEL_RECORDS_SERIES", + "lang": "de" + }, + "expedientes de personal": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PERSONNEL_RECORDS_SERIES", + "lang": "es" + }, + "dossiers du personnel": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PERSONNEL_RECORDS_SERIES", + "lang": "fr" + }, + "registros de pessoal": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PERSONNEL_RECORDS_SERIES", + "lang": "pt" + }, + "corporate publications": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CORPORATE_PUBLICATIONS_SERIES", + "lang": "nl" + }, + "bedrijfspublicaties": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CORPORATE_PUBLICATIONS_SERIES", + "lang": "nl" + }, + "jaarverslagen": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "HOSPITAL_ADMINISTRATION_FONDS", + "lang": "nl" + }, + "house magazines": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CORPORATE_PUBLICATIONS_SERIES", + "lang": "nl" + }, + "personeelsbladen": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CORPORATE_PUBLICATIONS_SERIES", + "lang": "nl" + }, + "nieuwsbrieven": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CORPORATE_PUBLICATIONS_SERIES", + "lang": "nl" + }, + "commemorative publications": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CORPORATE_PUBLICATIONS_SERIES", + "lang": "nl" + }, + "jubileumuitgaven": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CORPORATE_PUBLICATIONS_SERIES", + "lang": "nl" + }, + "corporate communications": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CORPORATE_PUBLICATIONS_SERIES", + "lang": "nl" + }, + "annual reports": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "HOSPITAL_ADMINISTRATION_FONDS", + "lang": "en" + }, + "newsletters": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CORPORATE_PUBLICATIONS_SERIES", + "lang": "en" + }, + "corporate publications series": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CORPORATE_PUBLICATIONS_SERIES", + "lang": "en" + }, + "unternehmenspublikationen": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CORPORATE_PUBLICATIONS_SERIES", + "lang": "de" + }, + "publicaciones corporativas": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CORPORATE_PUBLICATIONS_SERIES", + "lang": "es" + }, + "publications d'entreprise": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CORPORATE_PUBLICATIONS_SERIES", + "lang": "fr" + }, + "publicaΓ§Γ΅es corporativas": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CORPORATE_PUBLICATIONS_SERIES", + "lang": "pt" + }, + "active records fonds": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "ACTIVE_RECORDS_FONDS", + "lang": "en" + }, + "custodial records fonds": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CUSTODIAL_RECORDS_FONDS", + "lang": "en" + }, + "preservation copy collection": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PRESERVATION_COPY_COLLECTION", + "lang": "en" + }, + "digital preservation fonds": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "DIGITAL_PRESERVATION_FONDS", + "lang": "en" + }, + "department administration fonds": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "DEPARTMENT_ADMINISTRATION_FONDS", + "lang": "en" + }, + "prefecture series": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PREFECTURE_SERIES", + "lang": "en" + }, + "deposited records fonds": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "DEPOSITED_RECORDS_FONDS", + "lang": "en" + }, + "digital object collection": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "DIGITAL_OBJECT_COLLECTION", + "lang": "en" + }, + "digitized collection": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "DIGITIZED_COLLECTION", + "lang": "en" + }, + "web archive collection": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "WEB_ARCHIVE_COLLECTION", + "lang": "en" + }, + "digitally inaccessible collection": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "DIGITALLY_INACCESSIBLE_COLLECTION", + "lang": "en" + }, + "diocesan administration fonds": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "DIOCESAN_ADMINISTRATION_FONDS", + "lang": "en" + }, + "parish record series": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PARISH_RECORD_SERIES", + "lang": "en" + }, + "episcopal correspondence collection": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "EPISCOPAL_CORRESPONDENCE_COLLECTION", + "lang": "en" + }, + "kreis administration fonds": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "KREIS_ADMINISTRATION_FONDS", + "lang": "en" + }, + "local governance series": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "LOCAL_GOVERNANCE_SERIES", + "lang": "en" + }, + "distrito administration fonds": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "DISTRITO_ADMINISTRATION_FONDS", + "lang": "en" + }, + "business records fonds": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "BUSINESS_RECORDS_FONDS", + "lang": "en" + }, + "trade documentation collection": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "TRADE_DOCUMENTATION_COLLECTION", + "lang": "en" + }, + "feature films": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "FEATURE_FILM_COLLECTION", + "lang": "nl" + }, + "speelfilms": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "FEATURE_FILM_COLLECTION", + "lang": "nl" + }, + "fiction films": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "FEATURE_FILM_COLLECTION", + "lang": "nl" + }, + "theatrical films": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "FEATURE_FILM_COLLECTION", + "lang": "nl" + }, + "narrative cinema": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "FEATURE_FILM_COLLECTION", + "lang": "nl" + }, + "art films": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "FEATURE_FILM_COLLECTION", + "lang": "nl" + }, + "silent films": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "FEATURE_FILM_COLLECTION", + "lang": "nl" + }, + "studio films": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "FEATURE_FILM_COLLECTION", + "lang": "nl" + }, + "national cinema": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "FEATURE_FILM_COLLECTION", + "lang": "nl" + }, + "speelfilmcollectie": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "FEATURE_FILM_COLLECTION", + "lang": "nl" + }, + "feature film collection": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "FEATURE_FILM_COLLECTION", + "lang": "en" + }, + "spielfilmsammlung": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "FEATURE_FILM_COLLECTION", + "lang": "de" + }, + "colecciΓ³n de largometrajes": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "FEATURE_FILM_COLLECTION", + "lang": "es" + }, + "collection de films de fiction": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "FEATURE_FILM_COLLECTION", + "lang": "fr" + }, + "coleΓ§Γ£o de filmes de ficΓ§Γ£o": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "FEATURE_FILM_COLLECTION", + "lang": "pt" + }, + "documentary films": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "DOCUMENTARY_FILM_COLLECTION", + "lang": "nl" + }, + "documentaires": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "DOCUMENTARY_FILM_COLLECTION", + "lang": "nl" + }, + "non-fiction films": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "DOCUMENTARY_FILM_COLLECTION", + "lang": "nl" + }, + "industrial films": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "DOCUMENTARY_FILM_COLLECTION", + "lang": "nl" + }, + "bedrijfsfilms": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "DOCUMENTARY_FILM_COLLECTION", + "lang": "nl" + }, + "educational films": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "DOCUMENTARY_FILM_COLLECTION", + "lang": "nl" + }, + "onderwijsfilms": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "DOCUMENTARY_FILM_COLLECTION", + "lang": "nl" + }, + "ethnographic films": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "DOCUMENTARY_FILM_COLLECTION", + "lang": "nl" + }, + "sponsored films": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "DOCUMENTARY_FILM_COLLECTION", + "lang": "nl" + }, + "voorlichtingsfilms": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "DOCUMENTARY_FILM_COLLECTION", + "lang": "nl" + }, + "documentairefilmcollectie": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "DOCUMENTARY_FILM_COLLECTION", + "lang": "nl" + }, + "documentary film collection": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "DOCUMENTARY_FILM_COLLECTION", + "lang": "en" + }, + "dokumentarfilmsammlung": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "DOCUMENTARY_FILM_COLLECTION", + "lang": "de" + }, + "colecciΓ³n de documentales": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "DOCUMENTARY_FILM_COLLECTION", + "lang": "es" + }, + "collection de films documentaires": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "DOCUMENTARY_FILM_COLLECTION", + "lang": "fr" + }, + "coleΓ§Γ£o de documentΓ‘rios": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "DOCUMENTARY_FILM_COLLECTION", + "lang": "pt" + }, + "newsreels": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "NEWSREEL_SERIES", + "lang": "nl" + }, + "bioscoopjournaals": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "NEWSREEL_SERIES", + "lang": "nl" + }, + "screen magazines": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "NEWSREEL_SERIES", + "lang": "nl" + }, + "actualities": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "NEWSREEL_SERIES", + "lang": "nl" + }, + "nieuwsfilms": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "NEWSREEL_SERIES", + "lang": "nl" + }, + "wochenschau": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "NEWSREEL_SERIES", + "lang": "nl" + }, + "film news": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "NEWSREEL_SERIES", + "lang": "nl" + }, + "cinematograph news": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "NEWSREEL_SERIES", + "lang": "nl" + }, + "war newsreels": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "NEWSREEL_SERIES", + "lang": "nl" + }, + "polygoon": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "NEWSREEL_SERIES", + "lang": "nl" + }, + "bioscoopjournaalreeks": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "NEWSREEL_SERIES", + "lang": "nl" + }, + "newsreel series": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "NEWSREEL_SERIES", + "lang": "en" + }, + "wochenschausammlung": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "NEWSREEL_SERIES", + "lang": "de" + }, + "colecciΓ³n de noticiarios": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "NEWSREEL_SERIES", + "lang": "es" + }, + "collection de journaux cinΓ©matographiques": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "NEWSREEL_SERIES", + "lang": "fr" + }, + "coleΓ§Γ£o de cinejornais": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "NEWSREEL_SERIES", + "lang": "pt" + }, + "production records": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PRODUCTION_RECORDS_FONDS", + "lang": "nl" + }, + "productiedossiers": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PRODUCTION_RECORDS_FONDS", + "lang": "nl" + }, + "screenplays": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PRODUCTION_RECORDS_FONDS", + "lang": "nl" + }, + "draaiboeken": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PRODUCTION_RECORDS_FONDS", + "lang": "nl" + }, + "scripts": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PRODUCTION_RECORDS_FONDS", + "lang": "nl" + }, + "shooting schedules": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PRODUCTION_RECORDS_FONDS", + "lang": "nl" + }, + "call sheets": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PRODUCTION_RECORDS_FONDS", + "lang": "nl" + }, + "film production": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PRODUCTION_RECORDS_FONDS", + "lang": "nl" + }, + "studio records": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PRODUCTION_RECORDS_FONDS", + "lang": "nl" + }, + "filmmaker papers": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PRODUCTION_RECORDS_FONDS", + "lang": "nl" + }, + "filmproductiearchief": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PRODUCTION_RECORDS_FONDS", + "lang": "nl" + }, + "production records fonds": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PRODUCTION_RECORDS_FONDS", + "lang": "en" + }, + "filmproduktionsbestand": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PRODUCTION_RECORDS_FONDS", + "lang": "de" + }, + "fondo de producciΓ³n cinematogrΓ‘fica": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PRODUCTION_RECORDS_FONDS", + "lang": "es" + }, + "fonds de production cinΓ©matographique": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PRODUCTION_RECORDS_FONDS", + "lang": "fr" + }, + "fundo de produΓ§Γ£o cinematogrΓ‘fica": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PRODUCTION_RECORDS_FONDS", + "lang": "pt" + }, + "film posters": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "FILM_PROMO_COLLECTION", + "lang": "nl" + }, + "filmposters": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "FILM_PROMO_COLLECTION", + "lang": "nl" + }, + "affiches": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "FILM_PROMO_COLLECTION", + "lang": "nl" + }, + "publicity stills": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "FILM_PROMO_COLLECTION", + "lang": "nl" + }, + "press kits": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "FILM_PROMO_COLLECTION", + "lang": "nl" + }, + "perskits": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "FILM_PROMO_COLLECTION", + "lang": "nl" + }, + "trailers": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "FILM_PROMO_COLLECTION", + "lang": "nl" + }, + "film advertising": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "FILM_PROMO_COLLECTION", + "lang": "nl" + }, + "filmpromotiemateriaalcollectie": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "FILM_PROMO_COLLECTION", + "lang": "nl" + }, + "lobby cards": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "FILM_PROMO_COLLECTION", + "lang": "en" + }, + "star photographs": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "FILM_PROMO_COLLECTION", + "lang": "en" + }, + "film promo collection": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "FILM_PROMO_COLLECTION", + "lang": "en" + }, + "filmwerbematerialsammlung": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "FILM_PROMO_COLLECTION", + "lang": "de" + }, + "colecciΓ³n de promociΓ³n cinematogrΓ‘fica": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "FILM_PROMO_COLLECTION", + "lang": "es" + }, + "collection de matΓ©riel promotionnel": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "FILM_PROMO_COLLECTION", + "lang": "fr" + }, + "coleΓ§Γ£o de material promocional": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "FILM_PROMO_COLLECTION", + "lang": "pt" + }, + "foundation administration fonds": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "FOUNDATION_ADMINISTRATION_FONDS", + "lang": "en" + }, + "grant record series": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "GRANT_RECORD_SERIES", + "lang": "en" + }, + "project documentation collection": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PROJECT_DOCUMENTATION_COLLECTION", + "lang": "en" + }, + "open access collection": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "OPEN_ACCESS_COLLECTION", + "lang": "en" + }, + "french private fonds": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "FRENCH_PRIVATE_FONDS", + "lang": "en" + }, + "agency administrative fonds": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "AGENCY_ADMINISTRATIVE_FONDS", + "lang": "en" + }, + "policy document collection": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "POLICY_DOCUMENT_COLLECTION", + "lang": "en" + }, + "public service record series": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PUBLIC_SERVICE_RECORD_SERIES", + "lang": "en" + }, + "historical document fonds": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "HISTORICAL_DOCUMENT_FONDS", + "lang": "en" + }, + "historical manuscript collection": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "HISTORICAL_MANUSCRIPT_COLLECTION", + "lang": "en" + }, + "hospital administration": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "HOSPITAL_ADMINISTRATION_FONDS", + "lang": "nl" + }, + "ziekenhuisbestuur": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "HOSPITAL_ADMINISTRATION_FONDS", + "lang": "nl" + }, + "hospital governance": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "HOSPITAL_ADMINISTRATION_FONDS", + "lang": "nl" + }, + "financial records": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "HOSPITAL_ADMINISTRATION_FONDS", + "lang": "nl" + }, + "personnel administration": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "HOSPITAL_ADMINISTRATION_FONDS", + "lang": "nl" + }, + "ziekenhuisbestuursarchief": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "HOSPITAL_ADMINISTRATION_FONDS", + "lang": "nl" + }, + "notulen": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "HOSPITAL_ADMINISTRATION_FONDS", + "lang": "en" + }, + "healthcare management": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "HOSPITAL_ADMINISTRATION_FONDS", + "lang": "en" + }, + "hospital administration fonds": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "HOSPITAL_ADMINISTRATION_FONDS", + "lang": "en" + }, + "krankenhausverwaltungsbestand": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "HOSPITAL_ADMINISTRATION_FONDS", + "lang": "de" + }, + "fondo de administracion hospitalaria": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "HOSPITAL_ADMINISTRATION_FONDS", + "lang": "es" + }, + "fonds d'administration hospitaliere": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "HOSPITAL_ADMINISTRATION_FONDS", + "lang": "fr" + }, + "fundo de administracao hospitalar": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "HOSPITAL_ADMINISTRATION_FONDS", + "lang": "pt" + }, + "patient records": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PATIENT_RECORDS_SERIES", + "lang": "nl" + }, + "patientendossiers": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PATIENT_RECORDS_SERIES", + "lang": "nl" + }, + "medical records": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PATIENT_RECORDS_SERIES", + "lang": "nl" + }, + "ziektegeschiedenis": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PATIENT_RECORDS_SERIES", + "lang": "nl" + }, + "admission records": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PATIENT_RECORDS_SERIES", + "lang": "nl" + }, + "surgical records": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PATIENT_RECORDS_SERIES", + "lang": "nl" + }, + "operatieverslagen": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PATIENT_RECORDS_SERIES", + "lang": "nl" + }, + "birth registers": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PATIENT_RECORDS_SERIES", + "lang": "nl" + }, + "geboorteregisters": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PATIENT_RECORDS_SERIES", + "lang": "nl" + }, + "death registers": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PATIENT_RECORDS_SERIES", + "lang": "nl" + }, + "overlijdensregisters": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PATIENT_RECORDS_SERIES", + "lang": "nl" + }, + "medical history": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PATIENT_RECORDS_SERIES", + "lang": "nl" + }, + "opnameboeken": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PATIENT_RECORDS_SERIES", + "lang": "en" + }, + "patient records series": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PATIENT_RECORDS_SERIES", + "lang": "en" + }, + "patientenaktenserie": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PATIENT_RECORDS_SERIES", + "lang": "de" + }, + "serie de expedientes de pacientes": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PATIENT_RECORDS_SERIES", + "lang": "es" + }, + "serie de dossiers de patients": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PATIENT_RECORDS_SERIES", + "lang": "fr" + }, + "serie de prontuarios de pacientes": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PATIENT_RECORDS_SERIES", + "lang": "pt" + }, + "medical research": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MEDICAL_RESEARCH_COLLECTION", + "lang": "nl" + }, + "medisch onderzoek": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MEDICAL_RESEARCH_COLLECTION", + "lang": "nl" + }, + "clinical trials": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MEDICAL_RESEARCH_COLLECTION", + "lang": "nl" + }, + "klinische studies": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MEDICAL_RESEARCH_COLLECTION", + "lang": "nl" + }, + "ethics approval": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MEDICAL_RESEARCH_COLLECTION", + "lang": "nl" + }, + "clinical research": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MEDICAL_RESEARCH_COLLECTION", + "lang": "nl" + }, + "medisch onderzoeksarchief": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MEDICAL_RESEARCH_COLLECTION", + "lang": "nl" + }, + "research data": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MEDICAL_RESEARCH_COLLECTION", + "lang": "en" + }, + "onderzoeksgegevens": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MEDICAL_RESEARCH_COLLECTION", + "lang": "en" + }, + "metc": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MEDICAL_RESEARCH_COLLECTION", + "lang": "en" + }, + "research protocols": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MEDICAL_RESEARCH_COLLECTION", + "lang": "en" + }, + "medical research collection": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MEDICAL_RESEARCH_COLLECTION", + "lang": "en" + }, + "medizinische forschungssammlung": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MEDICAL_RESEARCH_COLLECTION", + "lang": "de" + }, + "coleccion de investigacion medica": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MEDICAL_RESEARCH_COLLECTION", + "lang": "es" + }, + "collection de recherche medicale": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MEDICAL_RESEARCH_COLLECTION", + "lang": "fr" + }, + "colecao de pesquisa medica": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MEDICAL_RESEARCH_COLLECTION", + "lang": "pt" + }, + "nursing records": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "NURSING_RECORDS_COLLECTION", + "lang": "nl" + }, + "verpleegkundig archief": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "NURSING_RECORDS_COLLECTION", + "lang": "nl" + }, + "nursing education": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "NURSING_RECORDS_COLLECTION", + "lang": "nl" + }, + "verpleegkundigenopleiding": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "NURSING_RECORDS_COLLECTION", + "lang": "nl" + }, + "nursing school": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "NURSING_RECORDS_COLLECTION", + "lang": "nl" + }, + "leerling-verpleegkundigen": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "NURSING_RECORDS_COLLECTION", + "lang": "nl" + }, + "nursing history": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "NURSING_RECORDS_COLLECTION", + "lang": "nl" + }, + "nursing administration": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "NURSING_RECORDS_COLLECTION", + "lang": "nl" + }, + "nurse training": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "NURSING_RECORDS_COLLECTION", + "lang": "nl" + }, + "nursing profession": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "NURSING_RECORDS_COLLECTION", + "lang": "nl" + }, + "student nurses": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "NURSING_RECORDS_COLLECTION", + "lang": "en" + }, + "nursing records collection": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "NURSING_RECORDS_COLLECTION", + "lang": "en" + }, + "pflegedokumentationssammlung": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "NURSING_RECORDS_COLLECTION", + "lang": "de" + }, + "coleccion de documentacion de enfermeria": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "NURSING_RECORDS_COLLECTION", + "lang": "es" + }, + "collection de documentation infirmiere": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "NURSING_RECORDS_COLLECTION", + "lang": "fr" + }, + "colecao de documentacao de enfermagem": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "NURSING_RECORDS_COLLECTION", + "lang": "pt" + }, + "medical photography": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MEDICAL_PHOTOGRAPHY_COLLECTION", + "lang": "nl" + }, + "medische fotografie": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MEDICAL_PHOTOGRAPHY_COLLECTION", + "lang": "nl" + }, + "clinical photography": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MEDICAL_PHOTOGRAPHY_COLLECTION", + "lang": "nl" + }, + "klinische fotografie": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MEDICAL_PHOTOGRAPHY_COLLECTION", + "lang": "nl" + }, + "medical illustration": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MEDICAL_PHOTOGRAPHY_COLLECTION", + "lang": "nl" + }, + "surgical photography": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MEDICAL_PHOTOGRAPHY_COLLECTION", + "lang": "nl" + }, + "dermatological images": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MEDICAL_PHOTOGRAPHY_COLLECTION", + "lang": "nl" + }, + "pathological specimens": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MEDICAL_PHOTOGRAPHY_COLLECTION", + "lang": "nl" + }, + "teaching slides": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MEDICAL_PHOTOGRAPHY_COLLECTION", + "lang": "nl" + }, + "medical imaging history": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MEDICAL_PHOTOGRAPHY_COLLECTION", + "lang": "nl" + }, + "medische fotocollectie": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MEDICAL_PHOTOGRAPHY_COLLECTION", + "lang": "nl" + }, + "x-rays": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MEDICAL_PHOTOGRAPHY_COLLECTION", + "lang": "en" + }, + "rontgenfoto's": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MEDICAL_PHOTOGRAPHY_COLLECTION", + "lang": "en" + }, + "medical photography collection": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MEDICAL_PHOTOGRAPHY_COLLECTION", + "lang": "en" + }, + "medizinische fotosammlung": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MEDICAL_PHOTOGRAPHY_COLLECTION", + "lang": "de" + }, + "coleccion de fotografia medica": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MEDICAL_PHOTOGRAPHY_COLLECTION", + "lang": "es" + }, + "collection de photographie medicale": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MEDICAL_PHOTOGRAPHY_COLLECTION", + "lang": "fr" + }, + "colecao de fotografia medica": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MEDICAL_PHOTOGRAPHY_COLLECTION", + "lang": "pt" + }, + "house records fonds": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "HOUSE_RECORDS_FONDS", + "lang": "en" + }, + "family papers collection": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "FAMILY_PAPERS_COLLECTION", + "lang": "en" + }, + "estate document series": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "ESTATE_DOCUMENT_SERIES", + "lang": "en" + }, + "visual image collection": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "VISUAL_IMAGE_COLLECTION", + "lang": "en" + }, + "print collection": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PRINT_COLLECTION", + "lang": "en" + }, + "institution administration fonds": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "INSTITUTION_ADMINISTRATION_FONDS", + "lang": "en" + }, + "operational record series": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "OPERATIONAL_RECORD_SERIES", + "lang": "en" + }, + "shared records fonds": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "SHARED_RECORDS_FONDS", + "lang": "en" + }, + "l g b t organization fonds": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "LGBTORGANIZATION_FONDS", + "lang": "en" + }, + "activist papers collection": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "ACTIVIST_PAPERS_COLLECTION", + "lang": "en" + }, + "pride event collection": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PRIDE_EVENT_COLLECTION", + "lang": "en" + }, + "minimal processing collection": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MINIMAL_PROCESSING_COLLECTION", + "lang": "en" + }, + "author papers collection": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "AUTHOR_PAPERS_COLLECTION", + "lang": "en" + }, + "literary manuscript collection": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "LITERARY_MANUSCRIPT_COLLECTION", + "lang": "en" + }, + "publisher records series": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PUBLISHER_RECORDS_SERIES", + "lang": "en" + }, + "local administration fonds": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "LOCAL_ADMINISTRATION_FONDS", + "lang": "en" + }, + "public works series": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PUBLIC_WORKS_SERIES", + "lang": "en" + }, + "local tax records series": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "LOCAL_TAX_RECORDS_SERIES", + "lang": "en" + }, + "local history fonds": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "LOCAL_HISTORY_FONDS", + "lang": "en" + }, + "community photograph collection": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "COMMUNITY_PHOTOGRAPH_COLLECTION", + "lang": "en" + }, + "local newspaper collection": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "LOCAL_NEWSPAPER_COLLECTION", + "lang": "en" + }, + "email archive collection": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "EMAIL_ARCHIVE_COLLECTION", + "lang": "en" + }, + "discussion forum fonds": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "DISCUSSION_FORUM_FONDS", + "lang": "en" + }, + "media production fonds": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MEDIA_PRODUCTION_FONDS", + "lang": "en" + }, + "broadcast collection": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "BROADCAST_COLLECTION", + "lang": "en" + }, + "military operations": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MILITARY_OPERATIONS_FONDS", + "lang": "nl" + }, + "operatiebevelen": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MILITARY_OPERATIONS_FONDS", + "lang": "nl" + }, + "war diaries": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MILITARY_OPERATIONS_FONDS", + "lang": "nl" + }, + "oorlogsdagboeken": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MILITARY_OPERATIONS_FONDS", + "lang": "nl" + }, + "campaign records": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MILITARY_OPERATIONS_FONDS", + "lang": "nl" + }, + "veldtocht": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MILITARY_OPERATIONS_FONDS", + "lang": "nl" + }, + "gevechtsverslagen": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MILITARY_OPERATIONS_FONDS", + "lang": "nl" + }, + "intelligence reports": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MILITARY_OPERATIONS_FONDS", + "lang": "nl" + }, + "militaire operatiearchief": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MILITARY_OPERATIONS_FONDS", + "lang": "nl" + }, + "combat records": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MILITARY_OPERATIONS_FONDS", + "lang": "en" + }, + "command records": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MILITARY_OPERATIONS_FONDS", + "lang": "en" + }, + "military operations fonds": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MILITARY_OPERATIONS_FONDS", + "lang": "en" + }, + "militΓ€roperationsbestand": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MILITARY_OPERATIONS_FONDS", + "lang": "de" + }, + "fondo de operaciones militares": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MILITARY_OPERATIONS_FONDS", + "lang": "es" + }, + "fonds d'opΓ©rations militaires": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MILITARY_OPERATIONS_FONDS", + "lang": "fr" + }, + "fundo de operaΓ§Γ΅es militares": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MILITARY_OPERATIONS_FONDS", + "lang": "pt" + }, + "military personnel": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MILITARY_PERSONNEL_SERIES", + "lang": "nl" + }, + "service records": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MILITARY_PERSONNEL_SERIES", + "lang": "nl" + }, + "staten van dienst": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MILITARY_PERSONNEL_SERIES", + "lang": "nl" + }, + "enlistment records": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MILITARY_PERSONNEL_SERIES", + "lang": "nl" + }, + "inschrijving": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MILITARY_PERSONNEL_SERIES", + "lang": "nl" + }, + "decorations": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MILITARY_PERSONNEL_SERIES", + "lang": "nl" + }, + "onderscheidingen": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MILITARY_PERSONNEL_SERIES", + "lang": "nl" + }, + "discharge": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MILITARY_PERSONNEL_SERIES", + "lang": "nl" + }, + "military genealogy": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MILITARY_PERSONNEL_SERIES", + "lang": "nl" + }, + "militaire stamboeken": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MILITARY_PERSONNEL_SERIES", + "lang": "nl" + }, + "stamboeken": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MILITARY_PERSONNEL_SERIES", + "lang": "en" + }, + "muster rolls": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MILITARY_PERSONNEL_SERIES", + "lang": "en" + }, + "military personnel series": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MILITARY_PERSONNEL_SERIES", + "lang": "en" + }, + "militΓ€rpersonalakten": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MILITARY_PERSONNEL_SERIES", + "lang": "de" + }, + "expedientes de personal militar": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MILITARY_PERSONNEL_SERIES", + "lang": "es" + }, + "dossiers du personnel militaire": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MILITARY_PERSONNEL_SERIES", + "lang": "fr" + }, + "registros de pessoal militar": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MILITARY_PERSONNEL_SERIES", + "lang": "pt" + }, + "unit history": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "UNIT_HISTORY_COLLECTION", + "lang": "nl" + }, + "regimentsgeschiedenis": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "UNIT_HISTORY_COLLECTION", + "lang": "nl" + }, + "regimental records": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "UNIT_HISTORY_COLLECTION", + "lang": "nl" + }, + "battalion history": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "UNIT_HISTORY_COLLECTION", + "lang": "nl" + }, + "ship records": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "UNIT_HISTORY_COLLECTION", + "lang": "nl" + }, + "scheepsarchief": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "UNIT_HISTORY_COLLECTION", + "lang": "nl" + }, + "erelijst": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "UNIT_HISTORY_COLLECTION", + "lang": "nl" + }, + "veterans associations": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "UNIT_HISTORY_COLLECTION", + "lang": "nl" + }, + "regimentsarchieven": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "UNIT_HISTORY_COLLECTION", + "lang": "nl" + }, + "squadron records": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "UNIT_HISTORY_COLLECTION", + "lang": "en" + }, + "battle honors": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "UNIT_HISTORY_COLLECTION", + "lang": "en" + }, + "honor rolls": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "UNIT_HISTORY_COLLECTION", + "lang": "en" + }, + "unit history collection": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "UNIT_HISTORY_COLLECTION", + "lang": "en" + }, + "regimentsgeschichtesammlung": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "UNIT_HISTORY_COLLECTION", + "lang": "de" + }, + "colecciΓ³n de historias de unidades": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "UNIT_HISTORY_COLLECTION", + "lang": "es" + }, + "collection d'histoires d'unitΓ©s": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "UNIT_HISTORY_COLLECTION", + "lang": "fr" + }, + "coleΓ§Γ£o de histΓ³rias de unidades": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "UNIT_HISTORY_COLLECTION", + "lang": "pt" + }, + "military maps": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MILITARY_MAPS_COLLECTION", + "lang": "nl" + }, + "militaire kaarten": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MILITARY_MAPS_COLLECTION", + "lang": "nl" + }, + "gevechtskaarten": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MILITARY_MAPS_COLLECTION", + "lang": "nl" + }, + "fortification plans": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MILITARY_MAPS_COLLECTION", + "lang": "nl" + }, + "vestingplannen": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MILITARY_MAPS_COLLECTION", + "lang": "nl" + }, + "aerial photographs": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MILITARY_MAPS_COLLECTION", + "lang": "nl" + }, + "luchtfoto's": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MILITARY_MAPS_COLLECTION", + "lang": "nl" + }, + "strategic maps": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MILITARY_MAPS_COLLECTION", + "lang": "nl" + }, + "tactical maps": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MILITARY_MAPS_COLLECTION", + "lang": "nl" + }, + "militaire kaartenverzameling": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MILITARY_MAPS_COLLECTION", + "lang": "nl" + }, + "battle maps": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MILITARY_MAPS_COLLECTION", + "lang": "en" + }, + "survey maps": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MILITARY_MAPS_COLLECTION", + "lang": "en" + }, + "cartography": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MILITARY_MAPS_COLLECTION", + "lang": "en" + }, + "military maps collection": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MILITARY_MAPS_COLLECTION", + "lang": "en" + }, + "militΓ€rkatensammlung": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MILITARY_MAPS_COLLECTION", + "lang": "de" + }, + "colecciΓ³n de mapas militares": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MILITARY_MAPS_COLLECTION", + "lang": "es" + }, + "collection de cartes militaires": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MILITARY_MAPS_COLLECTION", + "lang": "fr" + }, + "coleΓ§Γ£o de mapas militares": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MILITARY_MAPS_COLLECTION", + "lang": "pt" + }, + "veterans documentation": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "VETERANS_DOCUMENTATION_COLLECTION", + "lang": "nl" + }, + "veteranendocumentatie": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "VETERANS_DOCUMENTATION_COLLECTION", + "lang": "nl" + }, + "oorlogsgraven": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "VETERANS_DOCUMENTATION_COLLECTION", + "lang": "nl" + }, + "commemoration": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "VETERANS_DOCUMENTATION_COLLECTION", + "lang": "nl" + }, + "herdenking": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "VETERANS_DOCUMENTATION_COLLECTION", + "lang": "nl" + }, + "memorials": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "VETERANS_DOCUMENTATION_COLLECTION", + "lang": "nl" + }, + "oral history": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "REGIONAL_HISTORY_COLLECTION", + "lang": "nl" + }, + "war testimonies": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "VETERANS_DOCUMENTATION_COLLECTION", + "lang": "nl" + }, + "resistance": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "VETERANS_DOCUMENTATION_COLLECTION", + "lang": "nl" + }, + "krijgsgevangenen": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "VETERANS_DOCUMENTATION_COLLECTION", + "lang": "nl" + }, + "veteranendocumentatiecollectie": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "VETERANS_DOCUMENTATION_COLLECTION", + "lang": "nl" + }, + "war graves": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "VETERANS_DOCUMENTATION_COLLECTION", + "lang": "en" + }, + "monumenten": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "URBAN_PLANNING_COLLECTION", + "lang": "en" + }, + "verzet": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "VETERANS_DOCUMENTATION_COLLECTION", + "lang": "en" + }, + "pow": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "VETERANS_DOCUMENTATION_COLLECTION", + "lang": "en" + }, + "veterans documentation collection": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "VETERANS_DOCUMENTATION_COLLECTION", + "lang": "en" + }, + "veteranendokumentationssammlung": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "VETERANS_DOCUMENTATION_COLLECTION", + "lang": "de" + }, + "colecciΓ³n de documentaciΓ³n de veteranos": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "VETERANS_DOCUMENTATION_COLLECTION", + "lang": "es" + }, + "collection de documentation des anciens combattants": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "VETERANS_DOCUMENTATION_COLLECTION", + "lang": "fr" + }, + "coleΓ§Γ£o de documentaΓ§Γ£o de veteranos": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "VETERANS_DOCUMENTATION_COLLECTION", + "lang": "pt" + }, + "monastic records fonds": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MONASTIC_RECORDS_FONDS", + "lang": "en" + }, + "monastic manuscript collection": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MONASTIC_MANUSCRIPT_COLLECTION", + "lang": "en" + }, + "property records series": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PROPERTY_RECORDS_SERIES", + "lang": "en" + }, + "council minutes": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "COUNCIL_GOVERNANCE_FONDS", + "lang": "nl" + }, + "gemeenteraad": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "COUNCIL_GOVERNANCE_FONDS", + "lang": "nl" + }, + "ordinances": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "COUNCIL_GOVERNANCE_FONDS", + "lang": "nl" + }, + "verordeningen": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "COUNCIL_GOVERNANCE_FONDS", + "lang": "nl" + }, + "resolutions": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "COUNCIL_GOVERNANCE_FONDS", + "lang": "nl" + }, + "besluiten": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "COUNCIL_GOVERNANCE_FONDS", + "lang": "nl" + }, + "b&w besluiten": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "COUNCIL_GOVERNANCE_FONDS", + "lang": "nl" + }, + "election records": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "COUNCIL_GOVERNANCE_FONDS", + "lang": "nl" + }, + "civic ceremonies": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "COUNCIL_GOVERNANCE_FONDS", + "lang": "nl" + }, + "gemeenteraadsarchief": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "COUNCIL_GOVERNANCE_FONDS", + "lang": "nl" + }, + "bylaws": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "UNION_ADMINISTRATION_FONDS", + "lang": "en" + }, + "mayor correspondence": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "COUNCIL_GOVERNANCE_FONDS", + "lang": "en" + }, + "aldermen records": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "COUNCIL_GOVERNANCE_FONDS", + "lang": "en" + }, + "council governance fonds": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "COUNCIL_GOVERNANCE_FONDS", + "lang": "en" + }, + "ratsarchivbestand": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "COUNCIL_GOVERNANCE_FONDS", + "lang": "de" + }, + "fondo de actas municipales": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "COUNCIL_GOVERNANCE_FONDS", + "lang": "es" + }, + "fonds du conseil municipal": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "COUNCIL_GOVERNANCE_FONDS", + "lang": "fr" + }, + "fundo da cΓ’mara municipal": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "COUNCIL_GOVERNANCE_FONDS", + "lang": "pt" + }, + "civil registry": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CIVIL_REGISTRY_SERIES", + "lang": "nl" + }, + "burgerlijke stand": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CIVIL_REGISTRY_SERIES", + "lang": "nl" + }, + "birth records": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CIVIL_REGISTRY_SERIES", + "lang": "nl" + }, + "geboorteakten": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CIVIL_REGISTRY_SERIES", + "lang": "nl" + }, + "huwelijksakten": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CIVIL_REGISTRY_SERIES", + "lang": "nl" + }, + "overlijdensakten": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CIVIL_REGISTRY_SERIES", + "lang": "nl" + }, + "population register": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CIVIL_REGISTRY_SERIES", + "lang": "nl" + }, + "bevolkingsregister": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CIVIL_REGISTRY_SERIES", + "lang": "nl" + }, + "death records": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CIVIL_REGISTRY_SERIES", + "lang": "en" + }, + "civil registry series": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CIVIL_REGISTRY_SERIES", + "lang": "en" + }, + "standesamtsregister": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CIVIL_REGISTRY_SERIES", + "lang": "de" + }, + "registros civiles": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CIVIL_REGISTRY_SERIES", + "lang": "es" + }, + "registres d'Γ©tat civil": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CIVIL_REGISTRY_SERIES", + "lang": "fr" + }, + "registros civis": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CIVIL_REGISTRY_SERIES", + "lang": "pt" + }, + "municipal administration": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MUNICIPAL_ADMINISTRATION_FONDS", + "lang": "nl" + }, + "gemeente diensten": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MUNICIPAL_ADMINISTRATION_FONDS", + "lang": "nl" + }, + "public works": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MUNICIPAL_ADMINISTRATION_FONDS", + "lang": "nl" + }, + "finance records": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MUNICIPAL_ADMINISTRATION_FONDS", + "lang": "nl" + }, + "financien": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MUNICIPAL_ADMINISTRATION_FONDS", + "lang": "nl" + }, + "social services": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MUNICIPAL_ADMINISTRATION_FONDS", + "lang": "nl" + }, + "sociale zaken": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MUNICIPAL_ADMINISTRATION_FONDS", + "lang": "nl" + }, + "personeelszaken": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MUNICIPAL_ADMINISTRATION_FONDS", + "lang": "nl" + }, + "gemeentelijke dienstarchief": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MUNICIPAL_ADMINISTRATION_FONDS", + "lang": "nl" + }, + "openbare werken": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MUNICIPAL_ADMINISTRATION_FONDS", + "lang": "en" + }, + "department records": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MUNICIPAL_ADMINISTRATION_FONDS", + "lang": "en" + }, + "municipal administration fonds": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MUNICIPAL_ADMINISTRATION_FONDS", + "lang": "en" + }, + "kommunalverwaltungsbestand": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MUNICIPAL_ADMINISTRATION_FONDS", + "lang": "de" + }, + "fondo de administraciΓ³n municipal": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MUNICIPAL_ADMINISTRATION_FONDS", + "lang": "es" + }, + "fonds d'administration municipale": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MUNICIPAL_ADMINISTRATION_FONDS", + "lang": "fr" + }, + "fundo de administraΓ§Γ£o municipal": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MUNICIPAL_ADMINISTRATION_FONDS", + "lang": "pt" + }, + "urban planning": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "URBAN_PLANNING_COLLECTION", + "lang": "nl" + }, + "building permits": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "URBAN_PLANNING_COLLECTION", + "lang": "nl" + }, + "bouwvergunningen": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "URBAN_PLANNING_COLLECTION", + "lang": "nl" + }, + "building plans": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "URBAN_PLANNING_COLLECTION", + "lang": "nl" + }, + "bouwtekeningen": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "URBAN_PLANNING_COLLECTION", + "lang": "nl" + }, + "zoning": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "URBAN_PLANNING_COLLECTION", + "lang": "nl" + }, + "bestemmingsplannen": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "URBAN_PLANNING_COLLECTION", + "lang": "nl" + }, + "stedenbouwkundige collectie": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "URBAN_PLANNING_COLLECTION", + "lang": "nl" + }, + "stedenbouw": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "URBAN_PLANNING_COLLECTION", + "lang": "en" + }, + "maps": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "URBAN_PLANNING_COLLECTION", + "lang": "en" + }, + "plattegronden": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "URBAN_PLANNING_COLLECTION", + "lang": "en" + }, + "monuments": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "URBAN_PLANNING_COLLECTION", + "lang": "en" + }, + "cadastral records": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "URBAN_PLANNING_COLLECTION", + "lang": "en" + }, + "urban planning collection": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "URBAN_PLANNING_COLLECTION", + "lang": "en" + }, + "stadtplanungssammlung": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "URBAN_PLANNING_COLLECTION", + "lang": "de" + }, + "colecciΓ³n de urbanismo": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "URBAN_PLANNING_COLLECTION", + "lang": "es" + }, + "collection d'urbanisme": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "URBAN_PLANNING_COLLECTION", + "lang": "fr" + }, + "coleΓ§Γ£o de urbanismo": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "URBAN_PLANNING_COLLECTION", + "lang": "pt" + }, + "local history": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "LOCAL_HISTORY_COLLECTION", + "lang": "nl" + }, + "plaatselijke geschiedenis": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "LOCAL_HISTORY_COLLECTION", + "lang": "nl" + }, + "prentbriefkaarten": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "LOCAL_HISTORY_COLLECTION", + "lang": "nl" + }, + "community history": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "LOCAL_HISTORY_COLLECTION", + "lang": "nl" + }, + "local businesses": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "LOCAL_HISTORY_COLLECTION", + "lang": "nl" + }, + "heemkunde": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "LOCAL_HISTORY_COLLECTION", + "lang": "nl" + }, + "lokaalhistorische collectie": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "LOCAL_HISTORY_COLLECTION", + "lang": "nl" + }, + "foto's": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "LOCAL_HISTORY_COLLECTION", + "lang": "en" + }, + "postcards": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "REGIONAL_HISTORY_COLLECTION", + "lang": "en" + }, + "newspapers": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "LOCAL_HISTORY_COLLECTION", + "lang": "en" + }, + "kranten": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "LOCAL_HISTORY_COLLECTION", + "lang": "en" + }, + "local history collection": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "LOCAL_HISTORY_COLLECTION", + "lang": "en" + }, + "ortsgeschichtliche sammlung": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "LOCAL_HISTORY_COLLECTION", + "lang": "de" + }, + "colecciΓ³n de historia local": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "LOCAL_HISTORY_COLLECTION", + "lang": "es" + }, + "collection d'histoire locale": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "LOCAL_HISTORY_COLLECTION", + "lang": "fr" + }, + "coleΓ§Γ£o de histΓ³ria local": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "LOCAL_HISTORY_COLLECTION", + "lang": "pt" + }, + "museum administration fonds": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MUSEUM_ADMINISTRATION_FONDS", + "lang": "en" + }, + "collection documentation series": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "COLLECTION_DOCUMENTATION_SERIES", + "lang": "en" + }, + "exhibition record collection": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "EXHIBITION_RECORD_COLLECTION", + "lang": "en" + }, + "music manuscript collection": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MUSIC_MANUSCRIPT_COLLECTION", + "lang": "en" + }, + "performance recording series": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PERFORMANCE_RECORDING_SERIES", + "lang": "en" + }, + "composer papers collection": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "COMPOSER_PAPERS_COLLECTION", + "lang": "en" + }, + "government administrative fonds": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "GOVERNMENT_ADMINISTRATIVE_FONDS", + "lang": "en" + }, + "legislative record series": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "LEGISLATIVE_RECORD_SERIES", + "lang": "en" + }, + "diplomatic correspondence collection": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "DIPLOMATIC_CORRESPONDENCE_COLLECTION", + "lang": "en" + }, + "national statistics series": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "NATIONAL_STATISTICS_SERIES", + "lang": "en" + }, + "clippings collection": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CLIPPINGS_COLLECTION", + "lang": "en" + }, + "subject file collection": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "SUBJECT_FILE_COLLECTION", + "lang": "en" + }, + "noble family papers fonds": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "NOBLE_FAMILY_PAPERS_FONDS", + "lang": "en" + }, + "estate records series": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "ESTATE_RECORDS_SERIES", + "lang": "en" + }, + "genealogy collection": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "GENEALOGY_COLLECTION", + "lang": "en" + }, + "notarial acts series": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "NOTARIAL_ACTS_SERIES", + "lang": "en" + }, + "protocol series": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PROTOCOL_SERIES", + "lang": "en" + }, + "digital news collection": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "DIGITAL_NEWS_COLLECTION", + "lang": "en" + }, + "web publication fonds": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "WEB_PUBLICATION_FONDS", + "lang": "en" + }, + "parish specific register series": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PARISH_SPECIFIC_REGISTER_SERIES", + "lang": "en" + }, + "parish administration fonds": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PARISH_ADMINISTRATION_FONDS", + "lang": "en" + }, + "sacramental record collection": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "SACRAMENTAL_RECORD_COLLECTION", + "lang": "en" + }, + "parliamentary proceedings fonds": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PARLIAMENTARY_PROCEEDINGS_FONDS", + "lang": "en" + }, + "committee record series": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "COMMITTEE_RECORD_SERIES", + "lang": "en" + }, + "legislative draft collection": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "LEGISLATIVE_DRAFT_COLLECTION", + "lang": "en" + }, + "party administration fonds": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PARTY_ADMINISTRATION_FONDS", + "lang": "en" + }, + "membership record series": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MEMBERSHIP_RECORD_SERIES", + "lang": "en" + }, + "theatre records fonds": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "THEATRE_RECORDS_FONDS", + "lang": "en" + }, + "performance documentation collection": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PERFORMANCE_DOCUMENTATION_COLLECTION", + "lang": "en" + }, + "performing arts production record series": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PERFORMING_ARTS_PRODUCTION_RECORD_SERIES", + "lang": "en" + }, + "photographer papers collection": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PHOTOGRAPHER_PAPERS_COLLECTION", + "lang": "en" + }, + "photographic print series": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PHOTOGRAPHIC_PRINT_SERIES", + "lang": "en" + }, + "digital image collection": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "DIGITAL_IMAGE_COLLECTION", + "lang": "en" + }, + "political party fonds": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "POLITICAL_PARTY_FONDS", + "lang": "en" + }, + "campaign record collection": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CAMPAIGN_RECORD_COLLECTION", + "lang": "en" + }, + "politician papers collection": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "POLITICIAN_PAPERS_COLLECTION", + "lang": "en" + }, + "distributed records collection": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "DISTRIBUTED_RECORDS_COLLECTION", + "lang": "en" + }, + "newspaper publication fonds": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "NEWSPAPER_PUBLICATION_FONDS", + "lang": "en" + }, + "journalist papers collection": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "JOURNALIST_PAPERS_COLLECTION", + "lang": "en" + }, + "editorial record series": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "EDITORIAL_RECORD_SERIES", + "lang": "en" + }, + "provincial administration fonds": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PROVINCIAL_ADMINISTRATION_FONDS", + "lang": "en" + }, + "regional planning collection": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "REGIONAL_PLANNING_COLLECTION", + "lang": "en" + }, + "provincial court series": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PROVINCIAL_COURT_SERIES", + "lang": "en" + }, + "provincial historical fonds": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PROVINCIAL_HISTORICAL_FONDS", + "lang": "en" + }, + "public records fonds": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PUBLIC_RECORDS_FONDS", + "lang": "en" + }, + "civic documentation collection": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CIVIC_DOCUMENTATION_COLLECTION", + "lang": "en" + }, + "administrative correspondence series": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "ADMINISTRATIVE_CORRESPONDENCE_SERIES", + "lang": "en" + }, + "french public fonds": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "FRENCH_PUBLIC_FONDS", + "lang": "en" + }, + "broadcast recording fonds": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "BROADCAST_RECORDING_FONDS", + "lang": "en" + }, + "radio script collection": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "RADIO_SCRIPT_COLLECTION", + "lang": "en" + }, + "station administration series": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "STATION_ADMINISTRATION_SERIES", + "lang": "en" + }, + "provincial government records": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "REGIONAL_GOVERNANCE_FONDS", + "lang": "nl" + }, + "regional council": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "REGIONAL_GOVERNANCE_FONDS", + "lang": "nl" + }, + "provincial states": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "REGIONAL_GOVERNANCE_FONDS", + "lang": "nl" + }, + "gedeputeerde staten": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "REGIONAL_GOVERNANCE_FONDS", + "lang": "nl" + }, + "commissaris van de koning": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "REGIONAL_GOVERNANCE_FONDS", + "lang": "nl" + }, + "regional policy": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "REGIONAL_GOVERNANCE_FONDS", + "lang": "nl" + }, + "intergovernmental records": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "REGIONAL_GOVERNANCE_FONDS", + "lang": "nl" + }, + "provincial administration": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "REGIONAL_GOVERNANCE_FONDS", + "lang": "nl" + }, + "regional planning": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "REGIONAL_GOVERNANCE_FONDS", + "lang": "nl" + }, + "provinciaal bestuursarchief": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "REGIONAL_GOVERNANCE_FONDS", + "lang": "nl" + }, + "regional governance fonds": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "REGIONAL_GOVERNANCE_FONDS", + "lang": "en" + }, + "regionalverwaltungsbestand": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "REGIONAL_GOVERNANCE_FONDS", + "lang": "de" + }, + "fondo de gobierno regional": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "REGIONAL_GOVERNANCE_FONDS", + "lang": "es" + }, + "fonds de gouvernement rΓ©gional": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "REGIONAL_GOVERNANCE_FONDS", + "lang": "fr" + }, + "fundo de governo regional": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "REGIONAL_GOVERNANCE_FONDS", + "lang": "pt" + }, + "land registry": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CADASTRAL_AND_LAND_RECORDS_FONDS", + "lang": "nl" + }, + "tithe records": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CADASTRAL_AND_LAND_RECORDS_FONDS", + "lang": "nl" + }, + "oud-rechterlijk archief": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CADASTRAL_AND_LAND_RECORDS_FONDS", + "lang": "nl" + }, + "kadasterarchief": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CADASTRAL_AND_LAND_RECORDS_FONDS", + "lang": "nl" + }, + "cadastral maps": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CADASTRAL_AND_LAND_RECORDS_FONDS", + "lang": "en" + }, + "property records": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CADASTRAL_AND_LAND_RECORDS_FONDS", + "lang": "en" + }, + "kadaster": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CADASTRAL_AND_LAND_RECORDS_FONDS", + "lang": "en" + }, + "grondboeken": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CADASTRAL_AND_LAND_RECORDS_FONDS", + "lang": "en" + }, + "property transfer": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CADASTRAL_AND_LAND_RECORDS_FONDS", + "lang": "en" + }, + "mortgage records": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CADASTRAL_AND_LAND_RECORDS_FONDS", + "lang": "en" + }, + "land surveyor": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CADASTRAL_AND_LAND_RECORDS_FONDS", + "lang": "en" + }, + "feudal records": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CADASTRAL_AND_LAND_RECORDS_FONDS", + "lang": "en" + }, + "cadastral and land records fonds": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CADASTRAL_AND_LAND_RECORDS_FONDS", + "lang": "en" + }, + "katasterbestand": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CADASTRAL_AND_LAND_RECORDS_FONDS", + "lang": "de" + }, + "fondo catastral": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CADASTRAL_AND_LAND_RECORDS_FONDS", + "lang": "es" + }, + "fonds cadastral": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CADASTRAL_AND_LAND_RECORDS_FONDS", + "lang": "fr" + }, + "fundo cadastral": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CADASTRAL_AND_LAND_RECORDS_FONDS", + "lang": "pt" + }, + "notarial protocols": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "NOTARIAL_PROTOCOL_SERIES", + "lang": "nl" + }, + "notarieel archief": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "NOTARIAL_PROTOCOL_SERIES", + "lang": "nl" + }, + "wills": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "NOTARIAL_PROTOCOL_SERIES", + "lang": "nl" + }, + "marriage contracts": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "NOTARIAL_PROTOCOL_SERIES", + "lang": "nl" + }, + "minuutakten": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "NOTARIAL_PROTOCOL_SERIES", + "lang": "nl" + }, + "estate inventories": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "NOTARIAL_PROTOCOL_SERIES", + "lang": "nl" + }, + "notariΓ«le protocollen": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "NOTARIAL_PROTOCOL_SERIES", + "lang": "nl" + }, + "testaments": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "NOTARIAL_PROTOCOL_SERIES", + "lang": "en" + }, + "property transfers": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "NOTARIAL_PROTOCOL_SERIES", + "lang": "en" + }, + "powers of attorney": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "NOTARIAL_PROTOCOL_SERIES", + "lang": "en" + }, + "contracts": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "NOTARIAL_PROTOCOL_SERIES", + "lang": "en" + }, + "notarial protocol series": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "NOTARIAL_PROTOCOL_SERIES", + "lang": "en" + }, + "notariatsprotokolle": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "NOTARIAL_PROTOCOL_SERIES", + "lang": "de" + }, + "protocolos notariales": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "NOTARIAL_PROTOCOL_SERIES", + "lang": "es" + }, + "minutes notariales": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "NOTARIAL_PROTOCOL_SERIES", + "lang": "fr" + }, + "protocolos notariais": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "NOTARIAL_PROTOCOL_SERIES", + "lang": "pt" + }, + "regional history": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "REGIONAL_HISTORY_COLLECTION", + "lang": "nl" + }, + "regional newspapers": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "REGIONAL_HISTORY_COLLECTION", + "lang": "nl" + }, + "regional maps": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "REGIONAL_HISTORY_COLLECTION", + "lang": "nl" + }, + "streekgeschiedenis": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "REGIONAL_HISTORY_COLLECTION", + "lang": "nl" + }, + "local publications": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "REGIONAL_HISTORY_COLLECTION", + "lang": "nl" + }, + "regional culture": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "REGIONAL_HISTORY_COLLECTION", + "lang": "nl" + }, + "streekhistorische collectie": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "REGIONAL_HISTORY_COLLECTION", + "lang": "nl" + }, + "local photographs": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "REGIONAL_HISTORY_COLLECTION", + "lang": "en" + }, + "regional history collection": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "REGIONAL_HISTORY_COLLECTION", + "lang": "en" + }, + "regionalgeschichtliche sammlung": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "REGIONAL_HISTORY_COLLECTION", + "lang": "de" + }, + "colecciΓ³n de historia regional": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "REGIONAL_HISTORY_COLLECTION", + "lang": "es" + }, + "collection d'histoire rΓ©gionale": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "REGIONAL_HISTORY_COLLECTION", + "lang": "fr" + }, + "coleΓ§Γ£o de histΓ³ria regional": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "REGIONAL_HISTORY_COLLECTION", + "lang": "pt" + }, + "waterschap": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "WATER_MANAGEMENT_FONDS", + "lang": "nl" + }, + "dike administration": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "WATER_MANAGEMENT_FONDS", + "lang": "nl" + }, + "flood control": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "WATER_MANAGEMENT_FONDS", + "lang": "nl" + }, + "land reclamation": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "WATER_MANAGEMENT_FONDS", + "lang": "nl" + }, + "drooglegging": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "WATER_MANAGEMENT_FONDS", + "lang": "nl" + }, + "dijkgraaf": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "WATER_MANAGEMENT_FONDS", + "lang": "nl" + }, + "heemraden": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "WATER_MANAGEMENT_FONDS", + "lang": "nl" + }, + "pumping stations": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "WATER_MANAGEMENT_FONDS", + "lang": "nl" + }, + "sluices": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "WATER_MANAGEMENT_FONDS", + "lang": "nl" + }, + "waterschapsarchief": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "WATER_MANAGEMENT_FONDS", + "lang": "nl" + }, + "water board": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "WATER_MANAGEMENT_FONDS", + "lang": "en" + }, + "polder records": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "WATER_MANAGEMENT_FONDS", + "lang": "en" + }, + "water management": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "WATER_MANAGEMENT_FONDS", + "lang": "en" + }, + "water management fonds": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "WATER_MANAGEMENT_FONDS", + "lang": "en" + }, + "wasserverbandsbestand": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "WATER_MANAGEMENT_FONDS", + "lang": "de" + }, + "fondo de gestiΓ³n del agua": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "WATER_MANAGEMENT_FONDS", + "lang": "es" + }, + "fonds de gestion de l'eau": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "WATER_MANAGEMENT_FONDS", + "lang": "fr" + }, + "fundo de gestΓ£o de Γ‘guas": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "WATER_MANAGEMENT_FONDS", + "lang": "pt" + }, + "icelandic regional fonds": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "ICELANDIC_REGIONAL_FONDS", + "lang": "en" + }, + "regional business fonds": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "REGIONAL_BUSINESS_FONDS", + "lang": "en" + }, + "regional state fonds": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "REGIONAL_STATE_FONDS", + "lang": "en" + }, + "religious institution fonds": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "RELIGIOUS_INSTITUTION_FONDS", + "lang": "en" + }, + "congregational records series": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CONGREGATIONAL_RECORDS_SERIES", + "lang": "en" + }, + "school administration fonds": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "SCHOOL_ADMINISTRATION_FONDS", + "lang": "en" + }, + "school student record series": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "SCHOOL_STUDENT_RECORD_SERIES", + "lang": "en" + }, + "curriculum document collection": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CURRICULUM_DOCUMENT_COLLECTION", + "lang": "en" + }, + "research project fonds": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "RESEARCH_PROJECT_FONDS", + "lang": "en" + }, + "scientist papers collection": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "SCIENTIST_PAPERS_COLLECTION", + "lang": "en" + }, + "laboratory record series": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "LABORATORY_RECORD_SERIES", + "lang": "en" + }, + "swedish sector fonds": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "SWEDISH_SECTOR_FONDS", + "lang": "en" + }, + "security service fonds": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "SECURITY_SERVICE_FONDS", + "lang": "en" + }, + "surveillance record series": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "SURVEILLANCE_RECORD_SERIES", + "lang": "en" + }, + "audio recording collection": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "AUDIO_RECORDING_COLLECTION", + "lang": "en" + }, + "oral history series": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "ORAL_HISTORY_SERIES", + "lang": "en" + }, + "music recording collection": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "MUSIC_RECORDING_COLLECTION", + "lang": "en" + }, + "specialized collection fonds": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "SPECIALIZED_COLLECTION_FONDS", + "lang": "en" + }, + "czech specialized fonds": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CZECH_SPECIALIZED_FONDS", + "lang": "en" + }, + "state government fonds": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "STATE_GOVERNMENT_FONDS", + "lang": "en" + }, + "judicial record series": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "JUDICIAL_RECORD_SERIES", + "lang": "en" + }, + "land records series": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "LAND_RECORDS_SERIES", + "lang": "en" + }, + "tax records series": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "TAX_RECORDS_SERIES", + "lang": "en" + }, + "state section fonds": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "STATE_SECTION_FONDS", + "lang": "en" + }, + "state district fonds": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "STATE_DISTRICT_FONDS", + "lang": "en" + }, + "czechia regional state fonds": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "CZECHIA_REGIONAL_STATE_FONDS", + "lang": "en" + }, + "television broadcast fonds": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "TELEVISION_BROADCAST_FONDS", + "lang": "en" + }, + "production record series": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "PRODUCTION_RECORD_SERIES", + "lang": "en" + }, + "news footage collection": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "NEWS_FOOTAGE_COLLECTION", + "lang": "en" + }, + "union administration": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "UNION_ADMINISTRATION_FONDS", + "lang": "nl" + }, + "vakbondsbestuur": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "UNION_ADMINISTRATION_FONDS", + "lang": "nl" + }, + "congress minutes": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "UNION_ADMINISTRATION_FONDS", + "lang": "nl" + }, + "membership records": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "UNION_ADMINISTRATION_FONDS", + "lang": "nl" + }, + "ledenregisters": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "UNION_ADMINISTRATION_FONDS", + "lang": "nl" + }, + "union governance": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "UNION_ADMINISTRATION_FONDS", + "lang": "nl" + }, + "vakbondsorganisatie": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "UNION_ADMINISTRATION_FONDS", + "lang": "nl" + }, + "labor organization": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "UNION_ADMINISTRATION_FONDS", + "lang": "nl" + }, + "vakbondsbestuursarchief": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "UNION_ADMINISTRATION_FONDS", + "lang": "nl" + }, + "congresverslagen": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "UNION_ADMINISTRATION_FONDS", + "lang": "en" + }, + "union administration fonds": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "UNION_ADMINISTRATION_FONDS", + "lang": "en" + }, + "gewerkschaftsverwaltungsbestand": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "UNION_ADMINISTRATION_FONDS", + "lang": "de" + }, + "fondo de administracion sindical": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "UNION_ADMINISTRATION_FONDS", + "lang": "es" + }, + "fonds d'administration syndicale": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "UNION_ADMINISTRATION_FONDS", + "lang": "fr" + }, + "fundo de administracao sindical": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "UNION_ADMINISTRATION_FONDS", + "lang": "pt" + }, + "collective bargaining": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "COLLECTIVE_BARGAINING_SERIES", + "lang": "nl" + }, + "collectieve arbeidsovereenkomst": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "COLLECTIVE_BARGAINING_SERIES", + "lang": "nl" + }, + "arbeidscontracten": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "COLLECTIVE_BARGAINING_SERIES", + "lang": "nl" + }, + "negotiations": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "COLLECTIVE_BARGAINING_SERIES", + "lang": "nl" + }, + "onderhandelingen": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "COLLECTIVE_BARGAINING_SERIES", + "lang": "nl" + }, + "wage agreements": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "COLLECTIVE_BARGAINING_SERIES", + "lang": "nl" + }, + "loonafspraken": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "COLLECTIVE_BARGAINING_SERIES", + "lang": "nl" + }, + "industrial relations": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "COLLECTIVE_BARGAINING_SERIES", + "lang": "nl" + }, + "arbeidsrelaties": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "COLLECTIVE_BARGAINING_SERIES", + "lang": "nl" + }, + "arbitration": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "COLLECTIVE_BARGAINING_SERIES", + "lang": "nl" + }, + "cao-archief": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "COLLECTIVE_BARGAINING_SERIES", + "lang": "nl" + }, + "cao": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "COLLECTIVE_BARGAINING_SERIES", + "lang": "en" + }, + "labor contracts": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "COLLECTIVE_BARGAINING_SERIES", + "lang": "en" + }, + "collective bargaining series": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "COLLECTIVE_BARGAINING_SERIES", + "lang": "en" + }, + "tarifverhandlungsserie": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "COLLECTIVE_BARGAINING_SERIES", + "lang": "de" + }, + "serie de negociacion colectiva": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "COLLECTIVE_BARGAINING_SERIES", + "lang": "es" + }, + "serie de negociation collective": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "COLLECTIVE_BARGAINING_SERIES", + "lang": "fr" + }, + "serie de negociacao coletiva": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "COLLECTIVE_BARGAINING_SERIES", + "lang": "pt" + }, + "strike documentation": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "STRIKE_DOCUMENTATION_COLLECTION", + "lang": "nl" + }, + "stakingsarchief": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "STRIKE_DOCUMENTATION_COLLECTION", + "lang": "nl" + }, + "labor actions": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "STRIKE_DOCUMENTATION_COLLECTION", + "lang": "nl" + }, + "arbeidsacties": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "STRIKE_DOCUMENTATION_COLLECTION", + "lang": "nl" + }, + "picket lines": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "STRIKE_DOCUMENTATION_COLLECTION", + "lang": "nl" + }, + "stakingsposten": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "STRIKE_DOCUMENTATION_COLLECTION", + "lang": "nl" + }, + "solidarity": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "STRIKE_DOCUMENTATION_COLLECTION", + "lang": "nl" + }, + "solidariteit": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "STRIKE_DOCUMENTATION_COLLECTION", + "lang": "nl" + }, + "werkonderbrekingen": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "STRIKE_DOCUMENTATION_COLLECTION", + "lang": "nl" + }, + "february strike": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "STRIKE_DOCUMENTATION_COLLECTION", + "lang": "nl" + }, + "februaristaking": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "STRIKE_DOCUMENTATION_COLLECTION", + "lang": "nl" + }, + "lockouts": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "STRIKE_DOCUMENTATION_COLLECTION", + "lang": "en" + }, + "work stoppages": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "STRIKE_DOCUMENTATION_COLLECTION", + "lang": "en" + }, + "strike documentation collection": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "STRIKE_DOCUMENTATION_COLLECTION", + "lang": "en" + }, + "streikdokumentationssammlung": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "STRIKE_DOCUMENTATION_COLLECTION", + "lang": "de" + }, + "coleccion de documentacion de huelgas": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "STRIKE_DOCUMENTATION_COLLECTION", + "lang": "es" + }, + "collection de documentation de greves": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "STRIKE_DOCUMENTATION_COLLECTION", + "lang": "fr" + }, + "colecao de documentacao de greves": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "STRIKE_DOCUMENTATION_COLLECTION", + "lang": "pt" + }, + "labor publications": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "LABOR_PUBLICATIONS_COLLECTION", + "lang": "nl" + }, + "union newspapers": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "LABOR_PUBLICATIONS_COLLECTION", + "lang": "nl" + }, + "arbeiderspers": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "LABOR_PUBLICATIONS_COLLECTION", + "lang": "nl" + }, + "union magazines": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "LABOR_PUBLICATIONS_COLLECTION", + "lang": "nl" + }, + "1 mei": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "LABOR_PUBLICATIONS_COLLECTION", + "lang": "nl" + }, + "vakbondsperscollectie": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "LABOR_PUBLICATIONS_COLLECTION", + "lang": "nl" + }, + "vakbondspers": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "LABOR_PUBLICATIONS_COLLECTION", + "lang": "en" + }, + "vakbondskranten": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "LABOR_PUBLICATIONS_COLLECTION", + "lang": "en" + }, + "pamphlets": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "LABOR_PUBLICATIONS_COLLECTION", + "lang": "en" + }, + "pamfletten": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "LABOR_PUBLICATIONS_COLLECTION", + "lang": "en" + }, + "workers press": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "LABOR_PUBLICATIONS_COLLECTION", + "lang": "en" + }, + "labor propaganda": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "LABOR_PUBLICATIONS_COLLECTION", + "lang": "en" + }, + "may day": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "LABOR_PUBLICATIONS_COLLECTION", + "lang": "en" + }, + "labor publications collection": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "LABOR_PUBLICATIONS_COLLECTION", + "lang": "en" + }, + "arbeiterpressesammlung": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "LABOR_PUBLICATIONS_COLLECTION", + "lang": "de" + }, + "coleccion de publicaciones obreras": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "LABOR_PUBLICATIONS_COLLECTION", + "lang": "es" + }, + "collection de publications ouvrieres": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "LABOR_PUBLICATIONS_COLLECTION", + "lang": "fr" + }, + "colecao de publicacoes operarias": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "LABOR_PUBLICATIONS_COLLECTION", + "lang": "pt" + }, + "arbeidersfotografie": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "WORKERS_PHOTOGRAPHY_COLLECTION", + "lang": "nl" + }, + "fabrieksfoto's": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "WORKERS_PHOTOGRAPHY_COLLECTION", + "lang": "nl" + }, + "strike photographs": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "WORKERS_PHOTOGRAPHY_COLLECTION", + "lang": "nl" + }, + "stakingsfoto's": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "WORKERS_PHOTOGRAPHY_COLLECTION", + "lang": "nl" + }, + "may day images": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "WORKERS_PHOTOGRAPHY_COLLECTION", + "lang": "nl" + }, + "labor movement images": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "WORKERS_PHOTOGRAPHY_COLLECTION", + "lang": "nl" + }, + "industrial photography": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "WORKERS_PHOTOGRAPHY_COLLECTION", + "lang": "nl" + }, + "worker portraits": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "WORKERS_PHOTOGRAPHY_COLLECTION", + "lang": "nl" + }, + "arbeidersfotocollectie": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "WORKERS_PHOTOGRAPHY_COLLECTION", + "lang": "nl" + }, + "workers photography": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "WORKERS_PHOTOGRAPHY_COLLECTION", + "lang": "en" + }, + "workplace photographs": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "WORKERS_PHOTOGRAPHY_COLLECTION", + "lang": "en" + }, + "werknemersportretten": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "WORKERS_PHOTOGRAPHY_COLLECTION", + "lang": "en" + }, + "workers photography collection": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "WORKERS_PHOTOGRAPHY_COLLECTION", + "lang": "en" + }, + "arbeiterfotografiesammlung": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "WORKERS_PHOTOGRAPHY_COLLECTION", + "lang": "de" + }, + "coleccion de fotografia obrera": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "WORKERS_PHOTOGRAPHY_COLLECTION", + "lang": "es" + }, + "collection de photographie ouvriere": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "WORKERS_PHOTOGRAPHY_COLLECTION", + "lang": "fr" + }, + "colecao de fotografia operaria": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "WORKERS_PHOTOGRAPHY_COLLECTION", + "lang": "pt" + }, + "university administration fonds": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "UNIVERSITY_ADMINISTRATION_FONDS", + "lang": "en" + }, + "student record series": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "STUDENT_RECORD_SERIES", + "lang": "en" + }, + "faculty papers collection": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "FACULTY_PAPERS_COLLECTION", + "lang": "en" + }, + "web capture collection": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "WEB_CAPTURE_COLLECTION", + "lang": "en" + }, + "social media collection": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "SOCIAL_MEDIA_COLLECTION", + "lang": "en" + }, + "womens organization fonds": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "WOMENS_ORGANIZATION_FONDS", + "lang": "en" + }, + "feminist papers collection": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "FEMINIST_PAPERS_COLLECTION", + "lang": "en" + }, + "womens history collection": { + "typeCode": "A", + "typeName": "ArchiveOrganizationType", + "recordSetType": "WOMENS_HISTORY_COLLECTION", + "lang": "en" + } + }, + "institutionTypes": { + "A": { + "code": "A", + "className": "ArchiveOrganizationType", + "accumulatedTerms": "archive organization type", + "keywords": { + "en": [ + "archive organization type" + ] + }, + "subtypes": {} + }, + "B": { + "code": "B", + "className": "BioCustodianType", + "accumulatedTerms": "bio custodian type", + "keywords": { + "en": [ + "bio custodian type" + ] + }, + "subtypes": {} + }, + "C": { + "code": "C", + "className": "CommercialOrganizationType", + "accumulatedTerms": "commercial organization type", + "keywords": { + "en": [ + "commercial organization type" + ] + }, + "subtypes": {} + }, + "D": { + "code": "D", + "className": "DigitalPlatformType", + "accumulatedTerms": "digital platform type library archive document repository archival open access preservation trusted e arkiv online academic musical shadow photograph collection aggregator aggregated database bibliographic specialized archives portal regional torah web website institutional data integrating resource service on internet virtual museum specialist herbarium map art gallery commons disciplinary pre print server genealogy geospatial information geodata crowdsourcing educational social media blog news podcast channel tour browser booking system webshop project exhibition microsite a p i endpoint mobile app auxiliary legacy newsletter memory institution local heritage in sweden scientific technic and industrial culture center public space closed", + "keywords": { + "en": [ + "digital platform type" + ] + }, + "subtypes": { + "DIGITAL_LIBRARY": { + "className": "DigitalLibrary", + "accumulatedTerms": "digital library", + "keywords": { + "en": [ + "digital library" + ] + } + }, + "DIGITAL_ARCHIVE_PLATFORM": { + "className": "DigitalArchivePlatform", + "accumulatedTerms": "digital archive platform", + "keywords": { + "en": [ + "digital archive platform" + ] + } + }, + "DOCUMENT_REPOSITORY": { + "className": "DocumentRepository", + "accumulatedTerms": "document repository", + "keywords": { + "en": [ + "document repository" + ] + } + }, + "ARCHIVAL_REPOSITORY": { + "className": "ArchivalRepository", + "accumulatedTerms": "archival repository", + "keywords": { + "en": [ + "archival repository" + ] + } + }, + "OPEN_ACCESS_REPOSITORY": { + "className": "OpenAccessRepository", + "accumulatedTerms": "open access repository", + "keywords": { + "en": [ + "open access repository" + ] + } + }, + "PRESERVATION_REPOSITORY": { + "className": "PreservationRepository", + "accumulatedTerms": "preservation repository", + "keywords": { + "en": [ + "preservation repository" + ] + } + }, + "TRUSTED_DIGITAL_REPOSITORY": { + "className": "TrustedDigitalRepository", + "accumulatedTerms": "trusted digital repository", + "keywords": { + "en": [ + "trusted digital repository" + ] + } + }, + "EARKIV": { + "className": "EArkiv", + "accumulatedTerms": "e arkiv", + "keywords": { + "en": [ + "e arkiv" + ] + } + }, + "ONLINE_LIBRARY": { + "className": "OnlineLibrary", + "accumulatedTerms": "online library", + "keywords": { + "en": [ + "online library" + ] + } + }, + "ONLINE_ACADEMIC_LIBRARY": { + "className": "OnlineAcademicLibrary", + "accumulatedTerms": "online academic library", + "keywords": { + "en": [ + "online academic library" + ] + } + }, + "ONLINE_DIGITAL_MUSICAL_DOCUMENT_LIBRARY": { + "className": "OnlineDigitalMusicalDocumentLibrary", + "accumulatedTerms": "online digital musical document library", + "keywords": { + "en": [ + "online digital musical document library" + ] + } + }, + "SHADOW_LIBRARY": { + "className": "ShadowLibrary", + "accumulatedTerms": "shadow library", + "keywords": { + "en": [ + "shadow library" + ] + } + }, + "PHOTOGRAPH_COLLECTION": { + "className": "PhotographCollection", + "accumulatedTerms": "photograph collection", + "keywords": { + "en": [ + "photograph collection" + ] + } + }, + "AGGREGATOR": { + "className": "Aggregator", + "accumulatedTerms": "aggregator", + "keywords": { + "en": [ + "aggregator" + ] + } + }, + "AGGREGATED_ONLINE_DATABASE": { + "className": "AggregatedOnlineDatabase", + "accumulatedTerms": "aggregated online database", + "keywords": { + "en": [ + "aggregated online database" + ] + } + }, + "BIBLIOGRAPHIC_DATABASE_PLATFORM": { + "className": "BibliographicDatabasePlatform", + "accumulatedTerms": "bibliographic database platform", + "keywords": { + "en": [ + "bibliographic database platform" + ] + } + }, + "SPECIALIZED_DATABASE": { + "className": "SpecializedDatabase", + "accumulatedTerms": "specialized database", + "keywords": { + "en": [ + "specialized database" + ] + } + }, + "ARCHIVES_PORTAL": { + "className": "ArchivesPortal", + "accumulatedTerms": "archives portal", + "keywords": { + "en": [ + "archives portal" + ] + } + }, + "REGIONAL_PORTAL": { + "className": "RegionalPortal", + "accumulatedTerms": "regional portal", + "keywords": { + "en": [ + "regional portal" + ] + } + }, + "TORAH_DATABASE": { + "className": "TorahDatabase", + "accumulatedTerms": "torah database", + "keywords": { + "en": [ + "torah database" + ] + } + }, + "WEB_PORTAL_PLATFORM": { + "className": "WebPortalPlatform", + "accumulatedTerms": "web portal platform", + "keywords": { + "en": [ + "web portal platform" + ] + } + }, + "WEBSITE": { + "className": "Website", + "accumulatedTerms": "website", + "keywords": { + "en": [ + "website" + ] + } + }, + "INSTITUTIONAL_WEBSITE": { + "className": "InstitutionalWebsite", + "accumulatedTerms": "institutional website", + "keywords": { + "en": [ + "institutional website" + ] + } + }, + "ONLINE_DATABASE": { + "className": "OnlineDatabase", + "accumulatedTerms": "online database", + "keywords": { + "en": [ + "online database" + ] + } + }, + "DATABASE_PLATFORM": { + "className": "DatabasePlatform", + "accumulatedTerms": "database platform", + "keywords": { + "en": [ + "database platform" + ] + } + }, + "DATA_PLATFORM": { + "className": "DataPlatform", + "accumulatedTerms": "data platform", + "keywords": { + "en": [ + "data platform" + ] + } + }, + "OPEN_DATA_PORTAL": { + "className": "OpenDataPortal", + "accumulatedTerms": "open data portal", + "keywords": { + "en": [ + "open data portal" + ] + } + }, + "INTEGRATING_RESOURCE": { + "className": "IntegratingResource", + "accumulatedTerms": "integrating resource", + "keywords": { + "en": [ + "integrating resource" + ] + } + }, + "SERVICE_ON_INTERNET": { + "className": "ServiceOnInternet", + "accumulatedTerms": "service on internet", + "keywords": { + "en": [ + "service on internet" + ] + } + }, + "VIRTUAL_MUSEUM": { + "className": "VirtualMuseum", + "accumulatedTerms": "virtual museum", + "keywords": { + "en": [ + "virtual museum" + ] + } + }, + "VIRTUAL_LIBRARY": { + "className": "VirtualLibrary", + "accumulatedTerms": "virtual library", + "keywords": { + "en": [ + "virtual library" + ] + } + }, + "VIRTUAL_SPECIALIST_LIBRARY": { + "className": "VirtualSpecialistLibrary", + "accumulatedTerms": "virtual specialist library", + "keywords": { + "en": [ + "virtual specialist library" + ] + } + }, + "VIRTUAL_HERBARIUM": { + "className": "VirtualHerbarium", + "accumulatedTerms": "virtual herbarium", + "keywords": { + "en": [ + "virtual herbarium" + ] + } + }, + "VIRTUAL_MAP_LIBRARY": { + "className": "VirtualMapLibrary", + "accumulatedTerms": "virtual map library", + "keywords": { + "en": [ + "virtual map library" + ] + } + }, + "ONLINE_ART_GALLERY": { + "className": "OnlineArtGallery", + "accumulatedTerms": "online art gallery", + "keywords": { + "en": [ + "online art gallery" + ] + } + }, + "COMMONS_GALLERY": { + "className": "CommonsGallery", + "accumulatedTerms": "commons gallery", + "keywords": { + "en": [ + "commons gallery" + ] + } + }, + "DISCIPLINARY_REPOSITORY": { + "className": "DisciplinaryRepository", + "accumulatedTerms": "disciplinary repository", + "keywords": { + "en": [ + "disciplinary repository" + ] + } + }, + "PRE_PRINT_SERVER": { + "className": "PrePrintServer", + "accumulatedTerms": "pre print server", + "keywords": { + "en": [ + "pre print server" + ] + } + }, + "GENEALOGY_DATABASE": { + "className": "GenealogyDatabase", + "accumulatedTerms": "genealogy database", + "keywords": { + "en": [ + "genealogy database" + ] + } + }, + "GEOSPATIAL_REPOSITORY": { + "className": "GeospatialRepository", + "accumulatedTerms": "geospatial repository", + "keywords": { + "en": [ + "geospatial repository" + ] + } + }, + "GEOSPATIAL_DATA_REPOSITORY": { + "className": "GeospatialDataRepository", + "accumulatedTerms": "geospatial data repository", + "keywords": { + "en": [ + "geospatial data repository" + ] + } + }, + "GEOSPATIAL_INFORMATION_REPOSITORY": { + "className": "GeospatialInformationRepository", + "accumulatedTerms": "geospatial information repository", + "keywords": { + "en": [ + "geospatial information repository" + ] + } + }, + "GEOSPATIAL_DATA_COLLECTION": { + "className": "GeospatialDataCollection", + "accumulatedTerms": "geospatial data collection", + "keywords": { + "en": [ + "geospatial data collection" + ] + } + }, + "OPEN_GEODATA_PORTAL": { + "className": "OpenGeodataPortal", + "accumulatedTerms": "open geodata portal", + "keywords": { + "en": [ + "open geodata portal" + ] + } + }, + "CROWDSOURCING_PLATFORM": { + "className": "CrowdsourcingPlatform", + "accumulatedTerms": "crowdsourcing platform", + "keywords": { + "en": [ + "crowdsourcing platform" + ] + } + }, + "EDUCATIONAL_PORTAL": { + "className": "EducationalPortal", + "accumulatedTerms": "educational portal", + "keywords": { + "en": [ + "educational portal" + ] + } + }, + "SOCIAL_MEDIA": { + "className": "SocialMedia", + "accumulatedTerms": "social media", + "keywords": { + "en": [ + "social media" + ] + } + }, + "BLOG_NEWS": { + "className": "BlogNews", + "accumulatedTerms": "blog news", + "keywords": { + "en": [ + "blog news" + ] + } + }, + "PODCAST_CHANNEL": { + "className": "PodcastChannel", + "accumulatedTerms": "podcast channel", + "keywords": { + "en": [ + "podcast channel" + ] + } + }, + "VIRTUAL_TOUR": { + "className": "VirtualTour", + "accumulatedTerms": "virtual tour", + "keywords": { + "en": [ + "virtual tour" + ] + } + }, + "COLLECTION_BROWSER": { + "className": "CollectionBrowser", + "accumulatedTerms": "collection browser", + "keywords": { + "en": [ + "collection browser" + ] + } + }, + "ESERVICE": { + "className": "EService", + "accumulatedTerms": "e service", + "keywords": { + "en": [ + "e service" + ] + } + }, + "BOOKING_SYSTEM": { + "className": "BookingSystem", + "accumulatedTerms": "booking system", + "keywords": { + "en": [ + "booking system" + ] + } + }, + "WEBSHOP": { + "className": "Webshop", + "accumulatedTerms": "webshop", + "keywords": { + "en": [ + "webshop" + ] + } + }, + "PROJECT_WEBSITE": { + "className": "ProjectWebsite", + "accumulatedTerms": "project website", + "keywords": { + "en": [ + "project website" + ] + } + }, + "EXHIBITION_MICROSITE": { + "className": "ExhibitionMicrosite", + "accumulatedTerms": "exhibition microsite", + "keywords": { + "en": [ + "exhibition microsite" + ] + } + }, + "APIENDPOINT": { + "className": "APIEndpoint", + "accumulatedTerms": "a p i endpoint", + "keywords": { + "en": [ + "a p i endpoint" + ] + } + }, + "MOBILE_APP": { + "className": "MobileApp", + "accumulatedTerms": "mobile app", + "keywords": { + "en": [ + "mobile app" + ] + } + }, + "DATA_PORTAL_AUXILIARY": { + "className": "DataPortalAuxiliary", + "accumulatedTerms": "data portal auxiliary", + "keywords": { + "en": [ + "data portal auxiliary" + ] + } + }, + "LEGACY_PLATFORM": { + "className": "LegacyPlatform", + "accumulatedTerms": "legacy platform", + "keywords": { + "en": [ + "legacy platform" + ] + } + }, + "NEWSLETTER": { + "className": "Newsletter", + "accumulatedTerms": "newsletter", + "keywords": { + "en": [ + "newsletter" + ] + } + }, + "PROJECT_PLATFORM": { + "className": "ProjectPlatform", + "accumulatedTerms": "project platform", + "keywords": { + "en": [ + "project platform" + ] + } + }, + "MEMORY_INSTITUTION": { + "className": "MemoryInstitution", + "accumulatedTerms": "memory institution", + "keywords": { + "en": [ + "memory institution" + ] + } + }, + "LOCAL_HERITAGE_INSTITUTION_IN_SWEDEN": { + "className": "LocalHeritageInstitutionInSweden", + "accumulatedTerms": "local heritage institution in sweden", + "keywords": { + "en": [ + "local heritage institution in sweden" + ] + } + }, + "SCIENTIFIC_TECHNIC_AND_INDUSTRIAL_CULTURE_CENTER": { + "className": "ScientificTechnicAndIndustrialCultureCenter", + "accumulatedTerms": "scientific technic and industrial culture center", + "keywords": { + "en": [ + "scientific technic and industrial culture center" + ] + } + }, + "PUBLIC_SPACE": { + "className": "PublicSpace", + "accumulatedTerms": "public space", + "keywords": { + "en": [ + "public space" + ] + } + }, + "SOCIAL_SPACE": { + "className": "SocialSpace", + "accumulatedTerms": "social space", + "keywords": { + "en": [ + "social space" + ] + } + }, + "CLOSED_SPACE": { + "className": "ClosedSpace", + "accumulatedTerms": "closed space", + "keywords": { + "en": [ + "closed space" + ] + } + } + } + }, + "E": { + "code": "E", + "className": "EducationProviderType", + "accumulatedTerms": "education provider type", + "keywords": { + "en": [ + "education provider type" + ] + }, + "subtypes": {} + }, + "F": { + "code": "F", + "className": "FeatureCustodianType", + "accumulatedTerms": "feature custodian type", + "keywords": { + "en": [ + "feature custodian type" + ] + }, + "subtypes": {} + }, + "G": { + "code": "G", + "className": "GalleryType", + "accumulatedTerms": "gallery type", + "keywords": { + "en": [ + "gallery type" + ] + }, + "subtypes": {} + }, + "S": { + "code": "S", + "className": "HeritageSocietyType", + "accumulatedTerms": "heritage society type", + "keywords": { + "en": [ + "heritage society type" + ] + }, + "subtypes": {} + }, + "H": { + "code": "H", + "className": "HolySacredSiteType", + "accumulatedTerms": "holy sacred site type", + "keywords": { + "en": [ + "holy sacred site type" + ] + }, + "subtypes": {} + }, + "I": { + "code": "I", + "className": "IntangibleHeritageGroupType", + "accumulatedTerms": "intangible heritage group type", + "keywords": { + "en": [ + "intangible heritage group type" + ] + }, + "subtypes": {} + }, + "L": { + "code": "L", + "className": "LibraryType", + "accumulatedTerms": "library type", + "keywords": { + "en": [ + "library type" + ] + }, + "subtypes": {} + }, + "X": { + "code": "X", + "className": "MixedCustodianType", + "accumulatedTerms": "mixed custodian type", + "keywords": { + "en": [ + "mixed custodian type" + ] + }, + "subtypes": {} + }, + "M": { + "code": "M", + "className": "MuseumType", + "accumulatedTerms": "museum type", + "keywords": { + "en": [ + "museum type" + ] + }, + "subtypes": {} + }, + "N": { + "code": "N", + "className": "NonProfitType", + "accumulatedTerms": "non profit type", + "keywords": { + "en": [ + "non profit type" + ] + }, + "subtypes": {} + }, + "O": { + "code": "O", + "className": "OfficialInstitutionType", + "accumulatedTerms": "official institution type", + "keywords": { + "en": [ + "official institution type" + ] + }, + "subtypes": {} + }, + "P": { + "code": "P", + "className": "PersonalCollectionType", + "accumulatedTerms": "personal collection type", + "keywords": { + "en": [ + "personal collection type" + ] + }, + "subtypes": {} + }, + "R": { + "code": "R", + "className": "ResearchOrganizationType", + "accumulatedTerms": "research organization type", + "keywords": { + "en": [ + "research organization type" + ] + }, + "subtypes": {} + }, + "T": { + "code": "T", + "className": "TasteScentHeritageType", + "accumulatedTerms": "taste scent heritage type", + "keywords": { + "en": [ + "taste scent heritage type" + ] + }, + "subtypes": {} + }, + "U": { + "code": "U", + "className": "UnspecifiedType", + "accumulatedTerms": "unspecified type", + "keywords": { + "en": [ + "unspecified type" + ] + }, + "subtypes": {} + } + }, + "recordSetTypes": { + "UNIVERSITY_ADMINISTRATIVE_FONDS": { + "className": "UniversityAdministrativeFonds", + "accumulatedTerms": "board minutes committee records policy records faculty council records strategic planning accreditation records executive correspondence institutional bylaws universiteitsbestuursarchief governance records senate records university administrative fonds hochschulverwaltungsbestand fondo de administraciΓ³n universitaria fonds d'administration universitaire fundo de administraΓ§Γ£o universitΓ‘ria", + "keywords": { + "nl": [ + "board minutes", + "committee records", + "policy records", + "faculty council records", + "strategic planning", + "accreditation records", + "executive correspondence", + "institutional bylaws", + "universiteitsbestuursarchief" + ], + "en": [ + "governance records", + "senate records", + "university administrative fonds" + ], + "de": [ + "hochschulverwaltungsbestand" + ], + "es": [ + "fondo de administraciΓ³n universitaria" + ], + "fr": [ + "fonds d'administration universitaire" + ], + "pt": [ + "fundo de administraΓ§Γ£o universitΓ‘ria" + ] + } + }, + "ACADEMIC_STUDENT_RECORD_SERIES": { + "className": "AcademicStudentRecordSeries", + "accumulatedTerms": "registration records academic transcripts graduation records diploma registers matriculation records disciplinary records student organizations financial aid records studentendossiers enrollment records grade records academic student record series studentenaktenserie serie de expedientes estudiantiles sΓ©rie de dossiers Γ©tudiants sΓ©rie de registros de alunos", + "keywords": { + "nl": [ + "registration records", + "academic transcripts", + "graduation records", + "diploma registers", + "matriculation records", + "disciplinary records", + "student organizations", + "financial aid records", + "studentendossiers" + ], + "en": [ + "enrollment records", + "grade records", + "academic student record series" + ], + "de": [ + "studentenaktenserie" + ], + "es": [ + "serie de expedientes estudiantiles" + ], + "fr": [ + "sΓ©rie de dossiers Γ©tudiants" + ], + "pt": [ + "sΓ©rie de registros de alunos" + ] + } + }, + "FACULTY_PAPER_COLLECTION": { + "className": "FacultyPaperCollection", + "accumulatedTerms": "research documentation course materials manuscripts professional papers academic papers hoogleraarspapieren personal papers faculty papers correspondence lecture notes drafts conference papers faculty paper collection professorennachlass archivo personal de profesores fonds de professeurs arquivo pessoal de docentes", + "keywords": { + "nl": [ + "research documentation", + "course materials", + "manuscripts", + "professional papers", + "academic papers", + "hoogleraarspapieren" + ], + "en": [ + "personal papers", + "faculty papers", + "correspondence", + "lecture notes", + "drafts", + "conference papers", + "faculty paper collection" + ], + "de": [ + "professorennachlass" + ], + "es": [ + "archivo personal de profesores" + ], + "fr": [ + "fonds de professeurs" + ], + "pt": [ + "arquivo pessoal de docentes" + ] + } + }, + "CAMPUS_DOCUMENTATION_COLLECTION": { + "className": "CampusDocumentationCollection", + "accumulatedTerms": "audiovisual materials university publications yearbooks memorabilia oral histories event documentation building documentation campus life campusdocumentatiecollectie campus photographs student newspapers ephemera campus documentation collection campus-dokumentationssammlung colecciΓ³n de documentaciΓ³n del campus collection de documentation du campus coleΓ§Γ£o de documentaΓ§Γ£o do campus", + "keywords": { + "nl": [ + "audiovisual materials", + "university publications", + "yearbooks", + "memorabilia", + "oral histories", + "event documentation", + "building documentation", + "campus life", + "campusdocumentatiecollectie" + ], + "en": [ + "campus photographs", + "student newspapers", + "ephemera", + "campus documentation collection" + ], + "de": [ + "campus-dokumentationssammlung" + ], + "es": [ + "colecciΓ³n de documentaciΓ³n del campus" + ], + "fr": [ + "collection de documentation du campus" + ], + "pt": [ + "coleΓ§Γ£o de documentaΓ§Γ£o do campus" + ] + } + }, + "RADIO_ADVERTISEMENT_COLLECTION": { + "className": "RadioAdvertisementCollection", + "accumulatedTerms": "radio advertisement collection", + "keywords": { + "en": [ + "radio advertisement collection" + ] + } + }, + "CAMPAIGN_DOCUMENTATION_SERIES": { + "className": "CampaignDocumentationSeries", + "accumulatedTerms": "campaign documentation series", + "keywords": { + "en": [ + "campaign documentation series" + ] + } + }, + "BIOACOUSTIC_RECORDING_COLLECTION": { + "className": "BioacousticRecordingCollection", + "accumulatedTerms": "bioacoustic recording collection", + "keywords": { + "en": [ + "bioacoustic recording collection" + ] + } + }, + "FIELD_RECORDING_SERIES": { + "className": "FieldRecordingSeries", + "accumulatedTerms": "field recording series", + "keywords": { + "en": [ + "field recording series" + ] + } + }, + "ARCHITECTURAL_DRAWING_COLLECTION": { + "className": "ArchitecturalDrawingCollection", + "accumulatedTerms": "architectural drawing collection", + "keywords": { + "en": [ + "architectural drawing collection" + ] + } + }, + "ARCHITECT_PAPERS_COLLECTION": { + "className": "ArchitectPapersCollection", + "accumulatedTerms": "architect papers collection", + "keywords": { + "en": [ + "architect papers collection" + ] + } + }, + "BUILDING_PROJECT_FONDS": { + "className": "BuildingProjectFonds", + "accumulatedTerms": "building project fonds", + "keywords": { + "en": [ + "building project fonds" + ] + } + }, + "INTERNATIONAL_ORG_FONDS": { + "className": "InternationalOrgFonds", + "accumulatedTerms": "international org fonds", + "keywords": { + "en": [ + "international org fonds" + ] + } + }, + "TREATY_COLLECTION": { + "className": "TreatyCollection", + "accumulatedTerms": "treaty collection", + "keywords": { + "en": [ + "treaty collection" + ] + } + }, + "CONFERENCE_RECORD_SERIES": { + "className": "ConferenceRecordSeries", + "accumulatedTerms": "conference record series", + "keywords": { + "en": [ + "conference record series" + ] + } + }, + "BUILDING_PERMIT_SERIES": { + "className": "BuildingPermitSeries", + "accumulatedTerms": "building permit series", + "keywords": { + "en": [ + "building permit series" + ] + } + }, + "CONSTRUCTION_DOCUMENT_COLLECTION": { + "className": "ConstructionDocumentCollection", + "accumulatedTerms": "construction document collection", + "keywords": { + "en": [ + "construction document collection" + ] + } + }, + "REGIONAL_ADMINISTRATION_FONDS": { + "className": "RegionalAdministrationFonds", + "accumulatedTerms": "regional administration fonds", + "keywords": { + "en": [ + "regional administration fonds" + ] + } + }, + "ARTIST_PAPERS_COLLECTION": { + "className": "ArtistPapersCollection", + "accumulatedTerms": "artist papers collection", + "keywords": { + "en": [ + "artist papers collection" + ] + } + }, + "GALLERY_RECORDS_FONDS": { + "className": "GalleryRecordsFonds", + "accumulatedTerms": "gallery records fonds", + "keywords": { + "en": [ + "gallery records fonds" + ] + } + }, + "EXHIBITION_DOCUMENTATION_COLLECTION": { + "className": "ExhibitionDocumentationCollection", + "accumulatedTerms": "exhibition documentation collection", + "keywords": { + "en": [ + "exhibition documentation collection" + ] + } + }, + "AUDIOVISUAL_RECORDING_COLLECTION": { + "className": "AudiovisualRecordingCollection", + "accumulatedTerms": "audiovisual recording collection", + "keywords": { + "en": [ + "audiovisual recording collection" + ] + } + }, + "AUDIOVISUAL_PRODUCTION_FONDS": { + "className": "AudiovisualProductionFonds", + "accumulatedTerms": "audiovisual production fonds", + "keywords": { + "en": [ + "audiovisual production fonds" + ] + } + }, + "BANKING_RECORDS_FONDS": { + "className": "BankingRecordsFonds", + "accumulatedTerms": "banking records fonds", + "keywords": { + "en": [ + "banking records fonds" + ] + } + }, + "FINANCIAL_TRANSACTION_SERIES": { + "className": "FinancialTransactionSeries", + "accumulatedTerms": "financial transaction series", + "keywords": { + "en": [ + "financial transaction series" + ] + } + }, + "CUSTOMER_ACCOUNT_SERIES": { + "className": "CustomerAccountSeries", + "accumulatedTerms": "customer account series", + "keywords": { + "en": [ + "customer account series" + ] + } + }, + "CANTONAL_GOVERNMENT_FONDS": { + "className": "CantonalGovernmentFonds", + "accumulatedTerms": "cantonal government fonds", + "keywords": { + "en": [ + "cantonal government fonds" + ] + } + }, + "CANTONAL_LEGISLATION_COLLECTION": { + "className": "CantonalLegislationCollection", + "accumulatedTerms": "cantonal legislation collection", + "keywords": { + "en": [ + "cantonal legislation collection" + ] + } + }, + "CHAPTER_RECORDS_FONDS": { + "className": "ChapterRecordsFonds", + "accumulatedTerms": "chapter records fonds", + "keywords": { + "en": [ + "chapter records fonds" + ] + } + }, + "LITURGICAL_DOCUMENT_COLLECTION": { + "className": "LiturgicalDocumentCollection", + "accumulatedTerms": "liturgical document collection", + "keywords": { + "en": [ + "liturgical document collection" + ] + } + }, + "FABRIC_RECORDS_SERIES": { + "className": "FabricRecordsSeries", + "accumulatedTerms": "fabric records series", + "keywords": { + "en": [ + "fabric records series" + ] + } + }, + "CHURCH_GOVERNANCE_FONDS": { + "className": "ChurchGovernanceFonds", + "accumulatedTerms": "kerkbestuur consistory kerkenraad church council visitation records membership rolls lidmatenregisters kerkbestuurarchief church governance synod records synode kerkorde church governance fonds kirchenleitungsbestand fondo de gobierno eclesiΓ‘stico fonds du gouvernement ecclΓ©siastique fundo de governo eclesiΓ‘stico", + "keywords": { + "nl": [ + "kerkbestuur", + "consistory", + "kerkenraad", + "church council", + "visitation records", + "membership rolls", + "lidmatenregisters", + "kerkbestuurarchief" + ], + "en": [ + "church governance", + "synod records", + "synode", + "kerkorde", + "church governance fonds" + ], + "de": [ + "kirchenleitungsbestand" + ], + "es": [ + "fondo de gobierno eclesiΓ‘stico" + ], + "fr": [ + "fonds du gouvernement ecclΓ©siastique" + ], + "pt": [ + "fundo de governo eclesiΓ‘stico" + ] + } + }, + "PARISH_REGISTER_SERIES": { + "className": "ParishRegisterSeries", + "accumulatedTerms": "parish registers baptism records doopregisters marriage records trouwregisters burial records begraafregisters vital records kerkelijke registers doop-trouw-begraafboeken dtb boeken church records genealogy sources parish register series kirchenbΓΌcher registros parroquiales registres paroissiaux registros paroquiais", + "keywords": { + "nl": [ + "parish registers", + "baptism records", + "doopregisters", + "marriage records", + "trouwregisters", + "burial records", + "begraafregisters", + "vital records", + "kerkelijke registers", + "doop-trouw-begraafboeken" + ], + "en": [ + "dtb boeken", + "church records", + "genealogy sources", + "parish register series" + ], + "de": [ + "kirchenbΓΌcher" + ], + "es": [ + "registros parroquiales" + ], + "fr": [ + "registres paroissiaux" + ], + "pt": [ + "registros paroquiais" + ] + } + }, + "PASTORAL_CORRESPONDENCE_COLLECTION": { + "className": "PastoralCorrespondenceCollection", + "accumulatedTerms": "predikantenarchief sermon manuscripts visitation reports ecclesiastical correspondence minister papers priest correspondence predikantencorrespondentie pastoral correspondence clergy papers pastoral care pastoral correspondence collection pfarrerkorrespondenz correspondencia pastoral correspondance pastorale correspondΓͺncia pastoral", + "keywords": { + "nl": [ + "predikantenarchief", + "sermon manuscripts", + "visitation reports", + "ecclesiastical correspondence", + "minister papers", + "priest correspondence", + "predikantencorrespondentie" + ], + "en": [ + "pastoral correspondence", + "clergy papers", + "pastoral care", + "pastoral correspondence collection" + ], + "de": [ + "pfarrerkorrespondenz" + ], + "es": [ + "correspondencia pastoral" + ], + "fr": [ + "correspondance pastorale" + ], + "pt": [ + "correspondΓͺncia pastoral" + ] + } + }, + "CHURCH_PROPERTY_FONDS": { + "className": "ChurchPropertyFonds", + "accumulatedTerms": "kerkelijke goederen property deeds eigendomsakten building records bouwdossiers financial accounts rekeningen kerkelijk goederenarchief church property endowments legaten cemetery records church property fonds kirchenvermΓΆgensbestand fondo de bienes eclesiΓ‘sticos fonds des biens ecclΓ©siastiques fundo de bens eclesiΓ‘sticos", + "keywords": { + "nl": [ + "kerkelijke goederen", + "property deeds", + "eigendomsakten", + "building records", + "bouwdossiers", + "financial accounts", + "rekeningen", + "kerkelijk goederenarchief" + ], + "en": [ + "church property", + "endowments", + "legaten", + "cemetery records", + "church property fonds" + ], + "de": [ + "kirchenvermΓΆgensbestand" + ], + "es": [ + "fondo de bienes eclesiΓ‘sticos" + ], + "fr": [ + "fonds des biens ecclΓ©siastiques" + ], + "pt": [ + "fundo de bens eclesiΓ‘sticos" + ] + } + }, + "CONGREGATIONAL_LIFE_COLLECTION": { + "className": "CongregationalLifeCollection", + "accumulatedTerms": "congregational life gemeenteleven church societies verenigingen sunday school zondagsschool choir records koor church publications diaconie gemeentelevenscollectie kerkbladen photographs youth groups congregational life collection gemeindelebenssammlung colecciΓ³n de vida parroquial collection de vie paroissiale coleΓ§Γ£o de vida comunitΓ‘ria", + "keywords": { + "nl": [ + "congregational life", + "gemeenteleven", + "church societies", + "verenigingen", + "sunday school", + "zondagsschool", + "choir records", + "koor", + "church publications", + "diaconie", + "gemeentelevenscollectie" + ], + "en": [ + "kerkbladen", + "photographs", + "youth groups", + "congregational life collection" + ], + "de": [ + "gemeindelebenssammlung" + ], + "es": [ + "colecciΓ³n de vida parroquial" + ], + "fr": [ + "collection de vie paroissiale" + ], + "pt": [ + "coleΓ§Γ£o de vida comunitΓ‘ria" + ] + } + }, + "SWEDISH_PARISH_RECORD_SERIES": { + "className": "SwedishParishRecordSeries", + "accumulatedTerms": "swedish parish record series", + "keywords": { + "en": [ + "swedish parish record series" + ] + } + }, + "SWEDISH_CHURCH_PROPERTY_FONDS": { + "className": "SwedishChurchPropertyFonds", + "accumulatedTerms": "swedish church property fonds", + "keywords": { + "en": [ + "swedish church property fonds" + ] + } + }, + "CLIMATE_DATA_COLLECTION": { + "className": "ClimateDataCollection", + "accumulatedTerms": "climate data collection", + "keywords": { + "en": [ + "climate data collection" + ] + } + }, + "METEOROLOGICAL_OBSERVATION_SERIES": { + "className": "MeteorologicalObservationSeries", + "accumulatedTerms": "meteorological observation series", + "keywords": { + "en": [ + "meteorological observation series" + ] + } + }, + "COLLECTED_MATERIALS_FONDS": { + "className": "CollectedMaterialsFonds", + "accumulatedTerms": "collected materials fonds", + "keywords": { + "en": [ + "collected materials fonds" + ] + } + }, + "DONATED_PAPERS_COLLECTION": { + "className": "DonatedPapersCollection", + "accumulatedTerms": "donated papers collection", + "keywords": { + "en": [ + "donated papers collection" + ] + } + }, + "COMARCAL_ADMINISTRATION_FONDS": { + "className": "ComarcalAdministrationFonds", + "accumulatedTerms": "comarcal administration fonds", + "keywords": { + "en": [ + "comarcal administration fonds" + ] + } + }, + "COMARCAL_HISTORY_COLLECTION": { + "className": "ComarcalHistoryCollection", + "accumulatedTerms": "comarcal history collection", + "keywords": { + "en": [ + "comarcal history collection" + ] + } + }, + "COMMUNITY_ORGANIZATION_FONDS": { + "className": "CommunityOrganizationFonds", + "accumulatedTerms": "community organization fonds", + "keywords": { + "en": [ + "community organization fonds" + ] + } + }, + "ORAL_HISTORY_COLLECTION": { + "className": "OralHistoryCollection", + "accumulatedTerms": "oral history collection", + "keywords": { + "en": [ + "oral history collection" + ] + } + }, + "LOCAL_EVENT_DOCUMENTATION": { + "className": "LocalEventDocumentation", + "accumulatedTerms": "local event documentation", + "keywords": { + "en": [ + "local event documentation" + ] + } + }, + "CORPORATE_GOVERNANCE_FONDS": { + "className": "CorporateGovernanceFonds", + "accumulatedTerms": "bedrijfsbestuur board minutes directieverslagen aandeelhouders executive records mergers acquisitions articles of incorporation supervisory board raad van commissarissen bedrijfsbestuurarchief corporate governance shareholders statuten corporate governance fonds unternehmensfΓΌhrungsbestand fondo de gobierno corporativo fonds de gouvernance d'entreprise fundo de governanΓ§a corporativa", + "keywords": { + "nl": [ + "bedrijfsbestuur", + "board minutes", + "directieverslagen", + "aandeelhouders", + "executive records", + "mergers acquisitions", + "articles of incorporation", + "supervisory board", + "raad van commissarissen", + "bedrijfsbestuurarchief" + ], + "en": [ + "corporate governance", + "shareholders", + "statuten", + "corporate governance fonds" + ], + "de": [ + "unternehmensfΓΌhrungsbestand" + ], + "es": [ + "fondo de gobierno corporativo" + ], + "fr": [ + "fonds de gouvernance d'entreprise" + ], + "pt": [ + "fundo de governanΓ§a corporativa" + ] + } + }, + "PRODUCT_DEVELOPMENT_COLLECTION": { + "className": "ProductDevelopmentCollection", + "accumulatedTerms": "productontwikkeling technical drawings technische tekeningen octrooien engineering records industrial design laboratory notebooks productontwikkelingscollectie product development r&d records research and development patents prototypes product development collection produktentwicklungssammlung colecciΓ³n de desarrollo de productos collection de dΓ©veloppement de produits coleΓ§Γ£o de desenvolvimento de produtos", + "keywords": { + "nl": [ + "productontwikkeling", + "technical drawings", + "technische tekeningen", + "octrooien", + "engineering records", + "industrial design", + "laboratory notebooks", + "productontwikkelingscollectie" + ], + "en": [ + "product development", + "r&d records", + "research and development", + "patents", + "prototypes", + "product development collection" + ], + "de": [ + "produktentwicklungssammlung" + ], + "es": [ + "colecciΓ³n de desarrollo de productos" + ], + "fr": [ + "collection de dΓ©veloppement de produits" + ], + "pt": [ + "coleΓ§Γ£o de desenvolvimento de produtos" + ] + } + }, + "MARKETING_ARCHIVE_COLLECTION": { + "className": "MarketingArchiveCollection", + "accumulatedTerms": "marketing archive marketingarchief advertising brand heritage packaging verpakking promotional materials promotiemateriaal campaigns trade fair marketingarchiefcollectie reclame merkerfgoed campagnes beurs marketing archive collection marketingarchivsammlung colecciΓ³n de archivo de marketing collection d'archives marketing coleΓ§Γ£o de arquivo de marketing", + "keywords": { + "nl": [ + "marketing archive", + "marketingarchief", + "advertising", + "brand heritage", + "packaging", + "verpakking", + "promotional materials", + "promotiemateriaal", + "campaigns", + "trade fair", + "marketingarchiefcollectie" + ], + "en": [ + "reclame", + "merkerfgoed", + "campagnes", + "beurs", + "marketing archive collection" + ], + "de": [ + "marketingarchivsammlung" + ], + "es": [ + "colecciΓ³n de archivo de marketing" + ], + "fr": [ + "collection d'archives marketing" + ], + "pt": [ + "coleΓ§Γ£o de arquivo de marketing" + ] + } + }, + "PERSONNEL_RECORDS_SERIES": { + "className": "PersonnelRecordsSeries", + "accumulatedTerms": "personeelsdossiers arbeidsovereenkomsten salarisadministratie training records performance evaluations works council ondernemingsraad personnel records employment contracts payroll human resources hr records personnel records series personalakten expedientes de personal dossiers du personnel registros de pessoal", + "keywords": { + "nl": [ + "personeelsdossiers", + "arbeidsovereenkomsten", + "salarisadministratie", + "training records", + "performance evaluations", + "works council", + "ondernemingsraad", + "personeelsdossiers" + ], + "en": [ + "personnel records", + "employment contracts", + "payroll", + "human resources", + "hr records", + "personnel records series" + ], + "de": [ + "personalakten" + ], + "es": [ + "expedientes de personal" + ], + "fr": [ + "dossiers du personnel" + ], + "pt": [ + "registros de pessoal" + ] + } + }, + "CORPORATE_PUBLICATIONS_SERIES": { + "className": "CorporatePublicationsSeries", + "accumulatedTerms": "corporate publications bedrijfspublicaties jaarverslagen house magazines personeelsbladen nieuwsbrieven commemorative publications jubileumuitgaven corporate communications annual reports newsletters corporate publications series unternehmenspublikationen publicaciones corporativas publications d'entreprise publicaΓ§Γ΅es corporativas", + "keywords": { + "nl": [ + "corporate publications", + "bedrijfspublicaties", + "jaarverslagen", + "house magazines", + "personeelsbladen", + "nieuwsbrieven", + "commemorative publications", + "jubileumuitgaven", + "corporate communications", + "bedrijfspublicaties" + ], + "en": [ + "annual reports", + "newsletters", + "corporate publications series" + ], + "de": [ + "unternehmenspublikationen" + ], + "es": [ + "publicaciones corporativas" + ], + "fr": [ + "publications d'entreprise" + ], + "pt": [ + "publicaΓ§Γ΅es corporativas" + ] + } + }, + "ACTIVE_RECORDS_FONDS": { + "className": "ActiveRecordsFonds", + "accumulatedTerms": "active records fonds", + "keywords": { + "en": [ + "active records fonds" + ] + } + }, + "CUSTODIAL_RECORDS_FONDS": { + "className": "CustodialRecordsFonds", + "accumulatedTerms": "custodial records fonds", + "keywords": { + "en": [ + "custodial records fonds" + ] + } + }, + "PRESERVATION_COPY_COLLECTION": { + "className": "PreservationCopyCollection", + "accumulatedTerms": "preservation copy collection", + "keywords": { + "en": [ + "preservation copy collection" + ] + } + }, + "DIGITAL_PRESERVATION_FONDS": { + "className": "DigitalPreservationFonds", + "accumulatedTerms": "digital preservation fonds", + "keywords": { + "en": [ + "digital preservation fonds" + ] + } + }, + "DEPARTMENT_ADMINISTRATION_FONDS": { + "className": "DepartmentAdministrationFonds", + "accumulatedTerms": "department administration fonds", + "keywords": { + "en": [ + "department administration fonds" + ] + } + }, + "PREFECTURE_SERIES": { + "className": "PrefectureSeries", + "accumulatedTerms": "prefecture series", + "keywords": { + "en": [ + "prefecture series" + ] + } + }, + "DEPOSITED_RECORDS_FONDS": { + "className": "DepositedRecordsFonds", + "accumulatedTerms": "deposited records fonds", + "keywords": { + "en": [ + "deposited records fonds" + ] + } + }, + "DIGITAL_OBJECT_COLLECTION": { + "className": "DigitalObjectCollection", + "accumulatedTerms": "digital object collection", + "keywords": { + "en": [ + "digital object collection" + ] + } + }, + "DIGITIZED_COLLECTION": { + "className": "DigitizedCollection", + "accumulatedTerms": "digitized collection", + "keywords": { + "en": [ + "digitized collection" + ] + } + }, + "WEB_ARCHIVE_COLLECTION": { + "className": "WebArchiveCollection", + "accumulatedTerms": "web archive collection", + "keywords": { + "en": [ + "web archive collection" + ] + } + }, + "DIGITALLY_INACCESSIBLE_COLLECTION": { + "className": "DigitallyInaccessibleCollection", + "accumulatedTerms": "digitally inaccessible collection", + "keywords": { + "en": [ + "digitally inaccessible collection" + ] + } + }, + "DIOCESAN_ADMINISTRATION_FONDS": { + "className": "DiocesanAdministrationFonds", + "accumulatedTerms": "diocesan administration fonds", + "keywords": { + "en": [ + "diocesan administration fonds" + ] + } + }, + "PARISH_RECORD_SERIES": { + "className": "ParishRecordSeries", + "accumulatedTerms": "parish record series", + "keywords": { + "en": [ + "parish record series" + ] + } + }, + "EPISCOPAL_CORRESPONDENCE_COLLECTION": { + "className": "EpiscopalCorrespondenceCollection", + "accumulatedTerms": "episcopal correspondence collection", + "keywords": { + "en": [ + "episcopal correspondence collection" + ] + } + }, + "KREIS_ADMINISTRATION_FONDS": { + "className": "KreisAdministrationFonds", + "accumulatedTerms": "kreis administration fonds", + "keywords": { + "en": [ + "kreis administration fonds" + ] + } + }, + "LOCAL_GOVERNANCE_SERIES": { + "className": "LocalGovernanceSeries", + "accumulatedTerms": "local governance series", + "keywords": { + "en": [ + "local governance series" + ] + } + }, + "DISTRITO_ADMINISTRATION_FONDS": { + "className": "DistritoAdministrationFonds", + "accumulatedTerms": "distrito administration fonds", + "keywords": { + "en": [ + "distrito administration fonds" + ] + } + }, + "BUSINESS_RECORDS_FONDS": { + "className": "BusinessRecordsFonds", + "accumulatedTerms": "business records fonds", + "keywords": { + "en": [ + "business records fonds" + ] + } + }, + "TRADE_DOCUMENTATION_COLLECTION": { + "className": "TradeDocumentationCollection", + "accumulatedTerms": "trade documentation collection", + "keywords": { + "en": [ + "trade documentation collection" + ] + } + }, + "FEATURE_FILM_COLLECTION": { + "className": "FeatureFilmCollection", + "accumulatedTerms": "feature films speelfilms fiction films theatrical films narrative cinema art films silent films studio films national cinema speelfilmcollectie feature film collection spielfilmsammlung colecciΓ³n de largometrajes collection de films de fiction coleΓ§Γ£o de filmes de ficΓ§Γ£o", + "keywords": { + "nl": [ + "feature films", + "speelfilms", + "fiction films", + "theatrical films", + "narrative cinema", + "art films", + "silent films", + "studio films", + "national cinema", + "speelfilmcollectie" + ], + "en": [ + "feature film collection" + ], + "de": [ + "spielfilmsammlung" + ], + "es": [ + "colecciΓ³n de largometrajes" + ], + "fr": [ + "collection de films de fiction" + ], + "pt": [ + "coleΓ§Γ£o de filmes de ficΓ§Γ£o" + ] + } + }, + "DOCUMENTARY_FILM_COLLECTION": { + "className": "DocumentaryFilmCollection", + "accumulatedTerms": "documentary films documentaires non-fiction films industrial films bedrijfsfilms educational films onderwijsfilms ethnographic films sponsored films voorlichtingsfilms documentairefilmcollectie documentary film collection dokumentarfilmsammlung colecciΓ³n de documentales collection de films documentaires coleΓ§Γ£o de documentΓ‘rios", + "keywords": { + "nl": [ + "documentary films", + "documentaires", + "non-fiction films", + "industrial films", + "bedrijfsfilms", + "educational films", + "onderwijsfilms", + "ethnographic films", + "sponsored films", + "voorlichtingsfilms", + "documentairefilmcollectie" + ], + "en": [ + "documentary film collection" + ], + "de": [ + "dokumentarfilmsammlung" + ], + "es": [ + "colecciΓ³n de documentales" + ], + "fr": [ + "collection de films documentaires" + ], + "pt": [ + "coleΓ§Γ£o de documentΓ‘rios" + ] + } + }, + "NEWSREEL_SERIES": { + "className": "NewsreelSeries", + "accumulatedTerms": "newsreels bioscoopjournaals screen magazines actualities nieuwsfilms wochenschau film news cinematograph news war newsreels polygoon bioscoopjournaalreeks newsreel series wochenschausammlung colecciΓ³n de noticiarios collection de journaux cinΓ©matographiques coleΓ§Γ£o de cinejornais", + "keywords": { + "nl": [ + "newsreels", + "bioscoopjournaals", + "screen magazines", + "actualities", + "nieuwsfilms", + "wochenschau", + "film news", + "cinematograph news", + "war newsreels", + "polygoon", + "bioscoopjournaalreeks" + ], + "en": [ + "newsreel series" + ], + "de": [ + "wochenschausammlung" + ], + "es": [ + "colecciΓ³n de noticiarios" + ], + "fr": [ + "collection de journaux cinΓ©matographiques" + ], + "pt": [ + "coleΓ§Γ£o de cinejornais" + ] + } + }, + "PRODUCTION_RECORDS_FONDS": { + "className": "ProductionRecordsFonds", + "accumulatedTerms": "production records productiedossiers screenplays draaiboeken scripts shooting schedules call sheets film production studio records filmmaker papers filmproductiearchief production records fonds filmproduktionsbestand fondo de producciΓ³n cinematogrΓ‘fica fonds de production cinΓ©matographique fundo de produΓ§Γ£o cinematogrΓ‘fica", + "keywords": { + "nl": [ + "production records", + "productiedossiers", + "screenplays", + "draaiboeken", + "scripts", + "shooting schedules", + "call sheets", + "film production", + "studio records", + "filmmaker papers", + "filmproductiearchief" + ], + "en": [ + "production records fonds" + ], + "de": [ + "filmproduktionsbestand" + ], + "es": [ + "fondo de producciΓ³n cinematogrΓ‘fica" + ], + "fr": [ + "fonds de production cinΓ©matographique" + ], + "pt": [ + "fundo de produΓ§Γ£o cinematogrΓ‘fica" + ] + } + }, + "FILM_PROMO_COLLECTION": { + "className": "FilmPromoCollection", + "accumulatedTerms": "film posters filmposters affiches publicity stills press kits perskits trailers film advertising promotional materials filmpromotiemateriaalcollectie lobby cards reclame star photographs film promo collection filmwerbematerialsammlung colecciΓ³n de promociΓ³n cinematogrΓ‘fica collection de matΓ©riel promotionnel coleΓ§Γ£o de material promocional", + "keywords": { + "nl": [ + "film posters", + "filmposters", + "affiches", + "publicity stills", + "press kits", + "perskits", + "trailers", + "film advertising", + "promotional materials", + "filmpromotiemateriaalcollectie" + ], + "en": [ + "lobby cards", + "reclame", + "star photographs", + "film promo collection" + ], + "de": [ + "filmwerbematerialsammlung" + ], + "es": [ + "colecciΓ³n de promociΓ³n cinematogrΓ‘fica" + ], + "fr": [ + "collection de matΓ©riel promotionnel" + ], + "pt": [ + "coleΓ§Γ£o de material promocional" + ] + } + }, + "FOUNDATION_ADMINISTRATION_FONDS": { + "className": "FoundationAdministrationFonds", + "accumulatedTerms": "foundation administration fonds", + "keywords": { + "en": [ + "foundation administration fonds" + ] + } + }, + "GRANT_RECORD_SERIES": { + "className": "GrantRecordSeries", + "accumulatedTerms": "grant record series", + "keywords": { + "en": [ + "grant record series" + ] + } + }, + "PROJECT_DOCUMENTATION_COLLECTION": { + "className": "ProjectDocumentationCollection", + "accumulatedTerms": "project documentation collection", + "keywords": { + "en": [ + "project documentation collection" + ] + } + }, + "OPEN_ACCESS_COLLECTION": { + "className": "OpenAccessCollection", + "accumulatedTerms": "open access collection", + "keywords": { + "en": [ + "open access collection" + ] + } + }, + "FRENCH_PRIVATE_FONDS": { + "className": "FrenchPrivateFonds", + "accumulatedTerms": "french private fonds", + "keywords": { + "en": [ + "french private fonds" + ] + } + }, + "AGENCY_ADMINISTRATIVE_FONDS": { + "className": "AgencyAdministrativeFonds", + "accumulatedTerms": "agency administrative fonds", + "keywords": { + "en": [ + "agency administrative fonds" + ] + } + }, + "POLICY_DOCUMENT_COLLECTION": { + "className": "PolicyDocumentCollection", + "accumulatedTerms": "policy document collection", + "keywords": { + "en": [ + "policy document collection" + ] + } + }, + "PUBLIC_SERVICE_RECORD_SERIES": { + "className": "PublicServiceRecordSeries", + "accumulatedTerms": "public service record series", + "keywords": { + "en": [ + "public service record series" + ] + } + }, + "HISTORICAL_DOCUMENT_FONDS": { + "className": "HistoricalDocumentFonds", + "accumulatedTerms": "historical document fonds", + "keywords": { + "en": [ + "historical document fonds" + ] + } + }, + "HISTORICAL_MANUSCRIPT_COLLECTION": { + "className": "HistoricalManuscriptCollection", + "accumulatedTerms": "historical manuscript collection", + "keywords": { + "en": [ + "historical manuscript collection" + ] + } + }, + "HOSPITAL_ADMINISTRATION_FONDS": { + "className": "HospitalAdministrationFonds", + "accumulatedTerms": "hospital administration ziekenhuisbestuur board minutes jaarverslagen hospital governance financial records personnel administration ziekenhuisbestuursarchief notulen annual reports healthcare management hospital administration fonds krankenhausverwaltungsbestand fondo de administracion hospitalaria fonds d'administration hospitaliere fundo de administracao hospitalar", + "keywords": { + "nl": [ + "hospital administration", + "ziekenhuisbestuur", + "board minutes", + "jaarverslagen", + "hospital governance", + "financial records", + "personnel administration", + "ziekenhuisbestuursarchief" + ], + "en": [ + "notulen", + "annual reports", + "healthcare management", + "hospital administration fonds" + ], + "de": [ + "krankenhausverwaltungsbestand" + ], + "es": [ + "fondo de administracion hospitalaria" + ], + "fr": [ + "fonds d'administration hospitaliere" + ], + "pt": [ + "fundo de administracao hospitalar" + ] + } + }, + "PATIENT_RECORDS_SERIES": { + "className": "PatientRecordsSeries", + "accumulatedTerms": "patient records patientendossiers medical records ziektegeschiedenis admission records surgical records operatieverslagen birth registers geboorteregisters death registers overlijdensregisters medical history opnameboeken patient records series patientenaktenserie serie de expedientes de pacientes serie de dossiers de patients serie de prontuarios de pacientes", + "keywords": { + "nl": [ + "patient records", + "patientendossiers", + "medical records", + "ziektegeschiedenis", + "admission records", + "surgical records", + "operatieverslagen", + "birth registers", + "geboorteregisters", + "death registers", + "overlijdensregisters", + "medical history", + "patientendossiers" + ], + "en": [ + "opnameboeken", + "patient records series" + ], + "de": [ + "patientenaktenserie" + ], + "es": [ + "serie de expedientes de pacientes" + ], + "fr": [ + "serie de dossiers de patients" + ], + "pt": [ + "serie de prontuarios de pacientes" + ] + } + }, + "MEDICAL_RESEARCH_COLLECTION": { + "className": "MedicalResearchCollection", + "accumulatedTerms": "medical research medisch onderzoek clinical trials klinische studies ethics approval clinical research laboratory notebooks medisch onderzoeksarchief research data onderzoeksgegevens metc research protocols medical research collection medizinische forschungssammlung coleccion de investigacion medica collection de recherche medicale colecao de pesquisa medica", + "keywords": { + "nl": [ + "medical research", + "medisch onderzoek", + "clinical trials", + "klinische studies", + "ethics approval", + "clinical research", + "laboratory notebooks", + "medisch onderzoeksarchief" + ], + "en": [ + "research data", + "onderzoeksgegevens", + "metc", + "research protocols", + "medical research collection" + ], + "de": [ + "medizinische forschungssammlung" + ], + "es": [ + "coleccion de investigacion medica" + ], + "fr": [ + "collection de recherche medicale" + ], + "pt": [ + "colecao de pesquisa medica" + ] + } + }, + "NURSING_RECORDS_COLLECTION": { + "className": "NursingRecordsCollection", + "accumulatedTerms": "nursing records verpleegkundig archief nursing education verpleegkundigenopleiding nursing school leerling-verpleegkundigen nursing history nursing administration nurse training nursing profession student nurses nursing records collection pflegedokumentationssammlung coleccion de documentacion de enfermeria collection de documentation infirmiere colecao de documentacao de enfermagem", + "keywords": { + "nl": [ + "nursing records", + "verpleegkundig archief", + "nursing education", + "verpleegkundigenopleiding", + "nursing school", + "leerling-verpleegkundigen", + "nursing history", + "nursing administration", + "nurse training", + "nursing profession", + "verpleegkundig archief" + ], + "en": [ + "student nurses", + "nursing records collection" + ], + "de": [ + "pflegedokumentationssammlung" + ], + "es": [ + "coleccion de documentacion de enfermeria" + ], + "fr": [ + "collection de documentation infirmiere" + ], + "pt": [ + "colecao de documentacao de enfermagem" + ] + } + }, + "MEDICAL_PHOTOGRAPHY_COLLECTION": { + "className": "MedicalPhotographyCollection", + "accumulatedTerms": "medical photography medische fotografie clinical photography klinische fotografie medical illustration surgical photography dermatological images pathological specimens teaching slides medical imaging history medische fotocollectie x-rays rontgenfoto's medical photography collection medizinische fotosammlung coleccion de fotografia medica collection de photographie medicale colecao de fotografia medica", + "keywords": { + "nl": [ + "medical photography", + "medische fotografie", + "clinical photography", + "klinische fotografie", + "medical illustration", + "surgical photography", + "dermatological images", + "pathological specimens", + "teaching slides", + "medical imaging history", + "medische fotocollectie" + ], + "en": [ + "x-rays", + "rontgenfoto's", + "medical photography collection" + ], + "de": [ + "medizinische fotosammlung" + ], + "es": [ + "coleccion de fotografia medica" + ], + "fr": [ + "collection de photographie medicale" + ], + "pt": [ + "colecao de fotografia medica" + ] + } + }, + "HOUSE_RECORDS_FONDS": { + "className": "HouseRecordsFonds", + "accumulatedTerms": "house records fonds", + "keywords": { + "en": [ + "house records fonds" + ] + } + }, + "FAMILY_PAPERS_COLLECTION": { + "className": "FamilyPapersCollection", + "accumulatedTerms": "family papers collection", + "keywords": { + "en": [ + "family papers collection" + ] + } + }, + "ESTATE_DOCUMENT_SERIES": { + "className": "EstateDocumentSeries", + "accumulatedTerms": "estate document series", + "keywords": { + "en": [ + "estate document series" + ] + } + }, + "VISUAL_IMAGE_COLLECTION": { + "className": "VisualImageCollection", + "accumulatedTerms": "visual image collection", + "keywords": { + "en": [ + "visual image collection" + ] + } + }, + "PRINT_COLLECTION": { + "className": "PrintCollection", + "accumulatedTerms": "print collection", + "keywords": { + "en": [ + "print collection" + ] + } + }, + "INSTITUTION_ADMINISTRATION_FONDS": { + "className": "InstitutionAdministrationFonds", + "accumulatedTerms": "institution administration fonds", + "keywords": { + "en": [ + "institution administration fonds" + ] + } + }, + "OPERATIONAL_RECORD_SERIES": { + "className": "OperationalRecordSeries", + "accumulatedTerms": "operational record series", + "keywords": { + "en": [ + "operational record series" + ] + } + }, + "SHARED_RECORDS_FONDS": { + "className": "SharedRecordsFonds", + "accumulatedTerms": "shared records fonds", + "keywords": { + "en": [ + "shared records fonds" + ] + } + }, + "LGBTORGANIZATION_FONDS": { + "className": "LGBTOrganizationFonds", + "accumulatedTerms": "l g b t organization fonds", + "keywords": { + "en": [ + "l g b t organization fonds" + ] + } + }, + "ACTIVIST_PAPERS_COLLECTION": { + "className": "ActivistPapersCollection", + "accumulatedTerms": "activist papers collection", + "keywords": { + "en": [ + "activist papers collection" + ] + } + }, + "PRIDE_EVENT_COLLECTION": { + "className": "PrideEventCollection", + "accumulatedTerms": "pride event collection", + "keywords": { + "en": [ + "pride event collection" + ] + } + }, + "MINIMAL_PROCESSING_COLLECTION": { + "className": "MinimalProcessingCollection", + "accumulatedTerms": "minimal processing collection", + "keywords": { + "en": [ + "minimal processing collection" + ] + } + }, + "AUTHOR_PAPERS_COLLECTION": { + "className": "AuthorPapersCollection", + "accumulatedTerms": "author papers collection", + "keywords": { + "en": [ + "author papers collection" + ] + } + }, + "LITERARY_MANUSCRIPT_COLLECTION": { + "className": "LiteraryManuscriptCollection", + "accumulatedTerms": "literary manuscript collection", + "keywords": { + "en": [ + "literary manuscript collection" + ] + } + }, + "PUBLISHER_RECORDS_SERIES": { + "className": "PublisherRecordsSeries", + "accumulatedTerms": "publisher records series", + "keywords": { + "en": [ + "publisher records series" + ] + } + }, + "LOCAL_ADMINISTRATION_FONDS": { + "className": "LocalAdministrationFonds", + "accumulatedTerms": "local administration fonds", + "keywords": { + "en": [ + "local administration fonds" + ] + } + }, + "PUBLIC_WORKS_SERIES": { + "className": "PublicWorksSeries", + "accumulatedTerms": "public works series", + "keywords": { + "en": [ + "public works series" + ] + } + }, + "LOCAL_TAX_RECORDS_SERIES": { + "className": "LocalTaxRecordsSeries", + "accumulatedTerms": "local tax records series", + "keywords": { + "en": [ + "local tax records series" + ] + } + }, + "LOCAL_HISTORY_FONDS": { + "className": "LocalHistoryFonds", + "accumulatedTerms": "local history fonds", + "keywords": { + "en": [ + "local history fonds" + ] + } + }, + "COMMUNITY_PHOTOGRAPH_COLLECTION": { + "className": "CommunityPhotographCollection", + "accumulatedTerms": "community photograph collection", + "keywords": { + "en": [ + "community photograph collection" + ] + } + }, + "LOCAL_NEWSPAPER_COLLECTION": { + "className": "LocalNewspaperCollection", + "accumulatedTerms": "local newspaper collection", + "keywords": { + "en": [ + "local newspaper collection" + ] + } + }, + "EMAIL_ARCHIVE_COLLECTION": { + "className": "EmailArchiveCollection", + "accumulatedTerms": "email archive collection", + "keywords": { + "en": [ + "email archive collection" + ] + } + }, + "DISCUSSION_FORUM_FONDS": { + "className": "DiscussionForumFonds", + "accumulatedTerms": "discussion forum fonds", + "keywords": { + "en": [ + "discussion forum fonds" + ] + } + }, + "MEDIA_PRODUCTION_FONDS": { + "className": "MediaProductionFonds", + "accumulatedTerms": "media production fonds", + "keywords": { + "en": [ + "media production fonds" + ] + } + }, + "BROADCAST_COLLECTION": { + "className": "BroadcastCollection", + "accumulatedTerms": "broadcast collection", + "keywords": { + "en": [ + "broadcast collection" + ] + } + }, + "MILITARY_OPERATIONS_FONDS": { + "className": "MilitaryOperationsFonds", + "accumulatedTerms": "military operations operatiebevelen war diaries oorlogsdagboeken campaign records veldtocht gevechtsverslagen intelligence reports strategic planning militaire operatiearchief combat records command records military operations fonds militΓ€roperationsbestand fondo de operaciones militares fonds d'opΓ©rations militaires fundo de operaΓ§Γ΅es militares", + "keywords": { + "nl": [ + "military operations", + "operatiebevelen", + "war diaries", + "oorlogsdagboeken", + "campaign records", + "veldtocht", + "gevechtsverslagen", + "intelligence reports", + "strategic planning", + "militaire operatiearchief" + ], + "en": [ + "combat records", + "command records", + "military operations fonds" + ], + "de": [ + "militΓ€roperationsbestand" + ], + "es": [ + "fondo de operaciones militares" + ], + "fr": [ + "fonds d'opΓ©rations militaires" + ], + "pt": [ + "fundo de operaΓ§Γ΅es militares" + ] + } + }, + "MILITARY_PERSONNEL_SERIES": { + "className": "MilitaryPersonnelSeries", + "accumulatedTerms": "military personnel service records staten van dienst enlistment records inschrijving decorations onderscheidingen discharge military genealogy militaire stamboeken stamboeken muster rolls military personnel series militΓ€rpersonalakten expedientes de personal militar dossiers du personnel militaire registros de pessoal militar", + "keywords": { + "nl": [ + "military personnel", + "service records", + "staten van dienst", + "enlistment records", + "inschrijving", + "decorations", + "onderscheidingen", + "discharge", + "military genealogy", + "militaire stamboeken" + ], + "en": [ + "stamboeken", + "muster rolls", + "military personnel series" + ], + "de": [ + "militΓ€rpersonalakten" + ], + "es": [ + "expedientes de personal militar" + ], + "fr": [ + "dossiers du personnel militaire" + ], + "pt": [ + "registros de pessoal militar" + ] + } + }, + "UNIT_HISTORY_COLLECTION": { + "className": "UnitHistoryCollection", + "accumulatedTerms": "unit history regimentsgeschiedenis regimental records battalion history ship records scheepsarchief erelijst veterans associations regimentsarchieven squadron records battle honors honor rolls unit history collection regimentsgeschichtesammlung colecciΓ³n de historias de unidades collection d'histoires d'unitΓ©s coleΓ§Γ£o de histΓ³rias de unidades", + "keywords": { + "nl": [ + "unit history", + "regimentsgeschiedenis", + "regimental records", + "battalion history", + "ship records", + "scheepsarchief", + "erelijst", + "veterans associations", + "regimentsarchieven" + ], + "en": [ + "squadron records", + "battle honors", + "honor rolls", + "unit history collection" + ], + "de": [ + "regimentsgeschichtesammlung" + ], + "es": [ + "colecciΓ³n de historias de unidades" + ], + "fr": [ + "collection d'histoires d'unitΓ©s" + ], + "pt": [ + "coleΓ§Γ£o de histΓ³rias de unidades" + ] + } + }, + "MILITARY_MAPS_COLLECTION": { + "className": "MilitaryMapsCollection", + "accumulatedTerms": "military maps militaire kaarten gevechtskaarten fortification plans vestingplannen aerial photographs luchtfoto's strategic maps tactical maps militaire kaartenverzameling battle maps survey maps cartography military maps collection militΓ€rkatensammlung colecciΓ³n de mapas militares collection de cartes militaires coleΓ§Γ£o de mapas militares", + "keywords": { + "nl": [ + "military maps", + "militaire kaarten", + "gevechtskaarten", + "fortification plans", + "vestingplannen", + "aerial photographs", + "luchtfoto's", + "strategic maps", + "tactical maps", + "militaire kaartenverzameling" + ], + "en": [ + "battle maps", + "survey maps", + "cartography", + "military maps collection" + ], + "de": [ + "militΓ€rkatensammlung" + ], + "es": [ + "colecciΓ³n de mapas militares" + ], + "fr": [ + "collection de cartes militaires" + ], + "pt": [ + "coleΓ§Γ£o de mapas militares" + ] + } + }, + "VETERANS_DOCUMENTATION_COLLECTION": { + "className": "VeteransDocumentationCollection", + "accumulatedTerms": "veterans documentation veteranendocumentatie oorlogsgraven commemoration herdenking memorials oral history war testimonies resistance krijgsgevangenen veteranendocumentatiecollectie war graves monumenten verzet pow veterans documentation collection veteranendokumentationssammlung colecciΓ³n de documentaciΓ³n de veteranos collection de documentation des anciens combattants coleΓ§Γ£o de documentaΓ§Γ£o de veteranos", + "keywords": { + "nl": [ + "veterans documentation", + "veteranendocumentatie", + "oorlogsgraven", + "commemoration", + "herdenking", + "memorials", + "oral history", + "war testimonies", + "resistance", + "krijgsgevangenen", + "veteranendocumentatiecollectie" + ], + "en": [ + "war graves", + "monumenten", + "verzet", + "pow", + "veterans documentation collection" + ], + "de": [ + "veteranendokumentationssammlung" + ], + "es": [ + "colecciΓ³n de documentaciΓ³n de veteranos" + ], + "fr": [ + "collection de documentation des anciens combattants" + ], + "pt": [ + "coleΓ§Γ£o de documentaΓ§Γ£o de veteranos" + ] + } + }, + "MONASTIC_RECORDS_FONDS": { + "className": "MonasticRecordsFonds", + "accumulatedTerms": "monastic records fonds", + "keywords": { + "en": [ + "monastic records fonds" + ] + } + }, + "MONASTIC_MANUSCRIPT_COLLECTION": { + "className": "MonasticManuscriptCollection", + "accumulatedTerms": "monastic manuscript collection", + "keywords": { + "en": [ + "monastic manuscript collection" + ] + } + }, + "PROPERTY_RECORDS_SERIES": { + "className": "PropertyRecordsSeries", + "accumulatedTerms": "property records series", + "keywords": { + "en": [ + "property records series" + ] + } + }, + "COUNCIL_GOVERNANCE_FONDS": { + "className": "CouncilGovernanceFonds", + "accumulatedTerms": "council minutes gemeenteraad ordinances verordeningen resolutions besluiten b&w besluiten election records civic ceremonies gemeenteraadsarchief bylaws mayor correspondence aldermen records council governance fonds ratsarchivbestand fondo de actas municipales fonds du conseil municipal fundo da cΓ’mara municipal", + "keywords": { + "nl": [ + "council minutes", + "gemeenteraad", + "ordinances", + "verordeningen", + "resolutions", + "besluiten", + "b&w besluiten", + "election records", + "civic ceremonies", + "gemeenteraadsarchief" + ], + "en": [ + "bylaws", + "mayor correspondence", + "aldermen records", + "council governance fonds" + ], + "de": [ + "ratsarchivbestand" + ], + "es": [ + "fondo de actas municipales" + ], + "fr": [ + "fonds du conseil municipal" + ], + "pt": [ + "fundo da cΓ’mara municipal" + ] + } + }, + "CIVIL_REGISTRY_SERIES": { + "className": "CivilRegistrySeries", + "accumulatedTerms": "civil registry burgerlijke stand birth records geboorteakten marriage records huwelijksakten overlijdensakten population register bevolkingsregister vital records death records genealogy sources civil registry series standesamtsregister registros civiles registres d'Γ©tat civil registros civis", + "keywords": { + "nl": [ + "civil registry", + "burgerlijke stand", + "birth records", + "geboorteakten", + "marriage records", + "huwelijksakten", + "overlijdensakten", + "population register", + "bevolkingsregister", + "vital records", + "burgerlijke stand" + ], + "en": [ + "death records", + "genealogy sources", + "civil registry series" + ], + "de": [ + "standesamtsregister" + ], + "es": [ + "registros civiles" + ], + "fr": [ + "registres d'Γ©tat civil" + ], + "pt": [ + "registros civis" + ] + } + }, + "MUNICIPAL_ADMINISTRATION_FONDS": { + "className": "MunicipalAdministrationFonds", + "accumulatedTerms": "municipal administration gemeente diensten public works finance records financien social services sociale zaken personeelszaken gemeentelijke dienstarchief openbare werken personnel records department records municipal administration fonds kommunalverwaltungsbestand fondo de administraciΓ³n municipal fonds d'administration municipale fundo de administraΓ§Γ£o municipal", + "keywords": { + "nl": [ + "municipal administration", + "gemeente diensten", + "public works", + "finance records", + "financien", + "social services", + "sociale zaken", + "personeelszaken", + "gemeentelijke dienstarchief" + ], + "en": [ + "openbare werken", + "personnel records", + "department records", + "municipal administration fonds" + ], + "de": [ + "kommunalverwaltungsbestand" + ], + "es": [ + "fondo de administraciΓ³n municipal" + ], + "fr": [ + "fonds d'administration municipale" + ], + "pt": [ + "fundo de administraΓ§Γ£o municipal" + ] + } + }, + "URBAN_PLANNING_COLLECTION": { + "className": "UrbanPlanningCollection", + "accumulatedTerms": "urban planning building permits bouwvergunningen building plans bouwtekeningen zoning bestemmingsplannen stedenbouwkundige collectie stedenbouw maps plattegronden monuments monumenten cadastral records urban planning collection stadtplanungssammlung colecciΓ³n de urbanismo collection d'urbanisme coleΓ§Γ£o de urbanismo", + "keywords": { + "nl": [ + "urban planning", + "building permits", + "bouwvergunningen", + "building plans", + "bouwtekeningen", + "zoning", + "bestemmingsplannen", + "stedenbouwkundige collectie" + ], + "en": [ + "stedenbouw", + "maps", + "plattegronden", + "monuments", + "monumenten", + "cadastral records", + "urban planning collection" + ], + "de": [ + "stadtplanungssammlung" + ], + "es": [ + "colecciΓ³n de urbanismo" + ], + "fr": [ + "collection d'urbanisme" + ], + "pt": [ + "coleΓ§Γ£o de urbanismo" + ] + } + }, + "LOCAL_HISTORY_COLLECTION": { + "className": "LocalHistoryCollection", + "accumulatedTerms": "local history plaatselijke geschiedenis prentbriefkaarten oral history community history local businesses heemkunde lokaalhistorische collectie photographs foto's postcards newspapers kranten ephemera local history collection ortsgeschichtliche sammlung colecciΓ³n de historia local collection d'histoire locale coleΓ§Γ£o de histΓ³ria local", + "keywords": { + "nl": [ + "local history", + "plaatselijke geschiedenis", + "prentbriefkaarten", + "oral history", + "community history", + "local businesses", + "heemkunde", + "lokaalhistorische collectie" + ], + "en": [ + "photographs", + "foto's", + "postcards", + "newspapers", + "kranten", + "ephemera", + "local history collection" + ], + "de": [ + "ortsgeschichtliche sammlung" + ], + "es": [ + "colecciΓ³n de historia local" + ], + "fr": [ + "collection d'histoire locale" + ], + "pt": [ + "coleΓ§Γ£o de histΓ³ria local" + ] + } + }, + "MUSEUM_ADMINISTRATION_FONDS": { + "className": "MuseumAdministrationFonds", + "accumulatedTerms": "museum administration fonds", + "keywords": { + "en": [ + "museum administration fonds" + ] + } + }, + "COLLECTION_DOCUMENTATION_SERIES": { + "className": "CollectionDocumentationSeries", + "accumulatedTerms": "collection documentation series", + "keywords": { + "en": [ + "collection documentation series" + ] + } + }, + "EXHIBITION_RECORD_COLLECTION": { + "className": "ExhibitionRecordCollection", + "accumulatedTerms": "exhibition record collection", + "keywords": { + "en": [ + "exhibition record collection" + ] + } + }, + "MUSIC_MANUSCRIPT_COLLECTION": { + "className": "MusicManuscriptCollection", + "accumulatedTerms": "music manuscript collection", + "keywords": { + "en": [ + "music manuscript collection" + ] + } + }, + "PERFORMANCE_RECORDING_SERIES": { + "className": "PerformanceRecordingSeries", + "accumulatedTerms": "performance recording series", + "keywords": { + "en": [ + "performance recording series" + ] + } + }, + "COMPOSER_PAPERS_COLLECTION": { + "className": "ComposerPapersCollection", + "accumulatedTerms": "composer papers collection", + "keywords": { + "en": [ + "composer papers collection" + ] + } + }, + "GOVERNMENT_ADMINISTRATIVE_FONDS": { + "className": "GovernmentAdministrativeFonds", + "accumulatedTerms": "government administrative fonds", + "keywords": { + "en": [ + "government administrative fonds" + ] + } + }, + "LEGISLATIVE_RECORD_SERIES": { + "className": "LegislativeRecordSeries", + "accumulatedTerms": "legislative record series", + "keywords": { + "en": [ + "legislative record series" + ] + } + }, + "DIPLOMATIC_CORRESPONDENCE_COLLECTION": { + "className": "DiplomaticCorrespondenceCollection", + "accumulatedTerms": "diplomatic correspondence collection", + "keywords": { + "en": [ + "diplomatic correspondence collection" + ] + } + }, + "NATIONAL_STATISTICS_SERIES": { + "className": "NationalStatisticsSeries", + "accumulatedTerms": "national statistics series", + "keywords": { + "en": [ + "national statistics series" + ] + } + }, + "CLIPPINGS_COLLECTION": { + "className": "ClippingsCollection", + "accumulatedTerms": "clippings collection", + "keywords": { + "en": [ + "clippings collection" + ] + } + }, + "SUBJECT_FILE_COLLECTION": { + "className": "SubjectFileCollection", + "accumulatedTerms": "subject file collection", + "keywords": { + "en": [ + "subject file collection" + ] + } + }, + "NOBLE_FAMILY_PAPERS_FONDS": { + "className": "NobleFamilyPapersFonds", + "accumulatedTerms": "noble family papers fonds", + "keywords": { + "en": [ + "noble family papers fonds" + ] + } + }, + "ESTATE_RECORDS_SERIES": { + "className": "EstateRecordsSeries", + "accumulatedTerms": "estate records series", + "keywords": { + "en": [ + "estate records series" + ] + } + }, + "GENEALOGY_COLLECTION": { + "className": "GenealogyCollection", + "accumulatedTerms": "genealogy collection", + "keywords": { + "en": [ + "genealogy collection" + ] + } + }, + "NOTARIAL_ACTS_SERIES": { + "className": "NotarialActsSeries", + "accumulatedTerms": "notarial acts series", + "keywords": { + "en": [ + "notarial acts series" + ] + } + }, + "PROTOCOL_SERIES": { + "className": "ProtocolSeries", + "accumulatedTerms": "protocol series", + "keywords": { + "en": [ + "protocol series" + ] + } + }, + "DIGITAL_NEWS_COLLECTION": { + "className": "DigitalNewsCollection", + "accumulatedTerms": "digital news collection", + "keywords": { + "en": [ + "digital news collection" + ] + } + }, + "WEB_PUBLICATION_FONDS": { + "className": "WebPublicationFonds", + "accumulatedTerms": "web publication fonds", + "keywords": { + "en": [ + "web publication fonds" + ] + } + }, + "PARISH_SPECIFIC_REGISTER_SERIES": { + "className": "ParishSpecificRegisterSeries", + "accumulatedTerms": "parish specific register series", + "keywords": { + "en": [ + "parish specific register series" + ] + } + }, + "PARISH_ADMINISTRATION_FONDS": { + "className": "ParishAdministrationFonds", + "accumulatedTerms": "parish administration fonds", + "keywords": { + "en": [ + "parish administration fonds" + ] + } + }, + "SACRAMENTAL_RECORD_COLLECTION": { + "className": "SacramentalRecordCollection", + "accumulatedTerms": "sacramental record collection", + "keywords": { + "en": [ + "sacramental record collection" + ] + } + }, + "PARLIAMENTARY_PROCEEDINGS_FONDS": { + "className": "ParliamentaryProceedingsFonds", + "accumulatedTerms": "parliamentary proceedings fonds", + "keywords": { + "en": [ + "parliamentary proceedings fonds" + ] + } + }, + "COMMITTEE_RECORD_SERIES": { + "className": "CommitteeRecordSeries", + "accumulatedTerms": "committee record series", + "keywords": { + "en": [ + "committee record series" + ] + } + }, + "LEGISLATIVE_DRAFT_COLLECTION": { + "className": "LegislativeDraftCollection", + "accumulatedTerms": "legislative draft collection", + "keywords": { + "en": [ + "legislative draft collection" + ] + } + }, + "PARTY_ADMINISTRATION_FONDS": { + "className": "PartyAdministrationFonds", + "accumulatedTerms": "party administration fonds", + "keywords": { + "en": [ + "party administration fonds" + ] + } + }, + "MEMBERSHIP_RECORD_SERIES": { + "className": "MembershipRecordSeries", + "accumulatedTerms": "membership record series", + "keywords": { + "en": [ + "membership record series" + ] + } + }, + "THEATRE_RECORDS_FONDS": { + "className": "TheatreRecordsFonds", + "accumulatedTerms": "theatre records fonds", + "keywords": { + "en": [ + "theatre records fonds" + ] + } + }, + "PERFORMANCE_DOCUMENTATION_COLLECTION": { + "className": "PerformanceDocumentationCollection", + "accumulatedTerms": "performance documentation collection", + "keywords": { + "en": [ + "performance documentation collection" + ] + } + }, + "PERFORMING_ARTS_PRODUCTION_RECORD_SERIES": { + "className": "PerformingArtsProductionRecordSeries", + "accumulatedTerms": "performing arts production record series", + "keywords": { + "en": [ + "performing arts production record series" + ] + } + }, + "PHOTOGRAPHER_PAPERS_COLLECTION": { + "className": "PhotographerPapersCollection", + "accumulatedTerms": "photographer papers collection", + "keywords": { + "en": [ + "photographer papers collection" + ] + } + }, + "PHOTOGRAPHIC_PRINT_SERIES": { + "className": "PhotographicPrintSeries", + "accumulatedTerms": "photographic print series", + "keywords": { + "en": [ + "photographic print series" + ] + } + }, + "DIGITAL_IMAGE_COLLECTION": { + "className": "DigitalImageCollection", + "accumulatedTerms": "digital image collection", + "keywords": { + "en": [ + "digital image collection" + ] + } + }, + "POLITICAL_PARTY_FONDS": { + "className": "PoliticalPartyFonds", + "accumulatedTerms": "political party fonds", + "keywords": { + "en": [ + "political party fonds" + ] + } + }, + "CAMPAIGN_RECORD_COLLECTION": { + "className": "CampaignRecordCollection", + "accumulatedTerms": "campaign record collection", + "keywords": { + "en": [ + "campaign record collection" + ] + } + }, + "POLITICIAN_PAPERS_COLLECTION": { + "className": "PoliticianPapersCollection", + "accumulatedTerms": "politician papers collection", + "keywords": { + "en": [ + "politician papers collection" + ] + } + }, + "DISTRIBUTED_RECORDS_COLLECTION": { + "className": "DistributedRecordsCollection", + "accumulatedTerms": "distributed records collection", + "keywords": { + "en": [ + "distributed records collection" + ] + } + }, + "NEWSPAPER_PUBLICATION_FONDS": { + "className": "NewspaperPublicationFonds", + "accumulatedTerms": "newspaper publication fonds", + "keywords": { + "en": [ + "newspaper publication fonds" + ] + } + }, + "JOURNALIST_PAPERS_COLLECTION": { + "className": "JournalistPapersCollection", + "accumulatedTerms": "journalist papers collection", + "keywords": { + "en": [ + "journalist papers collection" + ] + } + }, + "EDITORIAL_RECORD_SERIES": { + "className": "EditorialRecordSeries", + "accumulatedTerms": "editorial record series", + "keywords": { + "en": [ + "editorial record series" + ] + } + }, + "PROVINCIAL_ADMINISTRATION_FONDS": { + "className": "ProvincialAdministrationFonds", + "accumulatedTerms": "provincial administration fonds", + "keywords": { + "en": [ + "provincial administration fonds" + ] + } + }, + "REGIONAL_PLANNING_COLLECTION": { + "className": "RegionalPlanningCollection", + "accumulatedTerms": "regional planning collection", + "keywords": { + "en": [ + "regional planning collection" + ] + } + }, + "PROVINCIAL_COURT_SERIES": { + "className": "ProvincialCourtSeries", + "accumulatedTerms": "provincial court series", + "keywords": { + "en": [ + "provincial court series" + ] + } + }, + "PROVINCIAL_HISTORICAL_FONDS": { + "className": "ProvincialHistoricalFonds", + "accumulatedTerms": "provincial historical fonds", + "keywords": { + "en": [ + "provincial historical fonds" + ] + } + }, + "PUBLIC_RECORDS_FONDS": { + "className": "PublicRecordsFonds", + "accumulatedTerms": "public records fonds", + "keywords": { + "en": [ + "public records fonds" + ] + } + }, + "CIVIC_DOCUMENTATION_COLLECTION": { + "className": "CivicDocumentationCollection", + "accumulatedTerms": "civic documentation collection", + "keywords": { + "en": [ + "civic documentation collection" + ] + } + }, + "ADMINISTRATIVE_CORRESPONDENCE_SERIES": { + "className": "AdministrativeCorrespondenceSeries", + "accumulatedTerms": "administrative correspondence series", + "keywords": { + "en": [ + "administrative correspondence series" + ] + } + }, + "FRENCH_PUBLIC_FONDS": { + "className": "FrenchPublicFonds", + "accumulatedTerms": "french public fonds", + "keywords": { + "en": [ + "french public fonds" + ] + } + }, + "BROADCAST_RECORDING_FONDS": { + "className": "BroadcastRecordingFonds", + "accumulatedTerms": "broadcast recording fonds", + "keywords": { + "en": [ + "broadcast recording fonds" + ] + } + }, + "RADIO_SCRIPT_COLLECTION": { + "className": "RadioScriptCollection", + "accumulatedTerms": "radio script collection", + "keywords": { + "en": [ + "radio script collection" + ] + } + }, + "STATION_ADMINISTRATION_SERIES": { + "className": "StationAdministrationSeries", + "accumulatedTerms": "station administration series", + "keywords": { + "en": [ + "station administration series" + ] + } + }, + "REGIONAL_GOVERNANCE_FONDS": { + "className": "RegionalGovernanceFonds", + "accumulatedTerms": "provincial government records regional council provincial states gedeputeerde staten commissaris van de koning regional policy intergovernmental records provincial administration regional planning provinciaal bestuursarchief regional governance fonds regionalverwaltungsbestand fondo de gobierno regional fonds de gouvernement rΓ©gional fundo de governo regional", + "keywords": { + "nl": [ + "provincial government records", + "regional council", + "provincial states", + "gedeputeerde staten", + "commissaris van de koning", + "regional policy", + "intergovernmental records", + "provincial administration", + "regional planning", + "provinciaal bestuursarchief" + ], + "en": [ + "regional governance fonds" + ], + "de": [ + "regionalverwaltungsbestand" + ], + "es": [ + "fondo de gobierno regional" + ], + "fr": [ + "fonds de gouvernement rΓ©gional" + ], + "pt": [ + "fundo de governo regional" + ] + } + }, + "CADASTRAL_AND_LAND_RECORDS_FONDS": { + "className": "CadastralAndLandRecordsFonds", + "accumulatedTerms": "land registry tithe records oud-rechterlijk archief kadasterarchief cadastral maps property records kadaster grondboeken property transfer mortgage records land surveyor feudal records cadastral and land records fonds katasterbestand fondo catastral fonds cadastral fundo cadastral", + "keywords": { + "nl": [ + "land registry", + "tithe records", + "oud-rechterlijk archief", + "kadasterarchief" + ], + "en": [ + "cadastral maps", + "property records", + "kadaster", + "grondboeken", + "property transfer", + "mortgage records", + "land surveyor", + "feudal records", + "cadastral and land records fonds" + ], + "de": [ + "katasterbestand" + ], + "es": [ + "fondo catastral" + ], + "fr": [ + "fonds cadastral" + ], + "pt": [ + "fundo cadastral" + ] + } + }, + "NOTARIAL_PROTOCOL_SERIES": { + "className": "NotarialProtocolSeries", + "accumulatedTerms": "notarial protocols notarieel archief wills marriage contracts minuutakten estate inventories notariΓ«le protocollen testaments property transfers powers of attorney contracts notarial protocol series notariatsprotokolle protocolos notariales minutes notariales protocolos notariais", + "keywords": { + "nl": [ + "notarial protocols", + "notarieel archief", + "wills", + "marriage contracts", + "minuutakten", + "estate inventories", + "notariΓ«le protocollen" + ], + "en": [ + "testaments", + "property transfers", + "powers of attorney", + "contracts", + "notarial protocol series" + ], + "de": [ + "notariatsprotokolle" + ], + "es": [ + "protocolos notariales" + ], + "fr": [ + "minutes notariales" + ], + "pt": [ + "protocolos notariais" + ] + } + }, + "REGIONAL_HISTORY_COLLECTION": { + "className": "RegionalHistoryCollection", + "accumulatedTerms": "regional history regional newspapers oral history regional maps streekgeschiedenis local publications regional culture streekhistorische collectie local photographs ephemera postcards regional history collection regionalgeschichtliche sammlung colecciΓ³n de historia regional collection d'histoire rΓ©gionale coleΓ§Γ£o de histΓ³ria regional", + "keywords": { + "nl": [ + "regional history", + "regional newspapers", + "oral history", + "regional maps", + "streekgeschiedenis", + "local publications", + "regional culture", + "streekhistorische collectie" + ], + "en": [ + "local photographs", + "ephemera", + "postcards", + "regional history collection" + ], + "de": [ + "regionalgeschichtliche sammlung" + ], + "es": [ + "colecciΓ³n de historia regional" + ], + "fr": [ + "collection d'histoire rΓ©gionale" + ], + "pt": [ + "coleΓ§Γ£o de histΓ³ria regional" + ] + } + }, + "WATER_MANAGEMENT_FONDS": { + "className": "WaterManagementFonds", + "accumulatedTerms": "waterschap dike administration flood control land reclamation drooglegging dijkgraaf heemraden pumping stations sluices waterschapsarchief water board polder records water management water management fonds wasserverbandsbestand fondo de gestiΓ³n del agua fonds de gestion de l'eau fundo de gestΓ£o de Γ‘guas", + "keywords": { + "nl": [ + "waterschap", + "dike administration", + "flood control", + "land reclamation", + "drooglegging", + "dijkgraaf", + "heemraden", + "pumping stations", + "sluices", + "waterschapsarchief" + ], + "en": [ + "water board", + "polder records", + "water management", + "water management fonds" + ], + "de": [ + "wasserverbandsbestand" + ], + "es": [ + "fondo de gestiΓ³n del agua" + ], + "fr": [ + "fonds de gestion de l'eau" + ], + "pt": [ + "fundo de gestΓ£o de Γ‘guas" + ] + } + }, + "ICELANDIC_REGIONAL_FONDS": { + "className": "IcelandicRegionalFonds", + "accumulatedTerms": "icelandic regional fonds", + "keywords": { + "en": [ + "icelandic regional fonds" + ] + } + }, + "REGIONAL_BUSINESS_FONDS": { + "className": "RegionalBusinessFonds", + "accumulatedTerms": "regional business fonds", + "keywords": { + "en": [ + "regional business fonds" + ] + } + }, + "REGIONAL_STATE_FONDS": { + "className": "RegionalStateFonds", + "accumulatedTerms": "regional state fonds", + "keywords": { + "en": [ + "regional state fonds" + ] + } + }, + "RELIGIOUS_INSTITUTION_FONDS": { + "className": "ReligiousInstitutionFonds", + "accumulatedTerms": "religious institution fonds", + "keywords": { + "en": [ + "religious institution fonds" + ] + } + }, + "CONGREGATIONAL_RECORDS_SERIES": { + "className": "CongregationalRecordsSeries", + "accumulatedTerms": "congregational records series", + "keywords": { + "en": [ + "congregational records series" + ] + } + }, + "SCHOOL_ADMINISTRATION_FONDS": { + "className": "SchoolAdministrationFonds", + "accumulatedTerms": "school administration fonds", + "keywords": { + "en": [ + "school administration fonds" + ] + } + }, + "SCHOOL_STUDENT_RECORD_SERIES": { + "className": "SchoolStudentRecordSeries", + "accumulatedTerms": "school student record series", + "keywords": { + "en": [ + "school student record series" + ] + } + }, + "CURRICULUM_DOCUMENT_COLLECTION": { + "className": "CurriculumDocumentCollection", + "accumulatedTerms": "curriculum document collection", + "keywords": { + "en": [ + "curriculum document collection" + ] + } + }, + "RESEARCH_PROJECT_FONDS": { + "className": "ResearchProjectFonds", + "accumulatedTerms": "research project fonds", + "keywords": { + "en": [ + "research project fonds" + ] + } + }, + "SCIENTIST_PAPERS_COLLECTION": { + "className": "ScientistPapersCollection", + "accumulatedTerms": "scientist papers collection", + "keywords": { + "en": [ + "scientist papers collection" + ] + } + }, + "LABORATORY_RECORD_SERIES": { + "className": "LaboratoryRecordSeries", + "accumulatedTerms": "laboratory record series", + "keywords": { + "en": [ + "laboratory record series" + ] + } + }, + "SWEDISH_SECTOR_FONDS": { + "className": "SwedishSectorFonds", + "accumulatedTerms": "swedish sector fonds", + "keywords": { + "en": [ + "swedish sector fonds" + ] + } + }, + "SECURITY_SERVICE_FONDS": { + "className": "SecurityServiceFonds", + "accumulatedTerms": "security service fonds", + "keywords": { + "en": [ + "security service fonds" + ] + } + }, + "SURVEILLANCE_RECORD_SERIES": { + "className": "SurveillanceRecordSeries", + "accumulatedTerms": "surveillance record series", + "keywords": { + "en": [ + "surveillance record series" + ] + } + }, + "AUDIO_RECORDING_COLLECTION": { + "className": "AudioRecordingCollection", + "accumulatedTerms": "audio recording collection", + "keywords": { + "en": [ + "audio recording collection" + ] + } + }, + "ORAL_HISTORY_SERIES": { + "className": "OralHistorySeries", + "accumulatedTerms": "oral history series", + "keywords": { + "en": [ + "oral history series" + ] + } + }, + "MUSIC_RECORDING_COLLECTION": { + "className": "MusicRecordingCollection", + "accumulatedTerms": "music recording collection", + "keywords": { + "en": [ + "music recording collection" + ] + } + }, + "SPECIALIZED_COLLECTION_FONDS": { + "className": "SpecializedCollectionFonds", + "accumulatedTerms": "specialized collection fonds", + "keywords": { + "en": [ + "specialized collection fonds" + ] + } + }, + "CZECH_SPECIALIZED_FONDS": { + "className": "CzechSpecializedFonds", + "accumulatedTerms": "czech specialized fonds", + "keywords": { + "en": [ + "czech specialized fonds" + ] + } + }, + "STATE_GOVERNMENT_FONDS": { + "className": "StateGovernmentFonds", + "accumulatedTerms": "state government fonds", + "keywords": { + "en": [ + "state government fonds" + ] + } + }, + "JUDICIAL_RECORD_SERIES": { + "className": "JudicialRecordSeries", + "accumulatedTerms": "judicial record series", + "keywords": { + "en": [ + "judicial record series" + ] + } + }, + "LAND_RECORDS_SERIES": { + "className": "LandRecordsSeries", + "accumulatedTerms": "land records series", + "keywords": { + "en": [ + "land records series" + ] + } + }, + "TAX_RECORDS_SERIES": { + "className": "TaxRecordsSeries", + "accumulatedTerms": "tax records series", + "keywords": { + "en": [ + "tax records series" + ] + } + }, + "STATE_SECTION_FONDS": { + "className": "StateSectionFonds", + "accumulatedTerms": "state section fonds", + "keywords": { + "en": [ + "state section fonds" + ] + } + }, + "STATE_DISTRICT_FONDS": { + "className": "StateDistrictFonds", + "accumulatedTerms": "state district fonds", + "keywords": { + "en": [ + "state district fonds" + ] + } + }, + "CZECHIA_REGIONAL_STATE_FONDS": { + "className": "CzechiaRegionalStateFonds", + "accumulatedTerms": "czechia regional state fonds", + "keywords": { + "en": [ + "czechia regional state fonds" + ] + } + }, + "TELEVISION_BROADCAST_FONDS": { + "className": "TelevisionBroadcastFonds", + "accumulatedTerms": "television broadcast fonds", + "keywords": { + "en": [ + "television broadcast fonds" + ] + } + }, + "PRODUCTION_RECORD_SERIES": { + "className": "ProductionRecordSeries", + "accumulatedTerms": "production record series", + "keywords": { + "en": [ + "production record series" + ] + } + }, + "NEWS_FOOTAGE_COLLECTION": { + "className": "NewsFootageCollection", + "accumulatedTerms": "news footage collection", + "keywords": { + "en": [ + "news footage collection" + ] + } + }, + "UNION_ADMINISTRATION_FONDS": { + "className": "UnionAdministrationFonds", + "accumulatedTerms": "union administration vakbondsbestuur congress minutes membership records ledenregisters union governance vakbondsorganisatie labor organization vakbondsbestuursarchief congresverslagen bylaws statuten union administration fonds gewerkschaftsverwaltungsbestand fondo de administracion sindical fonds d'administration syndicale fundo de administracao sindical", + "keywords": { + "nl": [ + "union administration", + "vakbondsbestuur", + "congress minutes", + "membership records", + "ledenregisters", + "union governance", + "vakbondsorganisatie", + "labor organization", + "vakbondsbestuursarchief" + ], + "en": [ + "congresverslagen", + "bylaws", + "statuten", + "union administration fonds" + ], + "de": [ + "gewerkschaftsverwaltungsbestand" + ], + "es": [ + "fondo de administracion sindical" + ], + "fr": [ + "fonds d'administration syndicale" + ], + "pt": [ + "fundo de administracao sindical" + ] + } + }, + "COLLECTIVE_BARGAINING_SERIES": { + "className": "CollectiveBargainingSeries", + "accumulatedTerms": "collective bargaining collectieve arbeidsovereenkomst arbeidscontracten negotiations onderhandelingen wage agreements loonafspraken industrial relations arbeidsrelaties arbitration cao-archief cao labor contracts collective bargaining series tarifverhandlungsserie serie de negociacion colectiva serie de negociation collective serie de negociacao coletiva", + "keywords": { + "nl": [ + "collective bargaining", + "collectieve arbeidsovereenkomst", + "arbeidscontracten", + "negotiations", + "onderhandelingen", + "wage agreements", + "loonafspraken", + "industrial relations", + "arbeidsrelaties", + "arbitration", + "cao-archief" + ], + "en": [ + "cao", + "labor contracts", + "collective bargaining series" + ], + "de": [ + "tarifverhandlungsserie" + ], + "es": [ + "serie de negociacion colectiva" + ], + "fr": [ + "serie de negociation collective" + ], + "pt": [ + "serie de negociacao coletiva" + ] + } + }, + "STRIKE_DOCUMENTATION_COLLECTION": { + "className": "StrikeDocumentationCollection", + "accumulatedTerms": "strike documentation stakingsarchief labor actions arbeidsacties picket lines stakingsposten solidarity solidariteit werkonderbrekingen february strike februaristaking lockouts work stoppages strike documentation collection streikdokumentationssammlung coleccion de documentacion de huelgas collection de documentation de greves colecao de documentacao de greves", + "keywords": { + "nl": [ + "strike documentation", + "stakingsarchief", + "labor actions", + "arbeidsacties", + "picket lines", + "stakingsposten", + "solidarity", + "solidariteit", + "werkonderbrekingen", + "february strike", + "februaristaking", + "stakingsarchief" + ], + "en": [ + "lockouts", + "work stoppages", + "strike documentation collection" + ], + "de": [ + "streikdokumentationssammlung" + ], + "es": [ + "coleccion de documentacion de huelgas" + ], + "fr": [ + "collection de documentation de greves" + ], + "pt": [ + "colecao de documentacao de greves" + ] + } + }, + "LABOR_PUBLICATIONS_COLLECTION": { + "className": "LaborPublicationsCollection", + "accumulatedTerms": "labor publications union newspapers arbeiderspers union magazines 1 mei vakbondsperscollectie vakbondspers vakbondskranten pamphlets pamfletten workers press labor propaganda may day labor publications collection arbeiterpressesammlung coleccion de publicaciones obreras collection de publications ouvrieres colecao de publicacoes operarias", + "keywords": { + "nl": [ + "labor publications", + "union newspapers", + "arbeiderspers", + "union magazines", + "1 mei", + "vakbondsperscollectie" + ], + "en": [ + "vakbondspers", + "vakbondskranten", + "pamphlets", + "pamfletten", + "workers press", + "labor propaganda", + "may day", + "labor publications collection" + ], + "de": [ + "arbeiterpressesammlung" + ], + "es": [ + "coleccion de publicaciones obreras" + ], + "fr": [ + "collection de publications ouvrieres" + ], + "pt": [ + "colecao de publicacoes operarias" + ] + } + }, + "WORKERS_PHOTOGRAPHY_COLLECTION": { + "className": "WorkersPhotographyCollection", + "accumulatedTerms": "arbeidersfotografie fabrieksfoto's strike photographs stakingsfoto's may day images labor movement images industrial photography worker portraits arbeidersfotocollectie workers photography workplace photographs werknemersportretten workers photography collection arbeiterfotografiesammlung coleccion de fotografia obrera collection de photographie ouvriere colecao de fotografia operaria", + "keywords": { + "nl": [ + "arbeidersfotografie", + "fabrieksfoto's", + "strike photographs", + "stakingsfoto's", + "may day images", + "labor movement images", + "industrial photography", + "worker portraits", + "arbeidersfotocollectie" + ], + "en": [ + "workers photography", + "workplace photographs", + "werknemersportretten", + "workers photography collection" + ], + "de": [ + "arbeiterfotografiesammlung" + ], + "es": [ + "coleccion de fotografia obrera" + ], + "fr": [ + "collection de photographie ouvriere" + ], + "pt": [ + "colecao de fotografia operaria" + ] + } + }, + "UNIVERSITY_ADMINISTRATION_FONDS": { + "className": "UniversityAdministrationFonds", + "accumulatedTerms": "university administration fonds", + "keywords": { + "en": [ + "university administration fonds" + ] + } + }, + "STUDENT_RECORD_SERIES": { + "className": "StudentRecordSeries", + "accumulatedTerms": "student record series", + "keywords": { + "en": [ + "student record series" + ] + } + }, + "FACULTY_PAPERS_COLLECTION": { + "className": "FacultyPapersCollection", + "accumulatedTerms": "faculty papers collection", + "keywords": { + "en": [ + "faculty papers collection" + ] + } + }, + "WEB_CAPTURE_COLLECTION": { + "className": "WebCaptureCollection", + "accumulatedTerms": "web capture collection", + "keywords": { + "en": [ + "web capture collection" + ] + } + }, + "SOCIAL_MEDIA_COLLECTION": { + "className": "SocialMediaCollection", + "accumulatedTerms": "social media collection", + "keywords": { + "en": [ + "social media collection" + ] + } + }, + "WOMENS_ORGANIZATION_FONDS": { + "className": "WomensOrganizationFonds", + "accumulatedTerms": "womens organization fonds", + "keywords": { + "en": [ + "womens organization fonds" + ] + } + }, + "FEMINIST_PAPERS_COLLECTION": { + "className": "FeministPapersCollection", + "accumulatedTerms": "feminist papers collection", + "keywords": { + "en": [ + "feminist papers collection" + ] + } + }, + "WOMENS_HISTORY_COLLECTION": { + "className": "WomensHistoryCollection", + "accumulatedTerms": "womens history collection", + "keywords": { + "en": [ + "womens history collection" + ] + } + } + } +} \ No newline at end of file diff --git a/apps/archief-assistent/src/lib/types-vocabulary.ts b/apps/archief-assistent/src/lib/types-vocabulary.ts new file mode 100644 index 0000000000..9ea0f85b4c --- /dev/null +++ b/apps/archief-assistent/src/lib/types-vocabulary.ts @@ -0,0 +1,432 @@ +/** + * types-vocabulary.ts + * + * Runtime loader for the TypesVocabulary extracted from LinkML schema files. + * Provides two-tier semantic routing for entity extraction: + * + * 1. Fast Path: O(1) termLog lookup for exact keyword matches + * 2. Slow Path: Embedding-based similarity for fuzzy semantic matching + * + * See: .opencode/rules/ontology-driven-cache-segmentation.md (Rule 46) + */ + +import type { InstitutionTypeCode } from './semantic-cache'; + +// ============================================================================ +// Types +// ============================================================================ + +export interface TermLogEntry { + typeCode: string; + typeName: string; + subtypeName?: string; + recordSetType?: string; + wikidata?: string; + lang: string; +} + +export interface SubtypeInfo { + className: string; + wikidata?: string; + accumulatedTerms: string; + keywords: Record; +} + +export interface TypeInfo { + code: string; + className: string; + baseWikidata?: string; + accumulatedTerms: string; + keywords: Record; + subtypes: Record; +} + +export interface RecordSetTypeInfo { + className: string; + accumulatedTerms: string; + keywords: Record; +} + +export interface TypesVocabulary { + version: string; + schemaVersion: string; + embeddingModel: string; + embeddingDimensions: number; + tier1Embeddings: Record; + tier2Embeddings: Record>; + termLog: Record; + institutionTypes: Record; + recordSetTypes: Record; +} + +export interface VocabularyMatch { + typeCode: InstitutionTypeCode; + typeName: string; + subtypeName?: string; + recordSetType?: string; + wikidata?: string; + matchedTerm: string; + matchMethod: 'exact' | 'embedding_tier1' | 'embedding_tier2'; + confidence: number; +} + +// ============================================================================ +// Vocabulary Singleton +// ============================================================================ + +let vocabularyCache: TypesVocabulary | null = null; +let loadPromise: Promise | null = null; + +/** + * Load the TypesVocabulary from the static JSON file. + * Caches the result for subsequent calls. + */ +export async function loadTypesVocabulary(): Promise { + if (vocabularyCache) return vocabularyCache; + + if (loadPromise) return loadPromise; + + loadPromise = (async () => { + try { + const response = await fetch('/types-vocab.json'); + if (!response.ok) { + console.warn('[TypesVocabulary] Failed to load vocabulary:', response.status); + return createEmptyVocabulary(); + } + + vocabularyCache = await response.json(); + console.log( + `[TypesVocabulary] Loaded: ${Object.keys(vocabularyCache!.institutionTypes).length} types, ` + + `${Object.keys(vocabularyCache!.termLog).length} terms` + ); + return vocabularyCache!; + } catch (error) { + console.warn('[TypesVocabulary] Error loading vocabulary:', error); + return createEmptyVocabulary(); + } + })(); + + return loadPromise; +} + +function createEmptyVocabulary(): TypesVocabulary { + return { + version: 'empty', + schemaVersion: '', + embeddingModel: '', + embeddingDimensions: 0, + tier1Embeddings: {}, + tier2Embeddings: {}, + termLog: {}, + institutionTypes: {}, + recordSetTypes: {}, + }; +} + +// ============================================================================ +// Fast Path: Term Log Lookup +// ============================================================================ + +/** + * Fast O(1) lookup in the term log for exact keyword matches. + * This is the preferred method - no embeddings needed. + * + * @param query - Normalized query text (lowercase) + * @returns Match info if a term is found, null otherwise + */ +export async function lookupTermLog(query: string): Promise { + const vocab = await loadTypesVocabulary(); + const normalized = query.toLowerCase(); + + // Sort terms by length (longest first) to match most specific terms + const sortedTerms = Object.keys(vocab.termLog).sort((a, b) => b.length - a.length); + + for (const term of sortedTerms) { + if (normalized.includes(term)) { + const entry = vocab.termLog[term]; + return { + typeCode: entry.typeCode as InstitutionTypeCode, + typeName: entry.typeName, + subtypeName: entry.subtypeName, + recordSetType: entry.recordSetType, + wikidata: entry.wikidata, + matchedTerm: term, + matchMethod: 'exact', + confidence: 1.0, + }; + } + } + + return null; +} + +/** + * Get all matching terms from the term log (for multi-entity queries). + * + * @param query - Normalized query text (lowercase) + * @returns Array of all matching terms + */ +export async function lookupAllTerms(query: string): Promise { + const vocab = await loadTypesVocabulary(); + const normalized = query.toLowerCase(); + const matches: VocabularyMatch[] = []; + + // Sort terms by length (longest first) + const sortedTerms = Object.keys(vocab.termLog).sort((a, b) => b.length - a.length); + const matchedPositions = new Set(); + + for (const term of sortedTerms) { + const index = normalized.indexOf(term); + if (index !== -1) { + // Check if this position range is already matched by a longer term + let alreadyMatched = false; + for (let i = index; i < index + term.length; i++) { + if (matchedPositions.has(i)) { + alreadyMatched = true; + break; + } + } + + if (!alreadyMatched) { + // Mark positions as matched + for (let i = index; i < index + term.length; i++) { + matchedPositions.add(i); + } + + const entry = vocab.termLog[term]; + matches.push({ + typeCode: entry.typeCode as InstitutionTypeCode, + typeName: entry.typeName, + subtypeName: entry.subtypeName, + recordSetType: entry.recordSetType, + wikidata: entry.wikidata, + matchedTerm: term, + matchMethod: 'exact', + confidence: 1.0, + }); + } + } + } + + return matches; +} + +// ============================================================================ +// Slow Path: Embedding-Based Matching +// ============================================================================ + +/** + * Compute cosine similarity between two vectors. + */ +function cosineSimilarity(a: number[], b: number[]): number { + if (a.length !== b.length || a.length === 0) return 0; + + let dotProduct = 0; + let normA = 0; + let normB = 0; + + for (let i = 0; i < a.length; i++) { + dotProduct += a[i] * b[i]; + normA += a[i] * a[i]; + normB += b[i] * b[i]; + } + + const magnitude = Math.sqrt(normA) * Math.sqrt(normB); + return magnitude === 0 ? 0 : dotProduct / magnitude; +} + +/** + * Tier 1: Find the best matching institution type category. + * Uses pre-computed embeddings for each Types file. + * + * @param queryEmbedding - Embedding of the user's query + * @param threshold - Minimum similarity threshold (default 0.7) + * @returns Best matching type info or null + */ +export async function matchTier1( + queryEmbedding: number[], + threshold: number = 0.7 +): Promise<{ typeName: string; typeCode: InstitutionTypeCode; similarity: number } | null> { + const vocab = await loadTypesVocabulary(); + + let bestMatch: { typeName: string; typeCode: InstitutionTypeCode; similarity: number } | null = null; + + for (const [typeName, embedding] of Object.entries(vocab.tier1Embeddings)) { + if (embedding.length === 0) continue; // Skip empty embeddings + + const similarity = cosineSimilarity(queryEmbedding, embedding); + + if (similarity > threshold && (!bestMatch || similarity > bestMatch.similarity)) { + // Find the type code for this type name + const typeInfo = Object.values(vocab.institutionTypes).find(t => t.className === typeName); + if (typeInfo) { + bestMatch = { + typeName, + typeCode: typeInfo.code as InstitutionTypeCode, + similarity, + }; + } + } + } + + return bestMatch; +} + +/** + * Tier 2: Find the best matching subtype within a category. + * Uses pre-computed embeddings for each subtype. + * + * @param queryEmbedding - Embedding of the user's query + * @param typeCode - The institution type code from Tier 1 + * @param threshold - Minimum similarity threshold (default 0.75) + * @returns Best matching subtype info or null + */ +export async function matchTier2( + queryEmbedding: number[], + typeCode: InstitutionTypeCode, + threshold: number = 0.75 +): Promise<{ subtypeName: string; similarity: number } | null> { + const vocab = await loadTypesVocabulary(); + + const subtypeEmbeddings = vocab.tier2Embeddings[typeCode]; + if (!subtypeEmbeddings) return null; + + let bestMatch: { subtypeName: string; similarity: number } | null = null; + + for (const [subtypeName, embedding] of Object.entries(subtypeEmbeddings)) { + if (embedding.length === 0) continue; // Skip empty embeddings + + const similarity = cosineSimilarity(queryEmbedding, embedding); + + if (similarity > threshold && (!bestMatch || similarity > bestMatch.similarity)) { + bestMatch = { subtypeName, similarity }; + } + } + + return bestMatch; +} + +/** + * Full two-tier embedding-based matching. + * + * @param queryEmbedding - Embedding of the user's query + * @returns Match result or null + */ +export async function matchWithEmbeddings( + queryEmbedding: number[] +): Promise { + // Tier 1: Find best type category + const tier1Match = await matchTier1(queryEmbedding); + if (!tier1Match) return null; + + // Tier 2: Find best subtype within the category + const tier2Match = await matchTier2(queryEmbedding, tier1Match.typeCode); + + return { + typeCode: tier1Match.typeCode, + typeName: tier1Match.typeName, + subtypeName: tier2Match?.subtypeName, + matchedTerm: '', + matchMethod: tier2Match ? 'embedding_tier2' : 'embedding_tier1', + confidence: tier2Match?.similarity || tier1Match.similarity, + }; +} + +// ============================================================================ +// Combined Lookup (Fast Path + Slow Path) +// ============================================================================ + +/** + * Primary entry point for vocabulary-based entity extraction. + * + * Strategy: + * 1. First try fast O(1) term log lookup (no embeddings needed) + * 2. If no match and embeddings available, try two-tier semantic matching + * + * @param query - The user's query text + * @param queryEmbedding - Optional embedding for semantic matching + * @returns Best match or null + */ +export async function extractEntityFromVocabulary( + query: string, + queryEmbedding?: number[] +): Promise { + // Fast path: Try term log lookup first + const termMatch = await lookupTermLog(query); + if (termMatch) { + return termMatch; + } + + // Slow path: Try embedding-based matching if embeddings available + if (queryEmbedding && queryEmbedding.length > 0) { + return matchWithEmbeddings(queryEmbedding); + } + + return null; +} + +// ============================================================================ +// Utility Functions +// ============================================================================ + +/** + * Get all keywords for a specific institution type. + */ +export async function getKeywordsForType(typeCode: InstitutionTypeCode): Promise { + const vocab = await loadTypesVocabulary(); + const typeInfo = vocab.institutionTypes[typeCode]; + if (!typeInfo) return []; + + const keywords: string[] = []; + + // Add base type keywords + for (const terms of Object.values(typeInfo.keywords)) { + keywords.push(...terms); + } + + // Add subtype keywords + for (const subtype of Object.values(typeInfo.subtypes)) { + for (const terms of Object.values(subtype.keywords)) { + keywords.push(...terms); + } + } + + return [...new Set(keywords)]; +} + +/** + * Check if a term exists in the vocabulary. + */ +export async function hasTerm(term: string): Promise { + const vocab = await loadTypesVocabulary(); + return term.toLowerCase() in vocab.termLog; +} + +/** + * Get vocabulary statistics. + */ +export async function getVocabularyStats(): Promise<{ + version: string; + institutionTypes: number; + subtypes: number; + recordSetTypes: number; + terms: number; + hasEmbeddings: boolean; +}> { + const vocab = await loadTypesVocabulary(); + + const subtypeCount = Object.values(vocab.institutionTypes) + .reduce((sum, t) => sum + Object.keys(t.subtypes).length, 0); + + const hasEmbeddings = Object.values(vocab.tier1Embeddings) + .some(e => e.length > 0); + + return { + version: vocab.version, + institutionTypes: Object.keys(vocab.institutionTypes).length, + subtypes: subtypeCount, + recordSetTypes: Object.keys(vocab.recordSetTypes).length, + terms: Object.keys(vocab.termLog).length, + hasEmbeddings, + }; +}