diff --git a/frontend/public/schemas/20251121/linkml/manifest.json b/frontend/public/schemas/20251121/linkml/manifest.json index 1039d61e7e..199b0653a7 100644 --- a/frontend/public/schemas/20251121/linkml/manifest.json +++ b/frontend/public/schemas/20251121/linkml/manifest.json @@ -1,5 +1,5 @@ { - "generated": "2026-02-11T11:22:25.461Z", + "generated": "2026-02-11T11:37:17.841Z", "schemaRoot": "/schemas/20251121/linkml", "totalFiles": 2369, "categoryCounts": { diff --git a/frontend/src/lib/linkml/linkml-schema-service.ts b/frontend/src/lib/linkml/linkml-schema-service.ts index a72d3a510c..d484d78773 100644 --- a/frontend/src/lib/linkml/linkml-schema-service.ts +++ b/frontend/src/lib/linkml/linkml-schema-service.ts @@ -52,6 +52,12 @@ export interface SlotExample { description?: string; } +export interface StructuredAlias { + literal_form: string; + predicate?: string; // e.g., "EXACT_SYNONYM" + in_language?: string; // e.g., "nl", "de", "fr" +} + export interface SlotDefinition { name: string; description?: string; @@ -70,6 +76,10 @@ export interface SlotDefinition { narrow_mappings?: string[]; broad_mappings?: string[]; related_mappings?: string[]; + // Aliases and multilingual metadata + aliases?: string[]; + alt_descriptions?: Record; + structured_aliases?: StructuredAlias[]; } export interface ClassDefinition { @@ -88,6 +98,10 @@ export interface ClassDefinition { related_mappings?: string[]; comments?: string[]; annotations?: Record; + // Aliases and multilingual metadata + aliases?: string[]; + alt_descriptions?: Record; + structured_aliases?: StructuredAlias[]; } export interface EnumValueDefinition { diff --git a/frontend/src/lib/linkml/schema-loader.ts b/frontend/src/lib/linkml/schema-loader.ts index 916f625c18..b171efaee5 100644 --- a/frontend/src/lib/linkml/schema-loader.ts +++ b/frontend/src/lib/linkml/schema-loader.ts @@ -15,6 +15,12 @@ export interface SlotExample { description?: string; } +export interface StructuredAlias { + literal_form: string; + predicate?: string; // e.g., "EXACT_SYNONYM" + in_language?: string; // e.g., "nl", "de", "fr" +} + export interface LinkMLSlot { name: string; description?: string; @@ -32,6 +38,10 @@ export interface LinkMLSlot { narrow_mappings?: string[]; broad_mappings?: string[]; related_mappings?: string[]; + // Aliases and multilingual metadata + aliases?: string[]; + alt_descriptions?: Record; + structured_aliases?: StructuredAlias[]; } export interface LinkMLClass { @@ -44,6 +54,10 @@ export interface LinkMLClass { exact_mappings?: string[]; close_mappings?: string[]; comments?: string[]; + // Aliases and multilingual metadata + aliases?: string[]; + alt_descriptions?: Record; + structured_aliases?: StructuredAlias[]; } export interface LinkMLEnum { diff --git a/frontend/src/pages/LinkMLViewerPage.css b/frontend/src/pages/LinkMLViewerPage.css index 5e58b38b90..c0ef4f1701 100644 --- a/frontend/src/pages/LinkMLViewerPage.css +++ b/frontend/src/pages/LinkMLViewerPage.css @@ -2117,6 +2117,101 @@ font-style: italic; } +/* Aliases section */ +.linkml-viewer__aliases { + margin: 0.75rem 0; +} + +.linkml-viewer__tag--alias { + background: #e8eaf6; + border-color: #5c6bc0; + color: #283593; +} + +/* Alt Descriptions (translations) section */ +.linkml-viewer__alt-descriptions { + margin: 0.75rem 0; +} + +.linkml-viewer__alt-descriptions-list { + margin-top: 0.25rem; + display: flex; + flex-direction: column; + gap: 0.375rem; +} + +.linkml-viewer__alt-description-item { + display: flex; + align-items: flex-start; + gap: 0.5rem; + padding: 0.375rem 0.5rem; + background: var(--surface-secondary, #f5f5f5); + border-radius: 4px; + font-size: 0.8125rem; + line-height: 1.4; +} + +.linkml-viewer__alt-description-item--active { + background: #e3f2fd; + border-left: 3px solid #1976d2; +} + +.linkml-viewer__lang-badge { + display: inline-block; + min-width: 1.75rem; + padding: 0.125rem 0.375rem; + background: #455a64; + color: white; + border-radius: 3px; + font-size: 0.6875rem; + font-weight: 600; + text-align: center; + text-transform: uppercase; + flex-shrink: 0; + line-height: 1.3; +} + +.linkml-viewer__alt-description-text { + color: var(--text-primary, #212121); + flex: 1; +} + +/* Structured Aliases section */ +.linkml-viewer__structured-aliases { + margin: 0.75rem 0; +} + +.linkml-viewer__structured-aliases-list { + margin-top: 0.25rem; + display: flex; + flex-direction: column; + gap: 0.25rem; +} + +.linkml-viewer__structured-alias-item { + display: flex; + align-items: center; + gap: 0.5rem; + padding: 0.25rem 0.5rem; + background: var(--surface-secondary, #f5f5f5); + border-radius: 4px; + font-size: 0.8125rem; +} + +.linkml-viewer__structured-alias-form { + font-weight: 500; + color: var(--text-primary, #212121); +} + +.linkml-viewer__structured-alias-predicate { + font-size: 0.6875rem; + padding: 0.125rem 0.375rem; + background: #e0e0e0; + border-radius: 3px; + color: #616161; + font-family: 'Monaco', 'Menlo', monospace; +} + /* Dark mode support for new slot elements */ [data-theme="dark"] .linkml-viewer__uri-value { background: #374151; @@ -2172,6 +2267,45 @@ color: white; } +/* Dark mode: Aliases */ +[data-theme="dark"] .linkml-viewer__tag--alias { + background: #1a237e; + border-color: #7986cb; + color: #c5cae9; +} + +/* Dark mode: Alt Descriptions */ +[data-theme="dark"] .linkml-viewer__alt-description-item { + background: #1f2937; +} + +[data-theme="dark"] .linkml-viewer__alt-description-item--active { + background: #1e3a5f; + border-left-color: #60a5fa; +} + +[data-theme="dark"] .linkml-viewer__lang-badge { + background: #607d8b; +} + +[data-theme="dark"] .linkml-viewer__alt-description-text { + color: #e5e7eb; +} + +/* Dark mode: Structured Aliases */ +[data-theme="dark"] .linkml-viewer__structured-alias-item { + background: #1f2937; +} + +[data-theme="dark"] .linkml-viewer__structured-alias-form { + color: #e5e7eb; +} + +[data-theme="dark"] .linkml-viewer__structured-alias-predicate { + background: #374151; + color: #9ca3af; +} + /* Enum Values */ .linkml-viewer__enum-values { margin-top: 0.75rem; diff --git a/frontend/src/pages/LinkMLViewerPage.tsx b/frontend/src/pages/LinkMLViewerPage.tsx index fd13af9735..ce5b37b3c3 100644 --- a/frontend/src/pages/LinkMLViewerPage.tsx +++ b/frontend/src/pages/LinkMLViewerPage.tsx @@ -1145,6 +1145,10 @@ const TEXT = { broadMappings: { nl: 'Bredere mappings:', en: 'Broad Mappings:' }, relatedMappings: { nl: 'Gerelateerde mappings:', en: 'Related Mappings:' }, comments: { nl: 'Opmerkingen:', en: 'Comments:' }, + // Aliases and multilingual metadata + aliases: { nl: 'Aliassen:', en: 'Aliases:' }, + altDescriptions: { nl: 'Vertalingen:', en: 'Translations:' }, + structuredAliases: { nl: 'Gestructureerde aliassen:', en: 'Structured Aliases:' }, // Slot usage indicator slotUsageBadge: { nl: 'Slot Usage', en: 'Slot Usage' }, slotUsageTooltip: { @@ -2694,6 +2698,46 @@ const LinkMLViewerPage: React.FC = () => { )} + {/* Aliases section */} + {cls.aliases && cls.aliases.length > 0 && ( +
+ {t('aliases')} +
+ {cls.aliases.map(alias => ( + {alias} + ))} +
+
+ )} + {/* Alt Descriptions (translations) section */} + {cls.alt_descriptions && Object.keys(cls.alt_descriptions).length > 0 && ( +
+ {t('altDescriptions')} +
+ {Object.entries(cls.alt_descriptions).map(([lang, desc]) => ( +
+ {lang} + {desc} +
+ ))} +
+
+ )} + {/* Structured Aliases section */} + {cls.structured_aliases && cls.structured_aliases.length > 0 && ( +
+ {t('structuredAliases')} +
+ {cls.structured_aliases.map((sa, idx) => ( +
+ {sa.in_language && {sa.in_language}} + {sa.literal_form} + {sa.predicate && {sa.predicate}} +
+ ))} +
+
+ )} {/* Imports Section - Shows forward dependencies (what this class depends on) */} {isSchemaServiceComplete && (
@@ -3453,6 +3497,47 @@ const LinkMLViewerPage: React.FC = () => {
)} + {/* Aliases section */} + {slot.aliases && slot.aliases.length > 0 && ( +
+ {t('aliases')} +
+ {slot.aliases.map(alias => ( + {alias} + ))} +
+
+ )} + {/* Alt Descriptions (translations) section */} + {slot.alt_descriptions && Object.keys(slot.alt_descriptions).length > 0 && ( +
+ {t('altDescriptions')} +
+ {Object.entries(slot.alt_descriptions).map(([lang, desc]) => ( +
+ {lang} + {desc} +
+ ))} +
+
+ )} + {/* Structured Aliases section */} + {slot.structured_aliases && slot.structured_aliases.length > 0 && ( +
+ {t('structuredAliases')} +
+ {slot.structured_aliases.map((sa, idx) => ( +
+ {sa.in_language && {sa.in_language}} + {sa.literal_form} + {sa.predicate && {sa.predicate}} +
+ ))} +
+
+ )} + {/* Imports Section - Shows forward dependencies (what this slot depends on) */} {!className && isSchemaServiceComplete && (
diff --git a/schemas/20251121/linkml/manifest.json b/schemas/20251121/linkml/manifest.json index 77870c81fe..15f770d4a6 100644 --- a/schemas/20251121/linkml/manifest.json +++ b/schemas/20251121/linkml/manifest.json @@ -1,12 +1,12 @@ { - "generated": "2026-02-11T11:12:00.084Z", + "generated": "2026-02-11T12:57:50.598Z", "schemaRoot": "/schemas/20251121/linkml", - "totalFiles": 2916, + "totalFiles": 2369, "categoryCounts": { "main": 4, "class": 1378, "enum": 157, - "slot": 1373, + "slot": 826, "module": 4 }, "categories": [ @@ -7729,537 +7729,497 @@ "files": [ { "name": "accept", - "path": "modules/slots/20260202_matang/accept.yaml", + "path": "modules/slots/accept.yaml", + "category": "slot" + }, + { + "name": "access_restricted", + "path": "modules/slots/access_restricted.yaml", + "category": "slot" + }, + { + "name": "accessioned_through", + "path": "modules/slots/accessioned_through.yaml", + "category": "slot" + }, + { + "name": "accredited_with", + "path": "modules/slots/accredited_with.yaml", + "category": "slot" + }, + { + "name": "accumulated_at", + "path": "modules/slots/accumulated_at.yaml", + "category": "slot" + }, + { + "name": "accuracy", + "path": "modules/slots/accuracy.yaml", + "category": "slot" + }, + { + "name": "acquired_by", + "path": "modules/slots/acquired_by.yaml", + "category": "slot" + }, + { + "name": "acquired_through", + "path": "modules/slots/acquired_through.yaml", + "category": "slot" + }, + { + "name": "active_since", + "path": "modules/slots/active_since.yaml", + "category": "slot" + }, + { + "name": "add", + "path": "modules/slots/add.yaml", + "category": "slot" + }, + { + "name": "administered_by", + "path": "modules/slots/administered_by.yaml", "category": "slot" }, { "name": "affect", - "path": "modules/slots/20260202_matang/affect.yaml", + "path": "modules/slots/affect.yaml", + "category": "slot" + }, + { + "name": "affected_by", + "path": "modules/slots/affected_by.yaml", + "category": "slot" + }, + { + "name": "affected_territory", + "path": "modules/slots/affected_territory.yaml", + "category": "slot" + }, + { + "name": "affiliated_with", + "path": "modules/slots/affiliated_with.yaml", "category": "slot" }, { "name": "aggregate_from", - "path": "modules/slots/20260202_matang/aggregate_from.yaml", + "path": "modules/slots/aggregate_from.yaml", + "category": "slot" + }, + { + "name": "aggregated_by", + "path": "modules/slots/aggregated_by.yaml", + "category": "slot" + }, + { + "name": "aligned_at", + "path": "modules/slots/aligned_at.yaml", "category": "slot" }, { "name": "allocate", - "path": "modules/slots/20260202_matang/allocate.yaml", + "path": "modules/slots/allocate.yaml", + "category": "slot" + }, + { + "name": "allocated_budget", + "path": "modules/slots/allocated_budget.yaml", + "category": "slot" + }, + { + "name": "allocated_by", + "path": "modules/slots/allocated_by.yaml", + "category": "slot" + }, + { + "name": "allocated_through", + "path": "modules/slots/allocated_through.yaml", + "category": "slot" + }, + { + "name": "allocated_to", + "path": "modules/slots/allocated_to.yaml", "category": "slot" }, { "name": "allow", - "path": "modules/slots/20260202_matang/allow.yaml", + "path": "modules/slots/allow.yaml", + "category": "slot" + }, + { + "name": "allowed_by", + "path": "modules/slots/allowed_by.yaml", + "category": "slot" + }, + { + "name": "alternative_form_of", + "path": "modules/slots/alternative_form_of.yaml", + "category": "slot" + }, + { + "name": "amended_through", + "path": "modules/slots/amended_through.yaml", + "category": "slot" + }, + { + "name": "amended_with", + "path": "modules/slots/amended_with.yaml", "category": "slot" }, { "name": "analyze", - "path": "modules/slots/20260202_matang/analyze.yaml", + "path": "modules/slots/analyze.yaml", "category": "slot" }, { - "name": "api_ver", - "path": "modules/slots/api_ver.yaml", + "name": "annex_of", + "path": "modules/slots/annex_of.yaml", + "category": "slot" + }, + { + "name": "appended_with", + "path": "modules/slots/appended_with.yaml", + "category": "slot" + }, + { + "name": "applicable_in", + "path": "modules/slots/applicable_in.yaml", "category": "slot" }, { "name": "apply_to", - "path": "modules/slots/20260202_matang/apply_to.yaml", + "path": "modules/slots/apply_to.yaml", + "category": "slot" + }, + { + "name": "appreciated", + "path": "modules/slots/appreciated.yaml", + "category": "slot" + }, + { + "name": "appropriate_for", + "path": "modules/slots/appropriate_for.yaml", + "category": "slot" + }, + { + "name": "approved_by", + "path": "modules/slots/approved_by.yaml", + "category": "slot" + }, + { + "name": "approved_on", + "path": "modules/slots/approved_on.yaml", + "category": "slot" + }, + { + "name": "approximate", + "path": "modules/slots/approximate.yaml", + "category": "slot" + }, + { + "name": "archived_as", + "path": "modules/slots/archived_as.yaml", + "category": "slot" + }, + { + "name": "archived_at", + "path": "modules/slots/archived_at.yaml", + "category": "slot" + }, + { + "name": "archived_in", + "path": "modules/slots/archived_in.yaml", + "category": "slot" + }, + { + "name": "arranged_as", + "path": "modules/slots/arranged_as.yaml", "category": "slot" }, { "name": "assert", - "path": "modules/slots/20260202_matang/assert.yaml", + "path": "modules/slots/assert.yaml", "category": "slot" }, { - "name": "basionym_authority", - "path": "modules/slots/basionym_authority.yaml", + "name": "asserted_by", + "path": "modules/slots/asserted_by.yaml", + "category": "slot" + }, + { + "name": "asserted_on", + "path": "modules/slots/asserted_on.yaml", + "category": "slot" + }, + { + "name": "assessed_as", + "path": "modules/slots/assessed_as.yaml", + "category": "slot" + }, + { + "name": "assessed_on", + "path": "modules/slots/assessed_on.yaml", + "category": "slot" + }, + { + "name": "associated_with", + "path": "modules/slots/associated_with.yaml", + "category": "slot" + }, + { + "name": "authorized_to", + "path": "modules/slots/authorized_to.yaml", + "category": "slot" + }, + { + "name": "auxiliary_of", + "path": "modules/slots/auxiliary_of.yaml", + "category": "slot" + }, + { + "name": "available", + "path": "modules/slots/available.yaml", + "category": "slot" + }, + { + "name": "based_on", + "path": "modules/slots/based_on.yaml", "category": "slot" }, { "name": "begin_of_the_begin", - "path": "modules/slots/20260202_matang/begin_of_the_begin.yaml", + "path": "modules/slots/begin_of_the_begin.yaml", "category": "slot" }, { "name": "begin_of_the_end", - "path": "modules/slots/20260202_matang/begin_of_the_end.yaml", + "path": "modules/slots/begin_of_the_end.yaml", "category": "slot" }, { - "name": "catalogues_or_catalogued", - "path": "modules/slots/catalogues_or_catalogued.yaml", + "name": "belong_to", + "path": "modules/slots/belong_to.yaml", + "category": "slot" + }, + { + "name": "born_on", + "path": "modules/slots/born_on.yaml", + "category": "slot" + }, + { + "name": "branch_of", + "path": "modules/slots/branch_of.yaml", + "category": "slot" + }, + { + "name": "broadcast", + "path": "modules/slots/broadcast.yaml", + "category": "slot" + }, + { + "name": "cancelled_by", + "path": "modules/slots/cancelled_by.yaml", + "category": "slot" + }, + { + "name": "canonized_as", + "path": "modules/slots/canonized_as.yaml", + "category": "slot" + }, + { + "name": "cataloged_in", + "path": "modules/slots/cataloged_in.yaml", + "category": "slot" + }, + { + "name": "catalogue", + "path": "modules/slots/catalogue.yaml", "category": "slot" }, { "name": "categorized_as", - "path": "modules/slots/20260202_matang/categorized_as.yaml", + "path": "modules/slots/categorized_as.yaml", + "category": "slot" + }, + { + "name": "caused_by", + "path": "modules/slots/caused_by.yaml", + "category": "slot" + }, + { + "name": "ceased_by", + "path": "modules/slots/ceased_by.yaml", "category": "slot" }, { "name": "ceased_through", - "path": "modules/slots/20260202_matang/ceased_through.yaml", + "path": "modules/slots/ceased_through.yaml", + "category": "slot" + }, + { + "name": "change_ownership_from", + "path": "modules/slots/change_ownership_from.yaml", + "category": "slot" + }, + { + "name": "change_ownership_to", + "path": "modules/slots/change_ownership_to.yaml", "category": "slot" }, { "name": "changed_through", - "path": "modules/slots/20260202_matang/changed_through.yaml", + "path": "modules/slots/changed_through.yaml", "category": "slot" }, { - "name": "changes_or_changed_ownership_from", - "path": "modules/slots/changes_or_changed_ownership_from.yaml", + "name": "charge_fee", + "path": "modules/slots/charge_fee.yaml", "category": "slot" }, { - "name": "changes_or_changed_ownership_to", - "path": "modules/slots/changes_or_changed_ownership_to.yaml", + "name": "checked_through", + "path": "modules/slots/checked_through.yaml", "category": "slot" }, { - "name": "classifies_or_classified", - "path": "modules/slots/classifies_or_classified.yaml", + "name": "classified_as", + "path": "modules/slots/classified_as.yaml", + "category": "slot" + }, + { + "name": "classify", + "path": "modules/slots/classify.yaml", "category": "slot" }, { "name": "collect", - "path": "modules/slots/20260202_matang/collect.yaml", + "path": "modules/slots/collect.yaml", "category": "slot" }, { - "name": "complies_or_complied_with", - "path": "modules/slots/complies_or_complied_with.yaml", + "name": "collection_of", + "path": "modules/slots/collection_of.yaml", "category": "slot" }, { - "name": "connection_heritage_relevant", - "path": "modules/slots/connection_heritage_relevant.yaml", + "name": "commented_on", + "path": "modules/slots/commented_on.yaml", "category": "slot" }, { - "name": "connection_heritage_type", - "path": "modules/slots/connection_heritage_type.yaml", + "name": "compatible_with", + "path": "modules/slots/compatible_with.yaml", "category": "slot" }, { - "name": "connection_id", - "path": "modules/slots/connection_id.yaml", + "name": "completed_at", + "path": "modules/slots/completed_at.yaml", "category": "slot" }, { - "name": "connection_linkedin_url", - "path": "modules/slots/connection_linkedin_url.yaml", + "name": "comply_with", + "path": "modules/slots/comply_with.yaml", "category": "slot" }, { - "name": "connection_location", - "path": "modules/slots/connection_location.yaml", + "name": "conducted_by", + "path": "modules/slots/conducted_by.yaml", "category": "slot" }, { - "name": "connection_name", - "path": "modules/slots/connection_name.yaml", + "name": "conform_to", + "path": "modules/slots/conform_to.yaml", "category": "slot" }, { - "name": "connection_organization", - "path": "modules/slots/connection_organization.yaml", + "name": "connect_through", + "path": "modules/slots/connect_through.yaml", "category": "slot" }, { - "name": "connections_by_heritage_type", - "path": "modules/slots/connections_by_heritage_type.yaml", + "name": "conserved_by", + "path": "modules/slots/conserved_by.yaml", "category": "slot" }, { - "name": "connections_extracted", - "path": "modules/slots/connections_extracted.yaml", + "name": "constructed_on", + "path": "modules/slots/constructed_on.yaml", "category": "slot" }, { - "name": "connections_text", - "path": "modules/slots/connections_text.yaml", + "name": "consume", + "path": "modules/slots/consume.yaml", "category": "slot" }, { - "name": "connectivity_type", - "path": "modules/slots/connectivity_type.yaml", + "name": "contain", + "path": "modules/slots/contain.yaml", "category": "slot" }, { - "name": "conservation_breeding", - "path": "modules/slots/conservation_breeding.yaml", + "name": "contain_collection", + "path": "modules/slots/contain_collection.yaml", "category": "slot" }, { - "name": "conservation_history", - "path": "modules/slots/conservation_history.yaml", + "name": "contain_covers_settlement", + "path": "modules/slots/contain_covers_settlement.yaml", "category": "slot" }, { - "name": "conservation_lab", - "path": "modules/slots/conservation_lab.yaml", + "name": "contain_storage_unit", + "path": "modules/slots/contain_storage_unit.yaml", "category": "slot" }, { - "name": "conservation_note", - "path": "modules/slots/conservation_note.yaml", + "name": "contain_unit", + "path": "modules/slots/contain_unit.yaml", "category": "slot" }, { - "name": "conservation_specialization", - "path": "modules/slots/conservation_specialization.yaml", + "name": "contribute_to", + "path": "modules/slots/contribute_to.yaml", "category": "slot" }, { - "name": "conservation_status", - "path": "modules/slots/conservation_status.yaml", + "name": "cover", + "path": "modules/slots/cover.yaml", "category": "slot" }, { - "name": "conservator", - "path": "modules/slots/conservator.yaml", + "name": "cover_country", + "path": "modules/slots/cover_country.yaml", "category": "slot" }, { - "name": "conservator_affiliation", - "path": "modules/slots/conservator_affiliation.yaml", + "name": "cover_geographic_subdivision", + "path": "modules/slots/cover_geographic_subdivision.yaml", "category": "slot" }, { - "name": "constituent_type", - "path": "modules/slots/constituent_type.yaml", + "name": "cover_place", + "path": "modules/slots/cover_place.yaml", "category": "slot" }, { - "name": "construction_date", - "path": "modules/slots/construction_date.yaml", + "name": "created_by", + "path": "modules/slots/created_by.yaml", "category": "slot" }, { - "name": "construction_date_precision", - "path": "modules/slots/construction_date_precision.yaml", + "name": "created_in", + "path": "modules/slots/created_in.yaml", "category": "slot" }, { - "name": "consumes_or_consumed", - "path": "modules/slots/consumes_or_consumed.yaml", + "name": "created_through", + "path": "modules/slots/created_through.yaml", "category": "slot" }, { - "name": "contact", - "path": "modules/slots/contact.yaml", - "category": "slot" - }, - { - "name": "contact_point", - "path": "modules/slots/contact_point.yaml", - "category": "slot" - }, - { - "name": "contains_or_contained", - "path": "modules/slots/contains_or_contained.yaml", - "category": "slot" - }, - { - "name": "contains_or_contained_collection", - "path": "modules/slots/contains_or_contained_collection.yaml", - "category": "slot" - }, - { - "name": "contains_or_contained_contains_unit", - "path": "modules/slots/contains_or_contained_contains_unit.yaml", - "category": "slot" - }, - { - "name": "contains_or_contained_covers_settlement", - "path": "modules/slots/contains_or_contained_covers_settlement.yaml", - "category": "slot" - }, - { - "name": "contains_storage", - "path": "modules/slots/contains_storage.yaml", - "category": "slot" - }, - { - "name": "content", - "path": "modules/slots/content.yaml", - "category": "slot" - }, - { - "name": "content_block", - "path": "modules/slots/content_block.yaml", - "category": "slot" - }, - { - "name": "content_category", - "path": "modules/slots/content_category.yaml", - "category": "slot" - }, - { - "name": "content_changed", - "path": "modules/slots/content_changed.yaml", - "category": "slot" - }, - { - "name": "content_hash", - "path": "modules/slots/content_hash.yaml", - "category": "slot" - }, - { - "name": "content_id", - "path": "modules/slots/content_id.yaml", - "category": "slot" - }, - { - "name": "content_origin", - "path": "modules/slots/content_origin.yaml", - "category": "slot" - }, - { - "name": "content_title", - "path": "modules/slots/content_title.yaml", - "category": "slot" - }, - { - "name": "content_type", - "path": "modules/slots/content_type.yaml", - "category": "slot" - }, - { - "name": "content_url", - "path": "modules/slots/content_url.yaml", - "category": "slot" - }, - { - "name": "contents_description", - "path": "modules/slots/contents_description.yaml", - "category": "slot" - }, - { - "name": "contributes_or_contributed", - "path": "modules/slots/contributes_or_contributed.yaml", - "category": "slot" - }, - { - "name": "contributes_to", - "path": "modules/slots/contributes_to.yaml", - "category": "slot" - }, - { - "name": "contribution_start_date", - "path": "modules/slots/contribution_start_date.yaml", - "category": "slot" - }, - { - "name": "contributor", - "path": "modules/slots/contributor.yaml", - "category": "slot" - }, - { - "name": "contributor_code", - "path": "modules/slots/contributor_code.yaml", - "category": "slot" - }, - { - "name": "conversion_source_population", - "path": "modules/slots/conversion_source_population.yaml", - "category": "slot" - }, - { - "name": "conversion_target_action", - "path": "modules/slots/conversion_target_action.yaml", - "category": "slot" - }, - { - "name": "conversion_type_label", - "path": "modules/slots/conversion_type_label.yaml", - "category": "slot" - }, - { - "name": "coordinate_reference_system", - "path": "modules/slots/coordinate_reference_system.yaml", - "category": "slot" - }, - { - "name": "coordinates", - "path": "modules/slots/coordinates.yaml", - "category": "slot" - }, - { - "name": "copy_note", - "path": "modules/slots/copy_note.yaml", - "category": "slot" - }, - { - "name": "copy_number", - "path": "modules/slots/copy_number.yaml", - "category": "slot" - }, - { - "name": "corporate_integration", - "path": "modules/slots/corporate_integration.yaml", - "category": "slot" - }, - { - "name": "cost", - "path": "modules/slots/cost.yaml", - "category": "slot" - }, - { - "name": "cost_currency", - "path": "modules/slots/cost_currency.yaml", - "category": "slot" - }, - { - "name": "cost_usd", - "path": "modules/slots/cost_usd.yaml", - "category": "slot" - }, - { - "name": "country", - "path": "modules/slots/country.yaml", - "category": "slot" - }, - { - "name": "country_code", - "path": "modules/slots/country_code.yaml", - "category": "slot" - }, - { - "name": "country_name", - "path": "modules/slots/country_name.yaml", - "category": "slot" - }, - { - "name": "courier_detail", - "path": "modules/slots/courier_detail.yaml", - "category": "slot" - }, - { - "name": "courier_required", - "path": "modules/slots/courier_required.yaml", - "category": "slot" - }, - { - "name": "court_types_covered", - "path": "modules/slots/court_types_covered.yaml", - "category": "slot" - }, - { - "name": "cover_image_url", - "path": "modules/slots/cover_image_url.yaml", - "category": "slot" - }, - { - "name": "cover_material", - "path": "modules/slots/cover_material.yaml", - "category": "slot" - }, - { - "name": "cover_or_covered_subregion", - "path": "modules/slots/cover_or_covered_subregion.yaml", - "category": "slot" - }, - { - "name": "coverage_area", - "path": "modules/slots/coverage_area.yaml", - "category": "slot" - }, - { - "name": "covers_country", - "path": "modules/slots/covers_country.yaml", - "category": "slot" - }, - { - "name": "covers_full_video", - "path": "modules/slots/covers_full_video.yaml", - "category": "slot" - }, - { - "name": "crawler_version", - "path": "modules/slots/crawler_version.yaml", - "category": "slot" - }, - { - "name": "created", - "path": "modules/slots/created.yaml", - "category": "slot" - }, - { - "name": "created_by_project", - "path": "modules/slots/created_by_project.yaml", - "category": "slot" - }, - { - "name": "created_date", - "path": "modules/slots/created_date.yaml", - "category": "slot" - }, - { - "name": "creating_agency", - "path": "modules/slots/creating_agency.yaml", - "category": "slot" - }, - { - "name": "creating_function", - "path": "modules/slots/creating_function.yaml", - "category": "slot" - }, - { - "name": "creating_organization", - "path": "modules/slots/creating_organization.yaml", - "category": "slot" - }, - { - "name": "creation_place", - "path": "modules/slots/creation_place.yaml", - "category": "slot" - }, - { - "name": "creation_timespan", - "path": "modules/slots/creation_timespan.yaml", - "category": "slot" - }, - { - "name": "creator", - "path": "modules/slots/creator.yaml", - "category": "slot" - }, - { - "name": "creator_role", - "path": "modules/slots/creator_role.yaml", - "category": "slot" - }, - { - "name": "credentials_required", - "path": "modules/slots/credentials_required.yaml", - "category": "slot" - }, - { - "name": "css_selector", - "path": "modules/slots/css_selector.yaml", - "category": "slot" - }, - { - "name": "cuisine_type", - "path": "modules/slots/cuisine_type.yaml", - "category": "slot" - }, - { - "name": "cultural_context", - "path": "modules/slots/cultural_context.yaml", - "category": "slot" - }, - { - "name": "cultural_focus_area", - "path": "modules/slots/cultural_focus_area.yaml", - "category": "slot" - }, - { - "name": "cultural_protocol_url", - "path": "modules/slots/cultural_protocol_url.yaml", + "name": "curate", + "path": "modules/slots/curate.yaml", "category": "slot" }, { @@ -8268,113 +8228,28 @@ "category": "slot" }, { - "name": "curated_holding", - "path": "modules/slots/curated_holding.yaml", + "name": "curated_through", + "path": "modules/slots/curated_through.yaml", "category": "slot" }, { - "name": "currency", - "path": "modules/slots/currency.yaml", + "name": "current", + "path": "modules/slots/current.yaml", "category": "slot" }, { - "name": "currency_code", - "path": "modules/slots/currency_code.yaml", + "name": "deceased", + "path": "modules/slots/deceased.yaml", "category": "slot" }, { - "name": "currency_symbol", - "path": "modules/slots/currency_symbol.yaml", + "name": "decommissioned_at", + "path": "modules/slots/decommissioned_at.yaml", "category": "slot" }, { - "name": "current_exhibition", - "path": "modules/slots/current_exhibition.yaml", - "category": "slot" - }, - { - "name": "current_item_count", - "path": "modules/slots/current_item_count.yaml", - "category": "slot" - }, - { - "name": "current_keeper", - "path": "modules/slots/current_keeper.yaml", - "category": "slot" - }, - { - "name": "current_location", - "path": "modules/slots/current_location.yaml", - "category": "slot" - }, - { - "name": "current_use", - "path": "modules/slots/current_use.yaml", - "category": "slot" - }, - { - "name": "current_utilization_percent", - "path": "modules/slots/current_utilization_percent.yaml", - "category": "slot" - }, - { - "name": "custodial_history", - "path": "modules/slots/custodial_history.yaml", - "category": "slot" - }, - { - "name": "custodian", - "path": "modules/slots/custodian.yaml", - "category": "slot" - }, - { - "name": "custodian_only", - "path": "modules/slots/custodian_only.yaml", - "category": "slot" - }, - { - "name": "custodian_type", - "path": "modules/slots/custodian_type.yaml", - "category": "slot" - }, - { - "name": "custodian_type_broader", - "path": "modules/slots/custodian_type_broader.yaml", - "category": "slot" - }, - { - "name": "custodian_type_narrower", - "path": "modules/slots/custodian_type_narrower.yaml", - "category": "slot" - }, - { - "name": "custodian_type_related", - "path": "modules/slots/custodian_type_related.yaml", - "category": "slot" - }, - { - "name": "custody_history", - "path": "modules/slots/custody_history.yaml", - "category": "slot" - }, - { - "name": "custody_received_by", - "path": "modules/slots/custody_received_by.yaml", - "category": "slot" - }, - { - "name": "data_repository", - "path": "modules/slots/data_repository.yaml", - "category": "slot" - }, - { - "name": "date", - "path": "modules/slots/date.yaml", - "category": "slot" - }, - { - "name": "defines_or_defined", - "path": "modules/slots/defines_or_defined.yaml", + "name": "define", + "path": "modules/slots/define.yaml", "category": "slot" }, { @@ -8383,43 +8258,143 @@ "category": "slot" }, { - "name": "derives_or_derived_from", - "path": "modules/slots/derives_or_derived_from.yaml", + "name": "department_of", + "path": "modules/slots/department_of.yaml", "category": "slot" }, { - "name": "describes_or_described", - "path": "modules/slots/describes_or_described.yaml", + "name": "deployed_at", + "path": "modules/slots/deployed_at.yaml", "category": "slot" }, { - "name": "description_type", - "path": "modules/slots/description_type.yaml", + "name": "deployed_through", + "path": "modules/slots/deployed_through.yaml", "category": "slot" }, { - "name": "documents_or_documented", - "path": "modules/slots/documents_or_documented.yaml", + "name": "deposited_by", + "path": "modules/slots/deposited_by.yaml", "category": "slot" }, { - "name": "draws_or_drew_opinion", - "path": "modules/slots/draws_or_drew_opinion.yaml", + "name": "derive_from", + "path": "modules/slots/derive_from.yaml", "category": "slot" }, { - "name": "dutch_context", - "path": "modules/slots/dutch_context.yaml", + "name": "describe", + "path": "modules/slots/describe.yaml", "category": "slot" }, { - "name": "emphasizes_or_emphasized", - "path": "modules/slots/emphasizes_or_emphasized.yaml", + "name": "designed_by", + "path": "modules/slots/designed_by.yaml", "category": "slot" }, { - "name": "encompasses_or_encompassed", - "path": "modules/slots/encompasses_or_encompassed.yaml", + "name": "detect", + "path": "modules/slots/detect.yaml", + "category": "slot" + }, + { + "name": "diarized", + "path": "modules/slots/diarized.yaml", + "category": "slot" + }, + { + "name": "dismissed", + "path": "modules/slots/dismissed.yaml", + "category": "slot" + }, + { + "name": "displayed_at", + "path": "modules/slots/displayed_at.yaml", + "category": "slot" + }, + { + "name": "dissolved_by", + "path": "modules/slots/dissolved_by.yaml", + "category": "slot" + }, + { + "name": "distinguished_by", + "path": "modules/slots/distinguished_by.yaml", + "category": "slot" + }, + { + "name": "document", + "path": "modules/slots/document.yaml", + "category": "slot" + }, + { + "name": "documented_by", + "path": "modules/slots/documented_by.yaml", + "category": "slot" + }, + { + "name": "documented_in", + "path": "modules/slots/documented_in.yaml", + "category": "slot" + }, + { + "name": "draw_endowment", + "path": "modules/slots/draw_endowment.yaml", + "category": "slot" + }, + { + "name": "due_on", + "path": "modules/slots/due_on.yaml", + "category": "slot" + }, + { + "name": "edited_by", + "path": "modules/slots/edited_by.yaml", + "category": "slot" + }, + { + "name": "educate", + "path": "modules/slots/educate.yaml", + "category": "slot" + }, + { + "name": "effective_at", + "path": "modules/slots/effective_at.yaml", + "category": "slot" + }, + { + "name": "embargo", + "path": "modules/slots/embargo.yaml", + "category": "slot" + }, + { + "name": "embedded_on", + "path": "modules/slots/embedded_on.yaml", + "category": "slot" + }, + { + "name": "emphasize", + "path": "modules/slots/emphasize.yaml", + "category": "slot" + }, + { + "name": "employed_by", + "path": "modules/slots/employed_by.yaml", + "category": "slot" + }, + { + "name": "encoded_as", + "path": "modules/slots/encoded_as.yaml", + "category": "slot" + }, + { + "name": "encompass", + "path": "modules/slots/encompass.yaml", + "category": "slot" + }, + { + "name": "encompassed_by", + "path": "modules/slots/encompassed_by.yaml", "category": "slot" }, { @@ -8433,68 +8408,93 @@ "category": "slot" }, { - "name": "end_seconds", - "path": "modules/slots/end_seconds.yaml", + "name": "environmental_control", + "path": "modules/slots/environmental_control.yaml", "category": "slot" }, { - "name": "end_time", - "path": "modules/slots/end_time.yaml", + "name": "ephemeral", + "path": "modules/slots/ephemeral.yaml", "category": "slot" }, { - "name": "estimates_or_estimated", - "path": "modules/slots/estimates_or_estimated.yaml", + "name": "equivalent_to", + "path": "modules/slots/equivalent_to.yaml", "category": "slot" }, { - "name": "example_location", - "path": "modules/slots/example_location.yaml", + "name": "established_by", + "path": "modules/slots/established_by.yaml", "category": "slot" }, { - "name": "example_name", - "path": "modules/slots/example_name.yaml", + "name": "estimate", + "path": "modules/slots/estimate.yaml", "category": "slot" }, { - "name": "example_note", - "path": "modules/slots/example_note.yaml", + "name": "exclude", + "path": "modules/slots/exclude.yaml", "category": "slot" }, { - "name": "example_wikidata_id", - "path": "modules/slots/example_wikidata_id.yaml", + "name": "exhibit", + "path": "modules/slots/exhibit.yaml", "category": "slot" }, { - "name": "excludes_or_excluded", - "path": "modules/slots/excludes_or_excluded.yaml", + "name": "exhibited_at", + "path": "modules/slots/exhibited_at.yaml", "category": "slot" }, { - "name": "exhibits_or_exhibited", - "path": "modules/slots/exhibits_or_exhibited.yaml", + "name": "expertise_in", + "path": "modules/slots/expertise_in.yaml", "category": "slot" }, { - "name": "expires_on_expired_at", - "path": "modules/slots/expires_on_expired_at.yaml", + "name": "expired_at", + "path": "modules/slots/expired_at.yaml", "category": "slot" }, { - "name": "exposes_or_exposed", - "path": "modules/slots/exposes_or_exposed.yaml", + "name": "export", + "path": "modules/slots/export.yaml", "category": "slot" }, { - "name": "field_number", - "path": "modules/slots/field_number.yaml", + "name": "exposed_through", + "path": "modules/slots/exposed_through.yaml", "category": "slot" }, { - "name": "filters_or_filtered", - "path": "modules/slots/filters_or_filtered.yaml", + "name": "exposed_to", + "path": "modules/slots/exposed_to.yaml", + "category": "slot" + }, + { + "name": "extended", + "path": "modules/slots/extended.yaml", + "category": "slot" + }, + { + "name": "extracted_through", + "path": "modules/slots/extracted_through.yaml", + "category": "slot" + }, + { + "name": "fabricate", + "path": "modules/slots/fabricate.yaml", + "category": "slot" + }, + { + "name": "face_public", + "path": "modules/slots/face_public.yaml", + "category": "slot" + }, + { + "name": "filter", + "path": "modules/slots/filter.yaml", "category": "slot" }, { @@ -8503,58 +8503,698 @@ "category": "slot" }, { - "name": "foo_bar", - "path": "modules/slots/foo_bar.yaml", + "name": "flagged_as", + "path": "modules/slots/flagged_as.yaml", + "category": "slot" + }, + { + "name": "focus_on", + "path": "modules/slots/focus_on.yaml", + "category": "slot" + }, + { + "name": "founded_through", + "path": "modules/slots/founded_through.yaml", "category": "slot" }, { "name": "fulfilled_by", - "path": "modules/slots/20260202_matang/fulfilled_by.yaml", + "path": "modules/slots/fulfilled_by.yaml", "category": "slot" }, { - "name": "generates_or_generated", - "path": "modules/slots/generates_or_generated.yaml", + "name": "fund", + "path": "modules/slots/fund.yaml", "category": "slot" }, { - "name": "grants_or_granted", - "path": "modules/slots/grants_or_granted.yaml", + "name": "funded_by", + "path": "modules/slots/funded_by.yaml", "category": "slot" }, { - "name": "grants_or_granted_access_through", - "path": "modules/slots/grants_or_granted_access_through.yaml", + "name": "generate", + "path": "modules/slots/generate.yaml", "category": "slot" }, { - "name": "habitat_description", - "path": "modules/slots/habitat_description.yaml", + "name": "generated_by", + "path": "modules/slots/generated_by.yaml", "category": "slot" }, { - "name": "has_api_version", - "path": "modules/slots/has_api_version.yaml", + "name": "geographic_extent", + "path": "modules/slots/geographic_extent.yaml", "category": "slot" }, { - "name": "has_architectural_style", - "path": "modules/slots/has_architectural_style.yaml", + "name": "geometric_extent", + "path": "modules/slots/geometric_extent.yaml", "category": "slot" }, { - "name": "has_archive_path", - "path": "modules/slots/has_archive_path.yaml", + "name": "governed_by", + "path": "modules/slots/governed_by.yaml", "category": "slot" }, { - "name": "has_audio_quality_score", - "path": "modules/slots/has_audio_quality_score.yaml", + "name": "grant", + "path": "modules/slots/grant.yaml", "category": "slot" }, { - "name": "has_heritage_type", - "path": "modules/slots/has_heritage_type.yaml", + "name": "grant_access_to", + "path": "modules/slots/grant_access_to.yaml", + "category": "slot" + }, + { + "name": "has_abbreviation", + "path": "modules/slots/has_abbreviation.yaml", + "category": "slot" + }, + { + "name": "has_access_frequency", + "path": "modules/slots/has_access_frequency.yaml", + "category": "slot" + }, + { + "name": "has_access_management", + "path": "modules/slots/has_access_management.yaml", + "category": "slot" + }, + { + "name": "has_access_policy", + "path": "modules/slots/has_access_policy.yaml", + "category": "slot" + }, + { + "name": "has_accessibility_feature", + "path": "modules/slots/has_accessibility_feature.yaml", + "category": "slot" + }, + { + "name": "has_accreditation", + "path": "modules/slots/has_accreditation.yaml", + "category": "slot" + }, + { + "name": "has_activity", + "path": "modules/slots/has_activity.yaml", + "category": "slot" + }, + { + "name": "has_address", + "path": "modules/slots/has_address.yaml", + "category": "slot" + }, + { + "name": "has_administration", + "path": "modules/slots/has_administration.yaml", + "category": "slot" + }, + { + "name": "has_administrative_context", + "path": "modules/slots/has_administrative_context.yaml", + "category": "slot" + }, + { + "name": "has_administrative_function", + "path": "modules/slots/has_administrative_function.yaml", + "category": "slot" + }, + { + "name": "has_affiliation", + "path": "modules/slots/has_affiliation.yaml", + "category": "slot" + }, + { + "name": "has_age", + "path": "modules/slots/has_age.yaml", + "category": "slot" + }, + { + "name": "has_agent", + "path": "modules/slots/has_agent.yaml", + "category": "slot" + }, + { + "name": "has_alias", + "path": "modules/slots/has_alias.yaml", + "category": "slot" + }, + { + "name": "has_alignment", + "path": "modules/slots/has_alignment.yaml", + "category": "slot" + }, + { + "name": "has_altitude", + "path": "modules/slots/has_altitude.yaml", + "category": "slot" + }, + { + "name": "has_annotation", + "path": "modules/slots/has_annotation.yaml", + "category": "slot" + }, + { + "name": "has_architect", + "path": "modules/slots/has_architect.yaml", + "category": "slot" + }, + { + "name": "has_archive", + "path": "modules/slots/has_archive.yaml", + "category": "slot" + }, + { + "name": "has_artwork", + "path": "modules/slots/has_artwork.yaml", + "category": "slot" + }, + { + "name": "has_asset", + "path": "modules/slots/has_asset.yaml", + "category": "slot" + }, + { + "name": "has_audio", + "path": "modules/slots/has_audio.yaml", + "category": "slot" + }, + { + "name": "has_author", + "path": "modules/slots/has_author.yaml", + "category": "slot" + }, + { + "name": "has_authority", + "path": "modules/slots/has_authority.yaml", + "category": "slot" + }, + { + "name": "has_base", + "path": "modules/slots/has_base.yaml", + "category": "slot" + }, + { + "name": "has_basionym", + "path": "modules/slots/has_basionym.yaml", + "category": "slot" + }, + { + "name": "has_benchmark", + "path": "modules/slots/has_benchmark.yaml", + "category": "slot" + }, + { + "name": "has_beneficiary", + "path": "modules/slots/has_beneficiary.yaml", + "category": "slot" + }, + { + "name": "has_benefit", + "path": "modules/slots/has_benefit.yaml", + "category": "slot" + }, + { + "name": "has_boundary", + "path": "modules/slots/has_boundary.yaml", + "category": "slot" + }, + { + "name": "has_bounding_box", + "path": "modules/slots/has_bounding_box.yaml", + "category": "slot" + }, + { + "name": "has_branch", + "path": "modules/slots/has_branch.yaml", + "category": "slot" + }, + { + "name": "has_budget", + "path": "modules/slots/has_budget.yaml", + "category": "slot" + }, + { + "name": "has_capacity", + "path": "modules/slots/has_capacity.yaml", + "category": "slot" + }, + { + "name": "has_caption", + "path": "modules/slots/has_caption.yaml", + "category": "slot" + }, + { + "name": "has_carrier", + "path": "modules/slots/has_carrier.yaml", + "category": "slot" + }, + { + "name": "has_chapter", + "path": "modules/slots/has_chapter.yaml", + "category": "slot" + }, + { + "name": "has_charter", + "path": "modules/slots/has_charter.yaml", + "category": "slot" + }, + { + "name": "has_code", + "path": "modules/slots/has_code.yaml", + "category": "slot" + }, + { + "name": "has_collection", + "path": "modules/slots/has_collection.yaml", + "category": "slot" + }, + { + "name": "has_community", + "path": "modules/slots/has_community.yaml", + "category": "slot" + }, + { + "name": "has_component", + "path": "modules/slots/has_component.yaml", + "category": "slot" + }, + { + "name": "has_condition", + "path": "modules/slots/has_condition.yaml", + "category": "slot" + }, + { + "name": "has_confidence_measure", + "path": "modules/slots/has_confidence_measure.yaml", + "category": "slot" + }, + { + "name": "has_constituent", + "path": "modules/slots/has_constituent.yaml", + "category": "slot" + }, + { + "name": "has_contact_details", + "path": "modules/slots/has_contact_details.yaml", + "category": "slot" + }, + { + "name": "has_contact_point", + "path": "modules/slots/has_contact_point.yaml", + "category": "slot" + }, + { + "name": "has_content", + "path": "modules/slots/has_content.yaml", + "category": "slot" + }, + { + "name": "has_content_block", + "path": "modules/slots/has_content_block.yaml", + "category": "slot" + }, + { + "name": "has_context", + "path": "modules/slots/has_context.yaml", + "category": "slot" + }, + { + "name": "has_contributor", + "path": "modules/slots/has_contributor.yaml", + "category": "slot" + }, + { + "name": "has_conversion_rate", + "path": "modules/slots/has_conversion_rate.yaml", + "category": "slot" + }, + { + "name": "has_coordinates", + "path": "modules/slots/has_coordinates.yaml", + "category": "slot" + }, + { + "name": "has_courier", + "path": "modules/slots/has_courier.yaml", + "category": "slot" + }, + { + "name": "has_cover_image", + "path": "modules/slots/has_cover_image.yaml", + "category": "slot" + }, + { + "name": "has_cuisine", + "path": "modules/slots/has_cuisine.yaml", + "category": "slot" + }, + { + "name": "has_currency", + "path": "modules/slots/has_currency.yaml", + "category": "slot" + }, + { + "name": "has_custodian", + "path": "modules/slots/has_custodian.yaml", + "category": "slot" + }, + { + "name": "has_data_quality", + "path": "modules/slots/has_data_quality.yaml", + "category": "slot" + }, + { + "name": "has_date", + "path": "modules/slots/has_date.yaml", + "category": "slot" + }, + { + "name": "has_deadline", + "path": "modules/slots/has_deadline.yaml", + "category": "slot" + }, + { + "name": "has_degree", + "path": "modules/slots/has_degree.yaml", + "category": "slot" + }, + { + "name": "has_denominator_data", + "path": "modules/slots/has_denominator_data.yaml", + "category": "slot" + }, + { + "name": "has_description", + "path": "modules/slots/has_description.yaml", + "category": "slot" + }, + { + "name": "has_detail", + "path": "modules/slots/has_detail.yaml", + "category": "slot" + }, + { + "name": "has_device", + "path": "modules/slots/has_device.yaml", + "category": "slot" + }, + { + "name": "has_digital_platform", + "path": "modules/slots/has_digital_platform.yaml", + "category": "slot" + }, + { + "name": "has_digital_presence", + "path": "modules/slots/has_digital_presence.yaml", + "category": "slot" + }, + { + "name": "has_direction", + "path": "modules/slots/has_direction.yaml", + "category": "slot" + }, + { + "name": "has_document", + "path": "modules/slots/has_document.yaml", + "category": "slot" + }, + { + "name": "has_documentation", + "path": "modules/slots/has_documentation.yaml", + "category": "slot" + }, + { + "name": "has_domain", + "path": "modules/slots/has_domain.yaml", + "category": "slot" + }, + { + "name": "has_drawer", + "path": "modules/slots/has_drawer.yaml", + "category": "slot" + }, + { + "name": "has_edition", + "path": "modules/slots/has_edition.yaml", + "category": "slot" + }, + { + "name": "has_email_address", + "path": "modules/slots/has_email_address.yaml", + "category": "slot" + }, + { + "name": "has_encoding", + "path": "modules/slots/has_encoding.yaml", + "category": "slot" + }, + { + "name": "has_endpoint", + "path": "modules/slots/has_endpoint.yaml", + "category": "slot" + }, + { + "name": "has_engagement_metric", + "path": "modules/slots/has_engagement_metric.yaml", + "category": "slot" + }, + { + "name": "has_equipment", + "path": "modules/slots/has_equipment.yaml", + "category": "slot" + }, + { + "name": "has_example", + "path": "modules/slots/has_example.yaml", + "category": "slot" + }, + { + "name": "has_expense", + "path": "modules/slots/has_expense.yaml", + "category": "slot" + }, + { + "name": "has_extent", + "path": "modules/slots/has_extent.yaml", + "category": "slot" + }, + { + "name": "has_facility", + "path": "modules/slots/has_facility.yaml", + "category": "slot" + }, + { + "name": "has_feature", + "path": "modules/slots/has_feature.yaml", + "category": "slot" + }, + { + "name": "has_field", + "path": "modules/slots/has_field.yaml", + "category": "slot" + }, + { + "name": "has_file_location", + "path": "modules/slots/has_file_location.yaml", + "category": "slot" + }, + { + "name": "has_fixity", + "path": "modules/slots/has_fixity.yaml", + "category": "slot" + }, + { + "name": "has_flag", + "path": "modules/slots/has_flag.yaml", + "category": "slot" + }, + { + "name": "has_fonds", + "path": "modules/slots/has_fonds.yaml", + "category": "slot" + }, + { + "name": "has_format", + "path": "modules/slots/has_format.yaml", + "category": "slot" + }, + { + "name": "has_frequency", + "path": "modules/slots/has_frequency.yaml", + "category": "slot" + }, + { + "name": "has_function", + "path": "modules/slots/has_function.yaml", + "category": "slot" + }, + { + "name": "has_garden", + "path": "modules/slots/has_garden.yaml", + "category": "slot" + }, + { + "name": "has_genre", + "path": "modules/slots/has_genre.yaml", + "category": "slot" + }, + { + "name": "has_geofeature", + "path": "modules/slots/has_geofeature.yaml", + "category": "slot" + }, + { + "name": "has_geographic_subdivision", + "path": "modules/slots/has_geographic_subdivision.yaml", + "category": "slot" + }, + { + "name": "has_habitat", + "path": "modules/slots/has_habitat.yaml", + "category": "slot" + }, + { + "name": "has_height", + "path": "modules/slots/has_height.yaml", + "category": "slot" + }, + { + "name": "has_homepage", + "path": "modules/slots/has_homepage.yaml", + "category": "slot" + }, + { + "name": "has_hypernym", + "path": "modules/slots/has_hypernym.yaml", + "category": "slot" + }, + { + "name": "has_hyponym", + "path": "modules/slots/has_hyponym.yaml", + "category": "slot" + }, + { + "name": "has_image", + "path": "modules/slots/has_image.yaml", + "category": "slot" + }, + { + "name": "has_initials", + "path": "modules/slots/has_initials.yaml", + "category": "slot" + }, + { + "name": "has_inscription", + "path": "modules/slots/has_inscription.yaml", + "category": "slot" + }, + { + "name": "has_insurance", + "path": "modules/slots/has_insurance.yaml", + "category": "slot" + }, + { + "name": "has_interface", + "path": "modules/slots/has_interface.yaml", + "category": "slot" + }, + { + "name": "has_inventory", + "path": "modules/slots/has_inventory.yaml", + "category": "slot" + }, + { + "name": "has_keyword", + "path": "modules/slots/has_keyword.yaml", + "category": "slot" + }, + { + "name": "has_label", + "path": "modules/slots/has_label.yaml", + "category": "slot" + }, + { + "name": "has_laboratory", + "path": "modules/slots/has_laboratory.yaml", + "category": "slot" + }, + { + "name": "has_landmark", + "path": "modules/slots/has_landmark.yaml", + "category": "slot" + }, + { + "name": "has_language", + "path": "modules/slots/has_language.yaml", + "category": "slot" + }, + { + "name": "has_latency", + "path": "modules/slots/has_latency.yaml", + "category": "slot" + }, + { + "name": "has_latitude", + "path": "modules/slots/has_latitude.yaml", + "category": "slot" + }, + { + "name": "has_legal_basis", + "path": "modules/slots/has_legal_basis.yaml", + "category": "slot" + }, + { + "name": "has_legal_form", + "path": "modules/slots/has_legal_form.yaml", + "category": "slot" + }, + { + "name": "has_level", + "path": "modules/slots/has_level.yaml", + "category": "slot" + }, + { + "name": "has_liability", + "path": "modules/slots/has_liability.yaml", + "category": "slot" + }, + { + "name": "has_light_exposure", + "path": "modules/slots/has_light_exposure.yaml", + "category": "slot" + }, + { + "name": "has_linked_data", + "path": "modules/slots/has_linked_data.yaml", + "category": "slot" + }, + { + "name": "has_literal_form", + "path": "modules/slots/has_literal_form.yaml", + "category": "slot" + }, + { + "name": "has_living_specimen", + "path": "modules/slots/has_living_specimen.yaml", + "category": "slot" + }, + { + "name": "has_loading_dock", + "path": "modules/slots/has_loading_dock.yaml", + "category": "slot" + }, + { + "name": "has_locality", + "path": "modules/slots/has_locality.yaml", + "category": "slot" + }, + { + "name": "has_location", + "path": "modules/slots/has_location.yaml", "category": "slot" }, { @@ -8562,1159 +9202,654 @@ "path": "modules/slots/has_locker.yaml", "category": "slot" }, + { + "name": "has_logo", + "path": "modules/slots/has_logo.yaml", + "category": "slot" + }, + { + "name": "has_longitude", + "path": "modules/slots/has_longitude.yaml", + "category": "slot" + }, + { + "name": "has_main_part", + "path": "modules/slots/has_main_part.yaml", + "category": "slot" + }, + { + "name": "has_mandate", + "path": "modules/slots/has_mandate.yaml", + "category": "slot" + }, + { + "name": "has_marginale", + "path": "modules/slots/has_marginale.yaml", + "category": "slot" + }, + { + "name": "has_material_type", + "path": "modules/slots/has_material_type.yaml", + "category": "slot" + }, + { + "name": "has_mean", + "path": "modules/slots/has_mean.yaml", + "category": "slot" + }, + { + "name": "has_measurement_type", + "path": "modules/slots/has_measurement_type.yaml", + "category": "slot" + }, + { + "name": "has_measurement_unit", + "path": "modules/slots/has_measurement_unit.yaml", + "category": "slot" + }, + { + "name": "has_media_type", + "path": "modules/slots/has_media_type.yaml", + "category": "slot" + }, + { + "name": "has_medium", + "path": "modules/slots/has_medium.yaml", + "category": "slot" + }, + { + "name": "has_member", + "path": "modules/slots/has_member.yaml", + "category": "slot" + }, + { + "name": "has_membership_criteria", + "path": "modules/slots/has_membership_criteria.yaml", + "category": "slot" + }, + { + "name": "has_metadata", + "path": "modules/slots/has_metadata.yaml", + "category": "slot" + }, + { + "name": "has_method", + "path": "modules/slots/has_method.yaml", + "category": "slot" + }, + { + "name": "has_methodology", + "path": "modules/slots/has_methodology.yaml", + "category": "slot" + }, { "name": "has_microfilm_reader", "path": "modules/slots/has_microfilm_reader.yaml", "category": "slot" }, { - "name": "has_or_had_accessibility_feature", - "path": "modules/slots/has_or_had_accessibility_feature.yaml", + "name": "has_mission_statement", + "path": "modules/slots/has_mission_statement.yaml", "category": "slot" }, { - "name": "has_or_had_accreditation", - "path": "modules/slots/has_or_had_accreditation.yaml", + "name": "has_mode", + "path": "modules/slots/has_mode.yaml", "category": "slot" }, { - "name": "has_or_had_accumulation", - "path": "modules/slots/has_or_had_accumulation.yaml", + "name": "has_model", + "path": "modules/slots/has_model.yaml", "category": "slot" }, { - "name": "has_or_had_activity", - "path": "modules/slots/has_or_had_activity.yaml", + "name": "has_music", + "path": "modules/slots/has_music.yaml", "category": "slot" }, { - "name": "has_or_had_administration", - "path": "modules/slots/has_or_had_administration.yaml", + "name": "has_name", + "path": "modules/slots/has_name.yaml", "category": "slot" }, { - "name": "has_or_had_affiliation", - "path": "modules/slots/has_or_had_affiliation.yaml", + "name": "has_notation", + "path": "modules/slots/has_notation.yaml", "category": "slot" }, { - "name": "has_or_had_age", - "path": "modules/slots/has_or_had_age.yaml", + "name": "has_note", + "path": "modules/slots/has_note.yaml", "category": "slot" }, { - "name": "has_or_had_agent", - "path": "modules/slots/has_or_had_agent.yaml", + "name": "has_numerator", + "path": "modules/slots/has_numerator.yaml", "category": "slot" }, { - "name": "has_or_had_alignment", - "path": "modules/slots/has_or_had_alignment.yaml", + "name": "has_numeric_value", + "path": "modules/slots/has_numeric_value.yaml", "category": "slot" }, { - "name": "has_or_had_altitude", - "path": "modules/slots/has_or_had_altitude.yaml", + "name": "has_object", + "path": "modules/slots/has_object.yaml", "category": "slot" }, { - "name": "has_or_had_annotation", - "path": "modules/slots/has_or_had_annotation.yaml", + "name": "has_objective", + "path": "modules/slots/has_objective.yaml", "category": "slot" }, { - "name": "has_or_had_archive", - "path": "modules/slots/has_or_had_archive.yaml", + "name": "has_occupation", + "path": "modules/slots/has_occupation.yaml", "category": "slot" }, { - "name": "has_or_had_area", - "path": "modules/slots/has_or_had_area.yaml", + "name": "has_operating_hours", + "path": "modules/slots/has_operating_hours.yaml", "category": "slot" }, { - "name": "has_or_had_arrangement", - "path": "modules/slots/has_or_had_arrangement.yaml", + "name": "has_operational_archive", + "path": "modules/slots/has_operational_archive.yaml", "category": "slot" }, { - "name": "has_or_had_arrangement_level", - "path": "modules/slots/has_or_had_arrangement_level.yaml", + "name": "has_operational_unit", + "path": "modules/slots/has_operational_unit.yaml", "category": "slot" }, { - "name": "has_or_had_artwork_count", - "path": "modules/slots/has_or_had_artwork_count.yaml", + "name": "has_output", + "path": "modules/slots/has_output.yaml", "category": "slot" }, { - "name": "has_or_had_assessment", - "path": "modules/slots/has_or_had_assessment.yaml", + "name": "has_overview", + "path": "modules/slots/has_overview.yaml", "category": "slot" }, { - "name": "has_or_had_asset", - "path": "modules/slots/has_or_had_asset.yaml", + "name": "has_page_count", + "path": "modules/slots/has_page_count.yaml", "category": "slot" }, { - "name": "has_or_had_author", - "path": "modules/slots/has_or_had_author.yaml", + "name": "has_paragraph", + "path": "modules/slots/has_paragraph.yaml", "category": "slot" }, { - "name": "has_or_had_author_name", - "path": "modules/slots/has_or_had_author_name.yaml", + "name": "has_participant", + "path": "modules/slots/has_participant.yaml", "category": "slot" }, { - "name": "has_or_had_authority", - "path": "modules/slots/has_or_had_authority.yaml", + "name": "has_particulate", + "path": "modules/slots/has_particulate.yaml", "category": "slot" }, { - "name": "has_or_had_auxiliary_entities", - "path": "modules/slots/has_or_had_auxiliary_entities.yaml", + "name": "has_partner", + "path": "modules/slots/has_partner.yaml", "category": "slot" }, { - "name": "has_or_had_auxiliary_platform", - "path": "modules/slots/has_or_had_auxiliary_platform.yaml", + "name": "has_patronym", + "path": "modules/slots/has_patronym.yaml", "category": "slot" }, { - "name": "has_or_had_base", - "path": "modules/slots/has_or_had_base.yaml", + "name": "has_payment_frequency", + "path": "modules/slots/has_payment_frequency.yaml", "category": "slot" }, { - "name": "has_or_had_beneficiary", - "path": "modules/slots/has_or_had_beneficiary.yaml", + "name": "has_percentage", + "path": "modules/slots/has_percentage.yaml", "category": "slot" }, { - "name": "has_or_had_benefit", - "path": "modules/slots/has_or_had_benefit.yaml", + "name": "has_phase", + "path": "modules/slots/has_phase.yaml", "category": "slot" }, { - "name": "has_or_had_boundary", - "path": "modules/slots/has_or_had_boundary.yaml", + "name": "has_policy", + "path": "modules/slots/has_policy.yaml", "category": "slot" }, { - "name": "has_or_had_branch", - "path": "modules/slots/has_or_had_branch.yaml", + "name": "has_position", + "path": "modules/slots/has_position.yaml", "category": "slot" }, { - "name": "has_or_had_budget", - "path": "modules/slots/has_or_had_budget.yaml", + "name": "has_postal_code", + "path": "modules/slots/has_postal_code.yaml", "category": "slot" }, { - "name": "has_or_had_canonical_form", - "path": "modules/slots/has_or_had_canonical_form.yaml", + "name": "has_power_source", + "path": "modules/slots/has_power_source.yaml", "category": "slot" }, { - "name": "has_or_had_capacity", - "path": "modules/slots/has_or_had_capacity.yaml", + "name": "has_price", + "path": "modules/slots/has_price.yaml", "category": "slot" }, { - "name": "has_or_had_caption", - "path": "modules/slots/has_or_had_caption.yaml", + "name": "has_priority", + "path": "modules/slots/has_priority.yaml", "category": "slot" }, { - "name": "has_or_had_carrier", - "path": "modules/slots/has_or_had_carrier.yaml", + "name": "has_profile", + "path": "modules/slots/has_profile.yaml", "category": "slot" }, { - "name": "has_or_had_chapter", - "path": "modules/slots/has_or_had_chapter.yaml", + "name": "has_protocol", + "path": "modules/slots/has_protocol.yaml", "category": "slot" }, { - "name": "has_or_had_citation", - "path": "modules/slots/has_or_had_citation.yaml", + "name": "has_provenance", + "path": "modules/slots/has_provenance.yaml", "category": "slot" }, { - "name": "has_or_had_city_code", - "path": "modules/slots/has_or_had_city_code.yaml", + "name": "has_provenance_path", + "path": "modules/slots/has_provenance_path.yaml", "category": "slot" }, { - "name": "has_or_had_code", - "path": "modules/slots/has_or_had_code.yaml", + "name": "has_publisher", + "path": "modules/slots/has_publisher.yaml", "category": "slot" }, { - "name": "has_or_had_collection", - "path": "modules/slots/has_or_had_collection.yaml", + "name": "has_purpose", + "path": "modules/slots/has_purpose.yaml", "category": "slot" }, { - "name": "has_or_had_collection_url", - "path": "modules/slots/has_or_had_collection_url.yaml", + "name": "has_qualifier", + "path": "modules/slots/has_qualifier.yaml", "category": "slot" }, { - "name": "has_or_had_comment", - "path": "modules/slots/has_or_had_comment.yaml", + "name": "has_quantity", + "path": "modules/slots/has_quantity.yaml", "category": "slot" }, { - "name": "has_or_had_component", - "path": "modules/slots/has_or_had_component.yaml", + "name": "has_range", + "path": "modules/slots/has_range.yaml", "category": "slot" }, { - "name": "has_or_had_condition", - "path": "modules/slots/has_or_had_condition.yaml", + "name": "has_rank", + "path": "modules/slots/has_rank.yaml", "category": "slot" }, { - "name": "has_or_had_confidence", - "path": "modules/slots/has_or_had_confidence.yaml", + "name": "has_rate", + "path": "modules/slots/has_rate.yaml", "category": "slot" }, { - "name": "has_or_had_contact_details", - "path": "modules/slots/has_or_had_contact_details.yaml", + "name": "has_rating", + "path": "modules/slots/has_rating.yaml", "category": "slot" }, { - "name": "has_or_had_contact_information", - "path": "modules/slots/has_or_had_contact_information.yaml", + "name": "has_rationale", + "path": "modules/slots/has_rationale.yaml", "category": "slot" }, { - "name": "has_or_had_contact_point", - "path": "modules/slots/has_or_had_contact_point.yaml", + "name": "has_raw_data", + "path": "modules/slots/has_raw_data.yaml", "category": "slot" }, { - "name": "has_or_had_content", - "path": "modules/slots/has_or_had_content.yaml", + "name": "has_reason", + "path": "modules/slots/has_reason.yaml", "category": "slot" }, { - "name": "has_or_had_contributor", - "path": "modules/slots/has_or_had_contributor.yaml", + "name": "has_reasoning_content", + "path": "modules/slots/has_reasoning_content.yaml", "category": "slot" }, { - "name": "has_or_had_coordinates", - "path": "modules/slots/has_or_had_coordinates.yaml", + "name": "has_reference", + "path": "modules/slots/has_reference.yaml", "category": "slot" }, { - "name": "has_or_had_currency", - "path": "modules/slots/has_or_had_currency.yaml", + "name": "has_reference_system", + "path": "modules/slots/has_reference_system.yaml", "category": "slot" }, { - "name": "has_or_had_custodian", - "path": "modules/slots/has_or_had_custodian.yaml", + "name": "has_repertoire", + "path": "modules/slots/has_repertoire.yaml", "category": "slot" }, { - "name": "has_or_had_custodian_name", - "path": "modules/slots/has_or_had_custodian_name.yaml", + "name": "has_reply", + "path": "modules/slots/has_reply.yaml", "category": "slot" }, { - "name": "has_or_had_custodian_observation", - "path": "modules/slots/has_or_had_custodian_observation.yaml", + "name": "has_repository", + "path": "modules/slots/has_repository.yaml", "category": "slot" }, { - "name": "has_or_had_data_quality_notes", - "path": "modules/slots/has_or_had_data_quality_notes.yaml", + "name": "has_resolution", + "path": "modules/slots/has_resolution.yaml", "category": "slot" }, { - "name": "has_or_had_degree", - "path": "modules/slots/has_or_had_degree.yaml", + "name": "has_revenue", + "path": "modules/slots/has_revenue.yaml", "category": "slot" }, { - "name": "has_or_had_description", - "path": "modules/slots/has_or_had_description.yaml", + "name": "has_risk", + "path": "modules/slots/has_risk.yaml", "category": "slot" }, { - "name": "has_or_had_detected", - "path": "modules/slots/has_or_had_detected.yaml", + "name": "has_roadmap", + "path": "modules/slots/has_roadmap.yaml", "category": "slot" }, { - "name": "has_or_had_device", - "path": "modules/slots/has_or_had_device.yaml", + "name": "has_role", + "path": "modules/slots/has_role.yaml", "category": "slot" }, { - "name": "has_or_had_digital_platform", - "path": "modules/slots/has_or_had_digital_platform.yaml", + "name": "has_schedule", + "path": "modules/slots/has_schedule.yaml", "category": "slot" }, { - "name": "has_or_had_digital_presence", - "path": "modules/slots/has_or_had_digital_presence.yaml", + "name": "has_schema", + "path": "modules/slots/has_schema.yaml", "category": "slot" }, { - "name": "has_or_had_direction", - "path": "modules/slots/has_or_had_direction.yaml", - "category": "slot" - }, - { - "name": "has_or_had_document", - "path": "modules/slots/has_or_had_document.yaml", - "category": "slot" - }, - { - "name": "has_or_had_documentation", - "path": "modules/slots/has_or_had_documentation.yaml", - "category": "slot" - }, - { - "name": "has_or_had_domain", - "path": "modules/slots/has_or_had_domain.yaml", - "category": "slot" - }, - { - "name": "has_or_had_drawer", - "path": "modules/slots/has_or_had_drawer.yaml", - "category": "slot" - }, - { - "name": "has_or_had_edition", - "path": "modules/slots/has_or_had_edition.yaml", - "category": "slot" - }, - { - "name": "has_or_had_email", - "path": "modules/slots/has_or_had_email.yaml", - "category": "slot" - }, - { - "name": "has_or_had_embargo_end_date", - "path": "modules/slots/has_or_had_embargo_end_date.yaml", - "category": "slot" - }, - { - "name": "has_or_had_embargo_reason", - "path": "modules/slots/has_or_had_embargo_reason.yaml", - "category": "slot" - }, - { - "name": "has_or_had_endowment_draw", - "path": "modules/slots/has_or_had_endowment_draw.yaml", - "category": "slot" - }, - { - "name": "has_or_had_endpoint", - "path": "modules/slots/has_or_had_endpoint.yaml", - "category": "slot" - }, - { - "name": "has_or_had_engagement_metric", - "path": "modules/slots/has_or_had_engagement_metric.yaml", - "category": "slot" - }, - { - "name": "has_or_had_equipment", - "path": "modules/slots/has_or_had_equipment.yaml", - "category": "slot" - }, - { - "name": "has_or_had_equipment_type", - "path": "modules/slots/has_or_had_equipment_type.yaml", - "category": "slot" - }, - { - "name": "has_or_had_example", - "path": "modules/slots/has_or_had_example.yaml", - "category": "slot" - }, - { - "name": "has_or_had_exhibition", - "path": "modules/slots/has_or_had_exhibition.yaml", - "category": "slot" - }, - { - "name": "has_or_had_exhibition_type", - "path": "modules/slots/has_or_had_exhibition_type.yaml", - "category": "slot" - }, - { - "name": "has_or_had_expense", - "path": "modules/slots/has_or_had_expense.yaml", - "category": "slot" - }, - { - "name": "has_or_had_expertise_in", - "path": "modules/slots/has_or_had_expertise_in.yaml", - "category": "slot" - }, - { - "name": "has_or_had_extent_text", - "path": "modules/slots/has_or_had_extent_text.yaml", - "category": "slot" - }, - { - "name": "has_or_had_facility", - "path": "modules/slots/has_or_had_facility.yaml", - "category": "slot" - }, - { - "name": "has_or_had_feature", - "path": "modules/slots/has_or_had_feature.yaml", - "category": "slot" - }, - { - "name": "has_or_had_fee", - "path": "modules/slots/has_or_had_fee.yaml", - "category": "slot" - }, - { - "name": "has_or_had_field", - "path": "modules/slots/has_or_had_field.yaml", - "category": "slot" - }, - { - "name": "has_or_had_file_location", - "path": "modules/slots/has_or_had_file_location.yaml", - "category": "slot" - }, - { - "name": "has_or_had_file_path", - "path": "modules/slots/has_or_had_file_path.yaml", - "category": "slot" - }, - { - "name": "has_or_had_fixity", - "path": "modules/slots/has_or_had_fixity.yaml", - "category": "slot" - }, - { - "name": "has_or_had_flag", - "path": "modules/slots/has_or_had_flag.yaml", - "category": "slot" - }, - { - "name": "has_or_had_focus", - "path": "modules/slots/has_or_had_focus.yaml", - "category": "slot" - }, - { - "name": "has_or_had_fond", - "path": "modules/slots/has_or_had_fond.yaml", - "category": "slot" - }, - { - "name": "has_or_had_format", - "path": "modules/slots/has_or_had_format.yaml", - "category": "slot" - }, - { - "name": "has_or_had_frequency", - "path": "modules/slots/has_or_had_frequency.yaml", - "category": "slot" - }, - { - "name": "has_or_had_function", - "path": "modules/slots/has_or_had_function.yaml", - "category": "slot" - }, - { - "name": "has_or_had_funded", - "path": "modules/slots/has_or_had_funded.yaml", - "category": "slot" - }, - { - "name": "has_or_had_geofeature", - "path": "modules/slots/has_or_had_geofeature.yaml", - "category": "slot" - }, - { - "name": "has_or_had_geographic_extent", - "path": "modules/slots/has_or_had_geographic_extent.yaml", - "category": "slot" - }, - { - "name": "has_or_had_geographic_subdivision", - "path": "modules/slots/has_or_had_geographic_subdivision.yaml", - "category": "slot" - }, - { - "name": "has_or_had_geometric_extent", - "path": "modules/slots/has_or_had_geometric_extent.yaml", - "category": "slot" - }, - { - "name": "has_or_had_geometry", - "path": "modules/slots/has_or_had_geometry.yaml", - "category": "slot" - }, - { - "name": "has_or_had_habitat", - "path": "modules/slots/has_or_had_habitat.yaml", - "category": "slot" - }, - { - "name": "has_or_had_head", - "path": "modules/slots/has_or_had_head.yaml", - "category": "slot" - }, - { - "name": "has_or_had_height", - "path": "modules/slots/has_or_had_height.yaml", - "category": "slot" - }, - { - "name": "has_or_had_homepage", - "path": "modules/slots/has_or_had_homepage.yaml", - "category": "slot" - }, - { - "name": "has_or_had_http_status", - "path": "modules/slots/has_or_had_http_status.yaml", - "category": "slot" - }, - { - "name": "has_or_had_hypernym", - "path": "modules/slots/has_or_had_hypernym.yaml", - "category": "slot" - }, - { - "name": "has_or_had_hyponym", - "path": "modules/slots/has_or_had_hyponym.yaml", - "category": "slot" - }, - { - "name": "has_or_had_image", - "path": "modules/slots/has_or_had_image.yaml", - "category": "slot" - }, - { - "name": "has_or_had_index_number", - "path": "modules/slots/has_or_had_index_number.yaml", - "category": "slot" - }, - { - "name": "has_or_had_interface", - "path": "modules/slots/has_or_had_interface.yaml", - "category": "slot" - }, - { - "name": "has_or_had_inventory_url", - "path": "modules/slots/has_or_had_inventory_url.yaml", - "category": "slot" - }, - { - "name": "has_or_had_investment", - "path": "modules/slots/has_or_had_investment.yaml", - "category": "slot" - }, - { - "name": "has_or_had_iso_639_1", - "path": "modules/slots/has_or_had_iso_639_1.yaml", - "category": "slot" - }, - { - "name": "has_or_had_iso_639_3", - "path": "modules/slots/has_or_had_iso_639_3.yaml", - "category": "slot" - }, - { - "name": "has_or_had_key_contact", - "path": "modules/slots/has_or_had_key_contact.yaml", - "category": "slot" - }, - { - "name": "has_or_had_label", - "path": "modules/slots/has_or_had_label.yaml", - "category": "slot" - }, - { - "name": "has_or_had_language", - "path": "modules/slots/has_or_had_language.yaml", - "category": "slot" - }, - { - "name": "has_or_had_level", - "path": "modules/slots/has_or_had_level.yaml", - "category": "slot" - }, - { - "name": "has_or_had_liability", - "path": "modules/slots/has_or_had_liability.yaml", - "category": "slot" - }, - { - "name": "has_or_had_location", - "path": "modules/slots/has_or_had_location.yaml", - "category": "slot" - }, - { - "name": "has_or_had_main_part", - "path": "modules/slots/has_or_had_main_part.yaml", - "category": "slot" - }, - { - "name": "has_or_had_mandate", - "path": "modules/slots/has_or_had_mandate.yaml", - "category": "slot" - }, - { - "name": "has_or_had_mean", - "path": "modules/slots/has_or_had_mean.yaml", - "category": "slot" - }, - { - "name": "has_or_had_measurement", - "path": "modules/slots/has_or_had_measurement.yaml", - "category": "slot" - }, - { - "name": "has_or_had_measurement_type", - "path": "modules/slots/has_or_had_measurement_type.yaml", - "category": "slot" - }, - { - "name": "has_or_had_measurement_unit", - "path": "modules/slots/has_or_had_measurement_unit.yaml", - "category": "slot" - }, - { - "name": "has_or_had_member", - "path": "modules/slots/has_or_had_member.yaml", - "category": "slot" - }, - { - "name": "has_or_had_metadata", - "path": "modules/slots/has_or_had_metadata.yaml", - "category": "slot" - }, - { - "name": "has_or_had_method", - "path": "modules/slots/has_or_had_method.yaml", - "category": "slot" - }, - { - "name": "has_or_had_methodology", - "path": "modules/slots/has_or_had_methodology.yaml", - "category": "slot" - }, - { - "name": "has_or_had_mode", - "path": "modules/slots/has_or_had_mode.yaml", - "category": "slot" - }, - { - "name": "has_or_had_model", - "path": "modules/slots/has_or_had_model.yaml", - "category": "slot" - }, - { - "name": "has_or_had_name", - "path": "modules/slots/has_or_had_name.yaml", - "category": "slot" - }, - { - "name": "has_or_had_navigation_link", - "path": "modules/slots/has_or_had_navigation_link.yaml", - "category": "slot" - }, - { - "name": "has_or_had_notation", - "path": "modules/slots/has_or_had_notation.yaml", - "category": "slot" - }, - { - "name": "has_or_had_note", - "path": "modules/slots/has_or_had_note.yaml", - "category": "slot" - }, - { - "name": "has_or_had_objective", - "path": "modules/slots/has_or_had_objective.yaml", - "category": "slot" - }, - { - "name": "has_or_had_opening_hour", - "path": "modules/slots/has_or_had_opening_hour.yaml", - "category": "slot" - }, - { - "name": "has_or_had_organization_profile", - "path": "modules/slots/has_or_had_organization_profile.yaml", - "category": "slot" - }, - { - "name": "has_or_had_organization_status", - "path": "modules/slots/has_or_had_organization_status.yaml", - "category": "slot" - }, - { - "name": "has_or_had_organizer", - "path": "modules/slots/has_or_had_organizer.yaml", - "category": "slot" - }, - { - "name": "has_or_had_origin", - "path": "modules/slots/has_or_had_origin.yaml", - "category": "slot" - }, - { - "name": "has_or_had_output", - "path": "modules/slots/has_or_had_output.yaml", - "category": "slot" - }, - { - "name": "has_or_had_owner", - "path": "modules/slots/has_or_had_owner.yaml", - "category": "slot" - }, - { - "name": "has_or_had_parent", - "path": "modules/slots/has_or_had_parent.yaml", - "category": "slot" - }, - { - "name": "has_or_had_participated_in", - "path": "modules/slots/has_or_had_participated_in.yaml", - "category": "slot" - }, - { - "name": "has_or_had_percentage", - "path": "modules/slots/has_or_had_percentage.yaml", - "category": "slot" - }, - { - "name": "has_or_had_period", - "path": "modules/slots/has_or_had_period.yaml", - "category": "slot" - }, - { - "name": "has_or_had_place", - "path": "modules/slots/has_or_had_place.yaml", - "category": "slot" - }, - { - "name": "has_or_had_policy", - "path": "modules/slots/has_or_had_policy.yaml", - "category": "slot" - }, - { - "name": "has_or_had_price", - "path": "modules/slots/has_or_had_price.yaml", - "category": "slot" - }, - { - "name": "has_or_had_primary_platform", - "path": "modules/slots/has_or_had_primary_platform.yaml", - "category": "slot" - }, - { - "name": "has_or_had_profile", - "path": "modules/slots/has_or_had_profile.yaml", - "category": "slot" - }, - { - "name": "has_or_had_provenance", - "path": "modules/slots/has_or_had_provenance.yaml", - "category": "slot" - }, - { - "name": "has_or_had_provenance_path", - "path": "modules/slots/has_or_had_provenance_path.yaml", - "category": "slot" - }, - { - "name": "has_or_had_publication_date", - "path": "modules/slots/has_or_had_publication_date.yaml", - "category": "slot" - }, - { - "name": "has_or_had_publisher", - "path": "modules/slots/has_or_had_publisher.yaml", - "category": "slot" - }, - { - "name": "has_or_had_qualifier", - "path": "modules/slots/has_or_had_qualifier.yaml", - "category": "slot" - }, - { - "name": "has_or_had_quantity", - "path": "modules/slots/has_or_had_quantity.yaml", - "category": "slot" - }, - { - "name": "has_or_had_range", - "path": "modules/slots/has_or_had_range.yaml", - "category": "slot" - }, - { - "name": "has_or_had_rank", - "path": "modules/slots/has_or_had_rank.yaml", - "category": "slot" - }, - { - "name": "has_or_had_rate", - "path": "modules/slots/has_or_had_rate.yaml", - "category": "slot" - }, - { - "name": "has_or_had_rating", - "path": "modules/slots/has_or_had_rating.yaml", - "category": "slot" - }, - { - "name": "has_or_had_rationale", - "path": "modules/slots/has_or_had_rationale.yaml", - "category": "slot" - }, - { - "name": "has_or_had_reason", - "path": "modules/slots/has_or_had_reason.yaml", - "category": "slot" - }, - { - "name": "has_or_had_reference", - "path": "modules/slots/has_or_had_reference.yaml", - "category": "slot" - }, - { - "name": "has_or_had_requirement", - "path": "modules/slots/has_or_had_requirement.yaml", - "category": "slot" - }, - { - "name": "has_or_had_resolution", - "path": "modules/slots/has_or_had_resolution.yaml", - "category": "slot" - }, - { - "name": "has_or_had_responsibility", - "path": "modules/slots/has_or_had_responsibility.yaml", - "category": "slot" - }, - { - "name": "has_or_had_restriction", - "path": "modules/slots/has_or_had_restriction.yaml", - "category": "slot" - }, - { - "name": "has_or_had_revenue", - "path": "modules/slots/has_or_had_revenue.yaml", - "category": "slot" - }, - { - "name": "has_or_had_roadmap", - "path": "modules/slots/has_or_had_roadmap.yaml", - "category": "slot" - }, - { - "name": "has_or_had_role", - "path": "modules/slots/has_or_had_role.yaml", - "category": "slot" - }, - { - "name": "has_or_had_schedule", - "path": "modules/slots/has_or_had_schedule.yaml", - "category": "slot" - }, - { - "name": "has_or_had_schema", - "path": "modules/slots/has_or_had_schema.yaml", - "category": "slot" - }, - { - "name": "has_or_had_scheme", - "path": "modules/slots/has_or_had_scheme.yaml", - "category": "slot" - }, - { - "name": "has_or_had_scope", - "path": "modules/slots/has_or_had_scope.yaml", - "category": "slot" - }, - { - "name": "has_or_had_secondary_platform", - "path": "modules/slots/has_or_had_secondary_platform.yaml", - "category": "slot" - }, - { - "name": "has_or_had_section", - "path": "modules/slots/has_or_had_section.yaml", - "category": "slot" - }, - { - "name": "has_or_had_segment", - "path": "modules/slots/has_or_had_segment.yaml", - "category": "slot" - }, - { - "name": "has_or_had_sensitivity_level", - "path": "modules/slots/has_or_had_sensitivity_level.yaml", - "category": "slot" - }, - { - "name": "has_or_had_sequence_index", - "path": "modules/slots/has_or_had_sequence_index.yaml", - "category": "slot" - }, - { - "name": "has_or_had_series", - "path": "modules/slots/has_or_had_series.yaml", - "category": "slot" - }, - { - "name": "has_or_had_service", - "path": "modules/slots/has_or_had_service.yaml", - "category": "slot" - }, - { - "name": "has_or_had_service_area", - "path": "modules/slots/has_or_had_service_area.yaml", - "category": "slot" - }, - { - "name": "has_or_had_service_details", - "path": "modules/slots/has_or_had_service_details.yaml", - "category": "slot" - }, - { - "name": "has_or_had_setpoint", - "path": "modules/slots/has_or_had_setpoint.yaml", - "category": "slot" - }, - { - "name": "has_or_had_significance", - "path": "modules/slots/has_or_had_significance.yaml", - "category": "slot" - }, - { - "name": "has_or_had_size", - "path": "modules/slots/has_or_had_size.yaml", - "category": "slot" - }, - { - "name": "has_or_had_social_media_profile", - "path": "modules/slots/has_or_had_social_media_profile.yaml", - "category": "slot" - }, - { - "name": "has_or_had_source", - "path": "modules/slots/has_or_had_source.yaml", - "category": "slot" - }, - { - "name": "has_or_had_specification", - "path": "modules/slots/has_or_had_specification.yaml", - "category": "slot" - }, - { - "name": "has_or_had_staff", - "path": "modules/slots/has_or_had_staff.yaml", - "category": "slot" - }, - { - "name": "has_or_had_staff_member", - "path": "modules/slots/has_or_had_staff_member.yaml", - "category": "slot" - }, - { - "name": "has_or_had_standard", - "path": "modules/slots/has_or_had_standard.yaml", - "category": "slot" - }, - { - "name": "has_or_had_status", - "path": "modules/slots/has_or_had_status.yaml", - "category": "slot" - }, - { - "name": "has_or_had_style", - "path": "modules/slots/has_or_had_style.yaml", - "category": "slot" - }, - { - "name": "has_or_had_subject", - "path": "modules/slots/has_or_had_subject.yaml", - "category": "slot" - }, - { - "name": "has_or_had_subtype", - "path": "modules/slots/has_or_had_subtype.yaml", - "category": "slot" - }, - { - "name": "has_or_had_summary", - "path": "modules/slots/has_or_had_summary.yaml", - "category": "slot" - }, - { - "name": "has_or_had_supplier", - "path": "modules/slots/has_or_had_supplier.yaml", - "category": "slot" - }, - { - "name": "has_or_had_symbol", - "path": "modules/slots/has_or_had_symbol.yaml", - "category": "slot" - }, - { - "name": "has_or_had_symbolism", - "path": "modules/slots/has_or_had_symbolism.yaml", - "category": "slot" - }, - { - "name": "has_or_had_technological_infrastructure", - "path": "modules/slots/has_or_had_technological_infrastructure.yaml", - "category": "slot" - }, - { - "name": "has_or_had_text", - "path": "modules/slots/has_or_had_text.yaml", - "category": "slot" - }, - { - "name": "has_or_had_threshold", - "path": "modules/slots/has_or_had_threshold.yaml", - "category": "slot" - }, - { - "name": "has_or_had_thumbnail", - "path": "modules/slots/has_or_had_thumbnail.yaml", - "category": "slot" - }, - { - "name": "has_or_had_tier", - "path": "modules/slots/has_or_had_tier.yaml", - "category": "slot" - }, - { - "name": "has_or_had_time_interval", - "path": "modules/slots/has_or_had_time_interval.yaml", - "category": "slot" - }, - { - "name": "has_or_had_timestamp", - "path": "modules/slots/has_or_had_timestamp.yaml", - "category": "slot" - }, - { - "name": "has_or_had_title", - "path": "modules/slots/has_or_had_title.yaml", - "category": "slot" - }, - { - "name": "has_or_had_token", - "path": "modules/slots/has_or_had_token.yaml", - "category": "slot" - }, - { - "name": "has_or_had_tolerance", - "path": "modules/slots/has_or_had_tolerance.yaml", - "category": "slot" - }, - { - "name": "has_or_had_tool", - "path": "modules/slots/has_or_had_tool.yaml", - "category": "slot" - }, - { - "name": "has_or_had_transformation_metadata", - "path": "modules/slots/has_or_had_transformation_metadata.yaml", - "category": "slot" - }, - { - "name": "has_or_had_treatment", - "path": "modules/slots/has_or_had_treatment.yaml", - "category": "slot" - }, - { - "name": "has_or_had_treshold", - "path": "modules/slots/has_or_had_treshold.yaml", - "category": "slot" - }, - { - "name": "has_or_had_type", - "path": "modules/slots/has_or_had_type.yaml", - "category": "slot" - }, - { - "name": "has_or_had_type_code", - "path": "modules/slots/has_or_had_type_code.yaml", - "category": "slot" - }, - { - "name": "has_or_had_unit", - "path": "modules/slots/has_or_had_unit.yaml", - "category": "slot" - }, - { - "name": "has_or_had_use_case", - "path": "modules/slots/has_or_had_use_case.yaml", - "category": "slot" - }, - { - "name": "has_or_had_user_category", - "path": "modules/slots/has_or_had_user_category.yaml", - "category": "slot" - }, - { - "name": "has_or_had_value", - "path": "modules/slots/has_or_had_value.yaml", - "category": "slot" - }, - { - "name": "has_or_had_venue", - "path": "modules/slots/has_or_had_venue.yaml", - "category": "slot" - }, - { - "name": "has_or_had_version", - "path": "modules/slots/has_or_had_version.yaml", - "category": "slot" - }, - { - "name": "has_or_had_web_claim", - "path": "modules/slots/has_or_had_web_claim.yaml", - "category": "slot" - }, - { - "name": "has_or_had_width", - "path": "modules/slots/has_or_had_width.yaml", - "category": "slot" - }, - { - "name": "has_or_had_writing_system", - "path": "modules/slots/has_or_had_writing_system.yaml", + "name": "has_scope", + "path": "modules/slots/has_scope.yaml", "category": "slot" }, { "name": "has_score", - "path": "modules/slots/20260202_matang/has_score.yaml", + "path": "modules/slots/has_score.yaml", "category": "slot" }, { - "name": "has_supervised_handling", - "path": "modules/slots/has_supervised_handling.yaml", + "name": "has_section", + "path": "modules/slots/has_section.yaml", + "category": "slot" + }, + { + "name": "has_segment", + "path": "modules/slots/has_segment.yaml", + "category": "slot" + }, + { + "name": "has_selector", + "path": "modules/slots/has_selector.yaml", + "category": "slot" + }, + { + "name": "has_sensitivity_level", + "path": "modules/slots/has_sensitivity_level.yaml", + "category": "slot" + }, + { + "name": "has_service", + "path": "modules/slots/has_service.yaml", + "category": "slot" + }, + { + "name": "has_service_area", + "path": "modules/slots/has_service_area.yaml", + "category": "slot" + }, + { + "name": "has_setpoint", + "path": "modules/slots/has_setpoint.yaml", + "category": "slot" + }, + { + "name": "has_significance", + "path": "modules/slots/has_significance.yaml", + "category": "slot" + }, + { + "name": "has_size", + "path": "modules/slots/has_size.yaml", + "category": "slot" + }, + { + "name": "has_sound", + "path": "modules/slots/has_sound.yaml", + "category": "slot" + }, + { + "name": "has_source", + "path": "modules/slots/has_source.yaml", + "category": "slot" + }, + { + "name": "has_speaker", + "path": "modules/slots/has_speaker.yaml", + "category": "slot" + }, + { + "name": "has_specification", + "path": "modules/slots/has_specification.yaml", + "category": "slot" + }, + { + "name": "has_staff", + "path": "modules/slots/has_staff.yaml", + "category": "slot" + }, + { + "name": "has_stage", + "path": "modules/slots/has_stage.yaml", + "category": "slot" + }, + { + "name": "has_stamp", + "path": "modules/slots/has_stamp.yaml", + "category": "slot" + }, + { + "name": "has_standard", + "path": "modules/slots/has_standard.yaml", + "category": "slot" + }, + { + "name": "has_statement", + "path": "modules/slots/has_statement.yaml", + "category": "slot" + }, + { + "name": "has_status", + "path": "modules/slots/has_status.yaml", + "category": "slot" + }, + { + "name": "has_structure", + "path": "modules/slots/has_structure.yaml", + "category": "slot" + }, + { + "name": "has_style", + "path": "modules/slots/has_style.yaml", + "category": "slot" + }, + { + "name": "has_subject", + "path": "modules/slots/has_subject.yaml", + "category": "slot" + }, + { + "name": "has_summary", + "path": "modules/slots/has_summary.yaml", + "category": "slot" + }, + { + "name": "has_supplier", + "path": "modules/slots/has_supplier.yaml", + "category": "slot" + }, + { + "name": "has_system", + "path": "modules/slots/has_system.yaml", + "category": "slot" + }, + { + "name": "has_target", + "path": "modules/slots/has_target.yaml", + "category": "slot" + }, + { + "name": "has_technological_infrastructure", + "path": "modules/slots/has_technological_infrastructure.yaml", + "category": "slot" + }, + { + "name": "has_text", + "path": "modules/slots/has_text.yaml", + "category": "slot" + }, + { + "name": "has_threshold", + "path": "modules/slots/has_threshold.yaml", + "category": "slot" + }, + { + "name": "has_thumbnail", + "path": "modules/slots/has_thumbnail.yaml", + "category": "slot" + }, + { + "name": "has_tier", + "path": "modules/slots/has_tier.yaml", + "category": "slot" + }, + { + "name": "has_time_interval", + "path": "modules/slots/has_time_interval.yaml", + "category": "slot" + }, + { + "name": "has_timestamp", + "path": "modules/slots/has_timestamp.yaml", + "category": "slot" + }, + { + "name": "has_title", + "path": "modules/slots/has_title.yaml", + "category": "slot" + }, + { + "name": "has_token", + "path": "modules/slots/has_token.yaml", + "category": "slot" + }, + { + "name": "has_tolerance", + "path": "modules/slots/has_tolerance.yaml", + "category": "slot" + }, + { + "name": "has_tool", + "path": "modules/slots/has_tool.yaml", + "category": "slot" + }, + { + "name": "has_topic", + "path": "modules/slots/has_topic.yaml", + "category": "slot" + }, + { + "name": "has_transcription", + "path": "modules/slots/has_transcription.yaml", + "category": "slot" + }, + { + "name": "has_treatment", + "path": "modules/slots/has_treatment.yaml", + "category": "slot" + }, + { + "name": "has_type", + "path": "modules/slots/has_type.yaml", + "category": "slot" + }, + { + "name": "has_uri", + "path": "modules/slots/has_uri.yaml", "category": "slot" }, { "name": "has_url", - "path": "modules/slots/20260202_matang/has_url.yaml", + "path": "modules/slots/has_url.yaml", + "category": "slot" + }, + { + "name": "has_use_case", + "path": "modules/slots/has_use_case.yaml", + "category": "slot" + }, + { + "name": "has_user_category", + "path": "modules/slots/has_user_category.yaml", + "category": "slot" + }, + { + "name": "has_value", + "path": "modules/slots/has_value.yaml", + "category": "slot" + }, + { + "name": "has_venue", + "path": "modules/slots/has_venue.yaml", + "category": "slot" + }, + { + "name": "has_version", + "path": "modules/slots/has_version.yaml", + "category": "slot" + }, + { + "name": "has_video", + "path": "modules/slots/has_video.yaml", + "category": "slot" + }, + { + "name": "has_web_page", + "path": "modules/slots/has_web_page.yaml", + "category": "slot" + }, + { + "name": "has_width", + "path": "modules/slots/has_width.yaml", "category": "slot" }, { @@ -9723,123 +9858,148 @@ "category": "slot" }, { - "name": "historic_garden_designation", - "path": "modules/slots/historic_garden_designation.yaml", + "name": "headed_by", + "path": "modules/slots/headed_by.yaml", "category": "slot" }, { - "name": "hold_or_held_record_set_type", - "path": "modules/slots/hold_or_held_record_set_type.yaml", + "name": "hold", + "path": "modules/slots/hold.yaml", + "category": "slot" + }, + { + "name": "hold_authority", + "path": "modules/slots/hold_authority.yaml", + "category": "slot" + }, + { + "name": "hold_record_set", + "path": "modules/slots/hold_record_set.yaml", + "category": "slot" + }, + { + "name": "hold_session", + "path": "modules/slots/hold_session.yaml", + "category": "slot" + }, + { + "name": "identified_as", + "path": "modules/slots/identified_as.yaml", "category": "slot" }, { "name": "identified_by", - "path": "modules/slots/20260202_matang/identified_by.yaml", + "path": "modules/slots/identified_by.yaml", "category": "slot" }, { - "name": "identifies_or_identified", - "path": "modules/slots/identifies_or_identified.yaml", + "name": "identified_through", + "path": "modules/slots/identified_through.yaml", "category": "slot" }, { - "name": "identifies_or_identified_as", - "path": "modules/slots/identifies_or_identified_as.yaml", + "name": "identify", + "path": "modules/slots/identify.yaml", "category": "slot" }, { - "name": "implements_or_implemented", - "path": "modules/slots/implements_or_implemented.yaml", + "name": "identify_as", + "path": "modules/slots/identify_as.yaml", "category": "slot" }, { - "name": "imposes_or_imposed", - "path": "modules/slots/imposes_or_imposed.yaml", + "name": "implement", + "path": "modules/slots/implement.yaml", "category": "slot" }, { - "name": "inbound_from", - "path": "modules/slots/inbound_from.yaml", + "name": "implemented_by", + "path": "modules/slots/implemented_by.yaml", "category": "slot" }, { - "name": "includes_bounding_box", - "path": "modules/slots/includes_bounding_box.yaml", + "name": "impose", + "path": "modules/slots/impose.yaml", "category": "slot" }, { - "name": "includes_handwriting", - "path": "modules/slots/includes_handwriting.yaml", + "name": "in_area", + "path": "modules/slots/in_area.yaml", "category": "slot" }, { - "name": "includes_music_description", - "path": "modules/slots/includes_music_description.yaml", + "name": "in_background", + "path": "modules/slots/in_background.yaml", "category": "slot" }, { - "name": "includes_object_tracking", - "path": "modules/slots/includes_object_tracking.yaml", + "name": "in_country", + "path": "modules/slots/in_country.yaml", "category": "slot" }, { - "name": "includes_or_included", - "path": "modules/slots/includes_or_included.yaml", + "name": "in_jurisdiction", + "path": "modules/slots/in_jurisdiction.yaml", "category": "slot" }, { - "name": "includes_segmentation_mask", - "path": "modules/slots/includes_segmentation_mask.yaml", + "name": "in_language", + "path": "modules/slots/in_language.yaml", "category": "slot" }, { - "name": "includes_sound_description", - "path": "modules/slots/includes_sound_description.yaml", + "name": "in_period", + "path": "modules/slots/in_period.yaml", "category": "slot" }, { - "name": "includes_speaker", - "path": "modules/slots/includes_speaker.yaml", + "name": "in_place", + "path": "modules/slots/in_place.yaml", "category": "slot" }, { - "name": "includes_speaker_identification", - "path": "modules/slots/includes_speaker_identification.yaml", + "name": "in_project", + "path": "modules/slots/in_project.yaml", "category": "slot" }, { - "name": "includes_timestamp", - "path": "modules/slots/includes_timestamp.yaml", + "name": "in_script", + "path": "modules/slots/in_script.yaml", "category": "slot" }, { - "name": "indicates_or_indicated", - "path": "modules/slots/indicates_or_indicated.yaml", + "name": "in_series", + "path": "modules/slots/in_series.yaml", "category": "slot" }, { - "name": "industry_benchmark_high", - "path": "modules/slots/industry_benchmark_high.yaml", + "name": "in_social_network", + "path": "modules/slots/in_social_network.yaml", "category": "slot" }, { - "name": "industry_benchmark_low", - "path": "modules/slots/industry_benchmark_low.yaml", + "name": "include", + "path": "modules/slots/include.yaml", "category": "slot" }, { - "name": "inference_provenance", - "path": "modules/slots/inference_provenance.yaml", + "name": "included_in", + "path": "modules/slots/included_in.yaml", "category": "slot" }, { - "name": "info_session_date", - "path": "modules/slots/info_session_date.yaml", + "name": "indexed_as", + "path": "modules/slots/indexed_as.yaml", "category": "slot" }, { - "name": "initial", - "path": "modules/slots/initial.yaml", + "name": "indicate", + "path": "modules/slots/indicate.yaml", + "category": "slot" + }, + { + "name": "inferred_by", + "path": "modules/slots/inferred_by.yaml", "category": "slot" }, { @@ -9848,23 +10008,18 @@ "category": "slot" }, { - "name": "innovation_budget", - "path": "modules/slots/innovation_budget.yaml", + "name": "initiate_on", + "path": "modules/slots/initiate_on.yaml", "category": "slot" }, { - "name": "inscription", - "path": "modules/slots/inscription.yaml", + "name": "installed_at", + "path": "modules/slots/installed_at.yaml", "category": "slot" }, { - "name": "installation_date", - "path": "modules/slots/installation_date.yaml", - "category": "slot" - }, - { - "name": "installed_at_place", - "path": "modules/slots/installed_at_place.yaml", + "name": "installed_in", + "path": "modules/slots/installed_in.yaml", "category": "slot" }, { @@ -9873,1453 +10028,58 @@ "category": "slot" }, { - "name": "institution_function", - "path": "modules/slots/institution_function.yaml", + "name": "instantiated_as", + "path": "modules/slots/instantiated_as.yaml", "category": "slot" }, { - "name": "institution_linkedin_url", - "path": "modules/slots/institution_linkedin_url.yaml", + "name": "instantiated_by", + "path": "modules/slots/instantiated_by.yaml", "category": "slot" }, { - "name": "institution_name", - "path": "modules/slots/institution_name.yaml", + "name": "integrate", + "path": "modules/slots/integrate.yaml", "category": "slot" }, { - "name": "insurance_currency", - "path": "modules/slots/insurance_currency.yaml", + "name": "involved_in", + "path": "modules/slots/involved_in.yaml", "category": "slot" }, { - "name": "insurance_provider", - "path": "modules/slots/insurance_provider.yaml", + "name": "justified_by", + "path": "modules/slots/justified_by.yaml", "category": "slot" }, { - "name": "insurance_value", - "path": "modules/slots/insurance_value.yaml", + "name": "lack", + "path": "modules/slots/lack.yaml", "category": "slot" }, { - "name": "intangible_heritage_subtype", - "path": "modules/slots/intangible_heritage_subtype.yaml", + "name": "lease", + "path": "modules/slots/lease.yaml", "category": "slot" }, { - "name": "integrates_or_integrated", - "path": "modules/slots/integrates_or_integrated.yaml", + "name": "leased_by", + "path": "modules/slots/leased_by.yaml", "category": "slot" }, { - "name": "interlibrary_loan", - "path": "modules/slots/interlibrary_loan.yaml", + "name": "licensed_as", + "path": "modules/slots/licensed_as.yaml", "category": "slot" }, { - "name": "internal_funding", - "path": "modules/slots/internal_funding.yaml", + "name": "list", + "path": "modules/slots/list.yaml", "category": "slot" }, { - "name": "international", - "path": "modules/slots/international.yaml", - "category": "slot" - }, - { - "name": "inventory_number", - "path": "modules/slots/inventory_number.yaml", - "category": "slot" - }, - { - "name": "inventory_web_address", - "path": "modules/slots/inventory_web_address.yaml", - "category": "slot" - }, - { - "name": "involves_or_involved", - "path": "modules/slots/involves_or_involved.yaml", - "category": "slot" - }, - { - "name": "is_accessible", - "path": "modules/slots/is_accessible.yaml", - "category": "slot" - }, - { - "name": "is_accredited", - "path": "modules/slots/is_accredited.yaml", - "category": "slot" - }, - { - "name": "is_active", - "path": "modules/slots/is_active.yaml", - "category": "slot" - }, - { - "name": "is_annex_of_reading_room", - "path": "modules/slots/is_annex_of_reading_room.yaml", - "category": "slot" - }, - { - "name": "is_approximate", - "path": "modules/slots/is_approximate.yaml", - "category": "slot" - }, - { - "name": "is_auxiliary_of_place", - "path": "modules/slots/is_auxiliary_of_place.yaml", - "category": "slot" - }, - { - "name": "is_auxiliary_of_platform", - "path": "modules/slots/is_auxiliary_of_platform.yaml", - "category": "slot" - }, - { - "name": "is_background", - "path": "modules/slots/is_background.yaml", - "category": "slot" - }, - { - "name": "is_branch_of", - "path": "modules/slots/is_branch_of.yaml", - "category": "slot" - }, - { - "name": "is_branch_of_authority", - "path": "modules/slots/is_branch_of_authority.yaml", - "category": "slot" - }, - { - "name": "is_closed_caption", - "path": "modules/slots/is_closed_caption.yaml", - "category": "slot" - }, - { - "name": "is_current_version", - "path": "modules/slots/is_current_version.yaml", - "category": "slot" - }, - { - "name": "is_deceased", - "path": "modules/slots/is_deceased.yaml", - "category": "slot" - }, - { - "name": "is_embeddable", - "path": "modules/slots/is_embeddable.yaml", - "category": "slot" - }, - { - "name": "is_estimate", - "path": "modules/slots/is_estimate.yaml", - "category": "slot" - }, - { - "name": "is_heritage_relevant", - "path": "modules/slots/is_heritage_relevant.yaml", - "category": "slot" - }, - { - "name": "is_historical_boundary", - "path": "modules/slots/is_historical_boundary.yaml", - "category": "slot" - }, - { - "name": "is_inferred", - "path": "modules/slots/is_inferred.yaml", - "category": "slot" - }, - { - "name": "is_leased", - "path": "modules/slots/is_leased.yaml", - "category": "slot" - }, - { - "name": "is_legal_status_of", - "path": "modules/slots/is_legal_status_of.yaml", - "category": "slot" - }, - { - "name": "is_licensed_content", - "path": "modules/slots/is_licensed_content.yaml", - "category": "slot" - }, - { - "name": "is_made_for_kid", - "path": "modules/slots/is_made_for_kid.yaml", - "category": "slot" - }, - { - "name": "is_mandatory", - "path": "modules/slots/is_mandatory.yaml", - "category": "slot" - }, - { - "name": "is_official_assessment", - "path": "modules/slots/is_official_assessment.yaml", - "category": "slot" - }, - { - "name": "is_official_content", - "path": "modules/slots/is_official_content.yaml", - "category": "slot" - }, - { - "name": "is_open_to_public", - "path": "modules/slots/is_open_to_public.yaml", - "category": "slot" - }, - { - "name": "is_or_was_about_digital_presence", - "path": "modules/slots/is_or_was_about_digital_presence.yaml", - "category": "slot" - }, - { - "name": "is_or_was_access_restricted", - "path": "modules/slots/is_or_was_access_restricted.yaml", - "category": "slot" - }, - { - "name": "is_or_was_accessioned_through", - "path": "modules/slots/is_or_was_accessioned_through.yaml", - "category": "slot" - }, - { - "name": "is_or_was_acquired_by", - "path": "modules/slots/is_or_was_acquired_by.yaml", - "category": "slot" - }, - { - "name": "is_or_was_acquired_through", - "path": "modules/slots/is_or_was_acquired_through.yaml", - "category": "slot" - }, - { - "name": "is_or_was_active_since", - "path": "modules/slots/is_or_was_active_since.yaml", - "category": "slot" - }, - { - "name": "is_or_was_affected_by_event", - "path": "modules/slots/is_or_was_affected_by_event.yaml", - "category": "slot" - }, - { - "name": "is_or_was_affiliated_with", - "path": "modules/slots/is_or_was_affiliated_with.yaml", - "category": "slot" - }, - { - "name": "is_or_was_aggregated_by", - "path": "modules/slots/is_or_was_aggregated_by.yaml", - "category": "slot" - }, - { - "name": "is_or_was_allocated_budget", - "path": "modules/slots/is_or_was_allocated_budget.yaml", - "category": "slot" - }, - { - "name": "is_or_was_allocated_by", - "path": "modules/slots/is_or_was_allocated_by.yaml", - "category": "slot" - }, - { - "name": "is_or_was_allocated_through", - "path": "modules/slots/is_or_was_allocated_through.yaml", - "category": "slot" - }, - { - "name": "is_or_was_allocated_to", - "path": "modules/slots/is_or_was_allocated_to.yaml", - "category": "slot" - }, - { - "name": "is_or_was_also_allocation_agency", - "path": "modules/slots/is_or_was_also_allocation_agency.yaml", - "category": "slot" - }, - { - "name": "is_or_was_alternative_form_of", - "path": "modules/slots/is_or_was_alternative_form_of.yaml", - "category": "slot" - }, - { - "name": "is_or_was_amended_through", - "path": "modules/slots/is_or_was_amended_through.yaml", - "category": "slot" - }, - { - "name": "is_or_was_appended_with", - "path": "modules/slots/is_or_was_appended_with.yaml", - "category": "slot" - }, - { - "name": "is_or_was_applicable_in", - "path": "modules/slots/is_or_was_applicable_in.yaml", - "category": "slot" - }, - { - "name": "is_or_was_appreciated", - "path": "modules/slots/is_or_was_appreciated.yaml", - "category": "slot" - }, - { - "name": "is_or_was_approved_by", - "path": "modules/slots/is_or_was_approved_by.yaml", - "category": "slot" - }, - { - "name": "is_or_was_approved_on", - "path": "modules/slots/is_or_was_approved_on.yaml", - "category": "slot" - }, - { - "name": "is_or_was_approximate", - "path": "modules/slots/is_or_was_approximate.yaml", - "category": "slot" - }, - { - "name": "is_or_was_archive_department_of", - "path": "modules/slots/is_or_was_archive_department_of.yaml", - "category": "slot" - }, - { - "name": "is_or_was_archived_as", - "path": "modules/slots/is_or_was_archived_as.yaml", - "category": "slot" - }, - { - "name": "is_or_was_archived_at", - "path": "modules/slots/is_or_was_archived_at.yaml", - "category": "slot" - }, - { - "name": "is_or_was_archived_in", - "path": "modules/slots/is_or_was_archived_in.yaml", - "category": "slot" - }, - { - "name": "is_or_was_asserted_by", - "path": "modules/slots/is_or_was_asserted_by.yaml", - "category": "slot" - }, - { - "name": "is_or_was_asserted_on", - "path": "modules/slots/is_or_was_asserted_on.yaml", - "category": "slot" - }, - { - "name": "is_or_was_assessed_on", - "path": "modules/slots/is_or_was_assessed_on.yaml", - "category": "slot" - }, - { - "name": "is_or_was_associated_with", - "path": "modules/slots/is_or_was_associated_with.yaml", - "category": "slot" - }, - { - "name": "is_or_was_available", - "path": "modules/slots/is_or_was_available.yaml", - "category": "slot" - }, - { - "name": "is_or_was_based_on", - "path": "modules/slots/is_or_was_based_on.yaml", - "category": "slot" - }, - { - "name": "is_or_was_born_on", - "path": "modules/slots/is_or_was_born_on.yaml", - "category": "slot" - }, - { - "name": "is_or_was_branch_of", - "path": "modules/slots/is_or_was_branch_of.yaml", - "category": "slot" - }, - { - "name": "is_or_was_cancelled_by", - "path": "modules/slots/is_or_was_cancelled_by.yaml", - "category": "slot" - }, - { - "name": "is_or_was_cataloged_in", - "path": "modules/slots/is_or_was_cataloged_in.yaml", - "category": "slot" - }, - { - "name": "is_or_was_categorized_as", - "path": "modules/slots/is_or_was_categorized_as.yaml", - "category": "slot" - }, - { - "name": "is_or_was_caused_by", - "path": "modules/slots/is_or_was_caused_by.yaml", - "category": "slot" - }, - { - "name": "is_or_was_ceased_by", - "path": "modules/slots/is_or_was_ceased_by.yaml", - "category": "slot" - }, - { - "name": "is_or_was_checked_through", - "path": "modules/slots/is_or_was_checked_through.yaml", - "category": "slot" - }, - { - "name": "is_or_was_classified_as", - "path": "modules/slots/is_or_was_classified_as.yaml", - "category": "slot" - }, - { - "name": "is_or_was_collection_of", - "path": "modules/slots/is_or_was_collection_of.yaml", - "category": "slot" - }, - { - "name": "is_or_was_compatible_with", - "path": "modules/slots/is_or_was_compatible_with.yaml", - "category": "slot" - }, - { - "name": "is_or_was_conducted_by", - "path": "modules/slots/is_or_was_conducted_by.yaml", - "category": "slot" - }, - { - "name": "is_or_was_created_by", - "path": "modules/slots/is_or_was_created_by.yaml", - "category": "slot" - }, - { - "name": "is_or_was_created_through", - "path": "modules/slots/is_or_was_created_through.yaml", - "category": "slot" - }, - { - "name": "is_or_was_curated_through", - "path": "modules/slots/is_or_was_curated_through.yaml", - "category": "slot" - }, - { - "name": "is_or_was_current", - "path": "modules/slots/is_or_was_current.yaml", - "category": "slot" - }, - { - "name": "is_or_was_decommissioned_at", - "path": "modules/slots/is_or_was_decommissioned_at.yaml", - "category": "slot" - }, - { - "name": "is_or_was_deployed_at", - "path": "modules/slots/is_or_was_deployed_at.yaml", - "category": "slot" - }, - { - "name": "is_or_was_deposited_by", - "path": "modules/slots/is_or_was_deposited_by.yaml", - "category": "slot" - }, - { - "name": "is_or_was_derived_from", - "path": "modules/slots/is_or_was_derived_from.yaml", - "category": "slot" - }, - { - "name": "is_or_was_designed_by", - "path": "modules/slots/is_or_was_designed_by.yaml", - "category": "slot" - }, - { - "name": "is_or_was_diarized", - "path": "modules/slots/is_or_was_diarized.yaml", - "category": "slot" - }, - { - "name": "is_or_was_dismissed", - "path": "modules/slots/is_or_was_dismissed.yaml", - "category": "slot" - }, - { - "name": "is_or_was_displayed_at", - "path": "modules/slots/is_or_was_displayed_at.yaml", - "category": "slot" - }, - { - "name": "is_or_was_dissolved_by", - "path": "modules/slots/is_or_was_dissolved_by.yaml", - "category": "slot" - }, - { - "name": "is_or_was_documented_by", - "path": "modules/slots/is_or_was_documented_by.yaml", - "category": "slot" - }, - { - "name": "is_or_was_documented_in", - "path": "modules/slots/is_or_was_documented_in.yaml", - "category": "slot" - }, - { - "name": "is_or_was_due_on", - "path": "modules/slots/is_or_was_due_on.yaml", - "category": "slot" - }, - { - "name": "is_or_was_edited_by", - "path": "modules/slots/is_or_was_edited_by.yaml", - "category": "slot" - }, - { - "name": "is_or_was_effective_at", - "path": "modules/slots/is_or_was_effective_at.yaml", - "category": "slot" - }, - { - "name": "is_or_was_employed_by", - "path": "modules/slots/is_or_was_employed_by.yaml", - "category": "slot" - }, - { - "name": "is_or_was_encompassed_by", - "path": "modules/slots/is_or_was_encompassed_by.yaml", - "category": "slot" - }, - { - "name": "is_or_was_equivalent_to", - "path": "modules/slots/is_or_was_equivalent_to.yaml", - "category": "slot" - }, - { - "name": "is_or_was_established_by", - "path": "modules/slots/is_or_was_established_by.yaml", - "category": "slot" - }, - { - "name": "is_or_was_exhibited_at", - "path": "modules/slots/is_or_was_exhibited_at.yaml", - "category": "slot" - }, - { - "name": "is_or_was_expired_at", - "path": "modules/slots/is_or_was_expired_at.yaml", - "category": "slot" - }, - { - "name": "is_or_was_exposed_via", - "path": "modules/slots/is_or_was_exposed_via.yaml", - "category": "slot" - }, - { - "name": "is_or_was_extended", - "path": "modules/slots/is_or_was_extended.yaml", - "category": "slot" - }, - { - "name": "is_or_was_extracted_using", - "path": "modules/slots/is_or_was_extracted_using.yaml", - "category": "slot" - }, - { - "name": "is_or_was_founded_through", - "path": "modules/slots/is_or_was_founded_through.yaml", - "category": "slot" - }, - { - "name": "is_or_was_generated_by", - "path": "modules/slots/is_or_was_generated_by.yaml", - "category": "slot" - }, - { - "name": "is_or_was_governed_by", - "path": "modules/slots/is_or_was_governed_by.yaml", - "category": "slot" - }, - { - "name": "is_or_was_identified_through", - "path": "modules/slots/is_or_was_identified_through.yaml", - "category": "slot" - }, - { - "name": "is_or_was_implemented_by", - "path": "modules/slots/is_or_was_implemented_by.yaml", - "category": "slot" - }, - { - "name": "is_or_was_included_in", - "path": "modules/slots/is_or_was_included_in.yaml", - "category": "slot" - }, - { - "name": "is_or_was_indexed", - "path": "modules/slots/is_or_was_indexed.yaml", - "category": "slot" - }, - { - "name": "is_or_was_instance_of", - "path": "modules/slots/is_or_was_instance_of.yaml", - "category": "slot" - }, - { - "name": "is_or_was_instantiated_as", - "path": "modules/slots/is_or_was_instantiated_as.yaml", - "category": "slot" - }, - { - "name": "is_or_was_instantiated_by", - "path": "modules/slots/is_or_was_instantiated_by.yaml", - "category": "slot" - }, - { - "name": "is_or_was_involved_in", - "path": "modules/slots/is_or_was_involved_in.yaml", - "category": "slot" - }, - { - "name": "is_or_was_last_updated_at", - "path": "modules/slots/is_or_was_last_updated_at.yaml", - "category": "slot" - }, - { - "name": "is_or_was_listed_in", - "path": "modules/slots/is_or_was_listed_in.yaml", - "category": "slot" - }, - { - "name": "is_or_was_located_in", - "path": "modules/slots/is_or_was_located_in.yaml", - "category": "slot" - }, - { - "name": "is_or_was_located_within", - "path": "modules/slots/is_or_was_located_within.yaml", - "category": "slot" - }, - { - "name": "is_or_was_location_of", - "path": "modules/slots/is_or_was_location_of.yaml", - "category": "slot" - }, - { - "name": "is_or_was_managed_by", - "path": "modules/slots/is_or_was_managed_by.yaml", - "category": "slot" - }, - { - "name": "is_or_was_member_of", - "path": "modules/slots/is_or_was_member_of.yaml", - "category": "slot" - }, - { - "name": "is_or_was_observed_by", - "path": "modules/slots/is_or_was_observed_by.yaml", - "category": "slot" - }, - { - "name": "is_or_was_opened_on", - "path": "modules/slots/is_or_was_opened_on.yaml", - "category": "slot" - }, - { - "name": "is_or_was_operated_by", - "path": "modules/slots/is_or_was_operated_by.yaml", - "category": "slot" - }, - { - "name": "is_or_was_part_of", - "path": "modules/slots/is_or_was_part_of.yaml", - "category": "slot" - }, - { - "name": "is_or_was_part_of_archive_series", - "path": "modules/slots/is_or_was_part_of_archive_series.yaml", - "category": "slot" - }, - { - "name": "is_or_was_part_of_total", - "path": "modules/slots/is_or_was_part_of_total.yaml", - "category": "slot" - }, - { - "name": "is_or_was_platform_of", - "path": "modules/slots/is_or_was_platform_of.yaml", - "category": "slot" - }, - { - "name": "is_or_was_position", - "path": "modules/slots/is_or_was_position.yaml", - "category": "slot" - }, - { - "name": "is_or_was_published", - "path": "modules/slots/is_or_was_published.yaml", - "category": "slot" - }, - { - "name": "is_or_was_published_at", - "path": "modules/slots/is_or_was_published_at.yaml", - "category": "slot" - }, - { - "name": "is_or_was_published_by", - "path": "modules/slots/is_or_was_published_by.yaml", - "category": "slot" - }, - { - "name": "is_or_was_recombined", - "path": "modules/slots/is_or_was_recombined.yaml", - "category": "slot" - }, - { - "name": "is_or_was_related_to", - "path": "modules/slots/is_or_was_related_to.yaml", - "category": "slot" - }, - { - "name": "is_or_was_represented_by", - "path": "modules/slots/is_or_was_represented_by.yaml", - "category": "slot" - }, - { - "name": "is_or_was_required", - "path": "modules/slots/is_or_was_required.yaml", - "category": "slot" - }, - { - "name": "is_or_was_responsible_for", - "path": "modules/slots/is_or_was_responsible_for.yaml", - "category": "slot" - }, - { - "name": "is_or_was_retrieved_at", - "path": "modules/slots/is_or_was_retrieved_at.yaml", - "category": "slot" - }, - { - "name": "is_or_was_retrieved_by", - "path": "modules/slots/is_or_was_retrieved_by.yaml", - "category": "slot" - }, - { - "name": "is_or_was_retrieved_through", - "path": "modules/slots/is_or_was_retrieved_through.yaml", - "category": "slot" - }, - { - "name": "is_or_was_returned", - "path": "modules/slots/is_or_was_returned.yaml", - "category": "slot" - }, - { - "name": "is_or_was_revision_of", - "path": "modules/slots/is_or_was_revision_of.yaml", - "category": "slot" - }, - { - "name": "is_or_was_signed_at", - "path": "modules/slots/is_or_was_signed_at.yaml", - "category": "slot" - }, - { - "name": "is_or_was_signed_on", - "path": "modules/slots/is_or_was_signed_on.yaml", - "category": "slot" - }, - { - "name": "is_or_was_stored_at", - "path": "modules/slots/is_or_was_stored_at.yaml", - "category": "slot" - }, - { - "name": "is_or_was_sub_collection_of", - "path": "modules/slots/is_or_was_sub_collection_of.yaml", - "category": "slot" - }, - { - "name": "is_or_was_suborganization_of", - "path": "modules/slots/is_or_was_suborganization_of.yaml", - "category": "slot" - }, - { - "name": "is_or_was_succeeded_by", - "path": "modules/slots/is_or_was_succeeded_by.yaml", - "category": "slot" - }, - { - "name": "is_or_was_superseded_by", - "path": "modules/slots/is_or_was_superseded_by.yaml", - "category": "slot" - }, - { - "name": "is_or_was_targeted_at", - "path": "modules/slots/is_or_was_targeted_at.yaml", - "category": "slot" - }, - { - "name": "is_or_was_tax_deductible", - "path": "modules/slots/is_or_was_tax_deductible.yaml", - "category": "slot" - }, - { - "name": "is_or_was_temporarily_located_at", - "path": "modules/slots/is_or_was_temporarily_located_at.yaml", - "category": "slot" - }, - { - "name": "is_or_was_threatened_by", - "path": "modules/slots/is_or_was_threatened_by.yaml", - "category": "slot" - }, - { - "name": "is_or_was_transferred", - "path": "modules/slots/is_or_was_transferred.yaml", - "category": "slot" - }, - { - "name": "is_or_was_transferred_to", - "path": "modules/slots/is_or_was_transferred_to.yaml", - "category": "slot" - }, - { - "name": "is_or_was_triggered_by", - "path": "modules/slots/is_or_was_triggered_by.yaml", - "category": "slot" - }, - { - "name": "is_or_was_used_by", - "path": "modules/slots/is_or_was_used_by.yaml", - "category": "slot" - }, - { - "name": "is_or_was_used_in", - "path": "modules/slots/is_or_was_used_in.yaml", - "category": "slot" - }, - { - "name": "is_or_was_verified_by", - "path": "modules/slots/is_or_was_verified_by.yaml", - "category": "slot" - }, - { - "name": "is_or_was_visible_in", - "path": "modules/slots/is_or_was_visible_in.yaml", - "category": "slot" - }, - { - "name": "is_or_was_webarchived_at", - "path": "modules/slots/is_or_was_webarchived_at.yaml", - "category": "slot" - }, - { - "name": "is_overlapping", - "path": "modules/slots/is_overlapping.yaml", - "category": "slot" - }, - { - "name": "is_part_of_complex", - "path": "modules/slots/is_part_of_complex.yaml", - "category": "slot" - }, - { - "name": "is_permanent", - "path": "modules/slots/is_permanent.yaml", - "category": "slot" - }, - { - "name": "is_permitted", - "path": "modules/slots/is_permitted.yaml", - "category": "slot" - }, - { - "name": "is_primary_digital_presence", - "path": "modules/slots/is_primary_digital_presence.yaml", - "category": "slot" - }, - { - "name": "is_public_facing", - "path": "modules/slots/is_public_facing.yaml", - "category": "slot" - }, - { - "name": "is_rebuilding", - "path": "modules/slots/is_rebuilding.yaml", - "category": "slot" - }, - { - "name": "is_recognized", - "path": "modules/slots/is_recognized.yaml", - "category": "slot" - }, - { - "name": "is_recurring", - "path": "modules/slots/is_recurring.yaml", - "category": "slot" - }, - { - "name": "is_sdh", - "path": "modules/slots/is_sdh.yaml", - "category": "slot" - }, - { - "name": "is_sub_guide", - "path": "modules/slots/is_sub_guide.yaml", - "category": "slot" - }, - { - "name": "is_temporary", - "path": "modules/slots/is_temporary.yaml", - "category": "slot" - }, - { - "name": "is_type_specimen", - "path": "modules/slots/is_type_specimen.yaml", - "category": "slot" - }, - { - "name": "is_verified", - "path": "modules/slots/is_verified.yaml", - "category": "slot" - }, - { - "name": "isbn", - "path": "modules/slots/isbn.yaml", - "category": "slot" - }, - { - "name": "isbn_13", - "path": "modules/slots/isbn_13.yaml", - "category": "slot" - }, - { - "name": "isil", - "path": "modules/slots/isil.yaml", - "category": "slot" - }, - { - "name": "iso_3166_2_code", - "path": "modules/slots/iso_3166_2_code.yaml", - "category": "slot" - }, - { - "name": "iso_standard", - "path": "modules/slots/iso_standard.yaml", - "category": "slot" - }, - { - "name": "iso_standard_reference", - "path": "modules/slots/iso_standard_reference.yaml", - "category": "slot" - }, - { - "name": "issn", - "path": "modules/slots/issn.yaml", - "category": "slot" - }, - { - "name": "issued_call", - "path": "modules/slots/issued_call.yaml", - "category": "slot" - }, - { - "name": "issuing_organisation", - "path": "modules/slots/issuing_organisation.yaml", - "category": "slot" - }, - { - "name": "item", - "path": "modules/slots/item.yaml", - "category": "slot" - }, - { - "name": "item_returned", - "path": "modules/slots/item_returned.yaml", - "category": "slot" - }, - { - "name": "iucn_status", - "path": "modules/slots/iucn_status.yaml", - "category": "slot" - }, - { - "name": "jurisdiction", - "path": "modules/slots/jurisdiction.yaml", - "category": "slot" - }, - { - "name": "jurisdiction_id", - "path": "modules/slots/jurisdiction_id.yaml", - "category": "slot" - }, - { - "name": "jurisdiction_level", - "path": "modules/slots/jurisdiction_level.yaml", - "category": "slot" - }, - { - "name": "jurisdiction_type", - "path": "modules/slots/jurisdiction_type.yaml", - "category": "slot" - }, - { - "name": "justification", - "path": "modules/slots/justification.yaml", - "category": "slot" - }, - { - "name": "key_distinction", - "path": "modules/slots/key_distinction.yaml", - "category": "slot" - }, - { - "name": "keyframe_extraction", - "path": "modules/slots/keyframe_extraction.yaml", - "category": "slot" - }, - { - "name": "keyword", - "path": "modules/slots/keyword.yaml", - "category": "slot" - }, - { - "name": "kien_registration_date", - "path": "modules/slots/kien_registration_date.yaml", - "category": "slot" - }, - { - "name": "kien_url", - "path": "modules/slots/kien_url.yaml", - "category": "slot" - }, - { - "name": "knowledge_transmission", - "path": "modules/slots/knowledge_transmission.yaml", - "category": "slot" - }, - { - "name": "label_de", - "path": "modules/slots/label_de.yaml", - "category": "slot" - }, - { - "name": "label_es", - "path": "modules/slots/label_es.yaml", - "category": "slot" - }, - { - "name": "label_fr", - "path": "modules/slots/label_fr.yaml", - "category": "slot" - }, - { - "name": "label_it", - "path": "modules/slots/label_it.yaml", - "category": "slot" - }, - { - "name": "label_nl", - "path": "modules/slots/label_nl.yaml", - "category": "slot" - }, - { - "name": "label_pt", - "path": "modules/slots/label_pt.yaml", - "category": "slot" - }, - { - "name": "lacks_or_lacked", - "path": "modules/slots/lacks_or_lacked.yaml", - "category": "slot" - }, - { - "name": "landmark_confidence", - "path": "modules/slots/landmark_confidence.yaml", - "category": "slot" - }, - { - "name": "landmark_geonames_id", - "path": "modules/slots/landmark_geonames_id.yaml", - "category": "slot" - }, - { - "name": "landmark_label", - "path": "modules/slots/landmark_label.yaml", - "category": "slot" - }, - { - "name": "landmark_segment", - "path": "modules/slots/landmark_segment.yaml", - "category": "slot" - }, - { - "name": "landmark_wikidata_id", - "path": "modules/slots/landmark_wikidata_id.yaml", - "category": "slot" - }, - { - "name": "language", - "path": "modules/slots/language.yaml", - "category": "slot" - }, - { - "name": "language_code", - "path": "modules/slots/language_code.yaml", - "category": "slot" - }, - { - "name": "language_name", - "path": "modules/slots/language_name.yaml", - "category": "slot" - }, - { - "name": "language_raw", - "path": "modules/slots/language_raw.yaml", - "category": "slot" - }, - { - "name": "languages_detected", - "path": "modules/slots/languages_detected.yaml", - "category": "slot" - }, - { - "name": "languages_raw", - "path": "modules/slots/languages_raw.yaml", - "category": "slot" - }, - { - "name": "last_modified", - "path": "modules/slots/last_modified.yaml", - "category": "slot" - }, - { - "name": "latency_ms", - "path": "modules/slots/latency_ms.yaml", - "category": "slot" - }, - { - "name": "latitude", - "path": "modules/slots/latitude.yaml", - "category": "slot" - }, - { - "name": "launch_date", - "path": "modules/slots/launch_date.yaml", - "category": "slot" - }, - { - "name": "lease_expiry", - "path": "modules/slots/lease_expiry.yaml", - "category": "slot" - }, - { - "name": "legacy_planning", - "path": "modules/slots/legacy_planning.yaml", - "category": "slot" - }, - { - "name": "legal_basis", - "path": "modules/slots/legal_basis.yaml", - "category": "slot" - }, - { - "name": "legal_entity_type", - "path": "modules/slots/legal_entity_type.yaml", - "category": "slot" - }, - { - "name": "legal_form", - "path": "modules/slots/legal_form.yaml", - "category": "slot" - }, - { - "name": "legal_jurisdiction", - "path": "modules/slots/legal_jurisdiction.yaml", - "category": "slot" - }, - { - "name": "legal_name", - "path": "modules/slots/legal_name.yaml", - "category": "slot" - }, - { - "name": "legal_note", - "path": "modules/slots/legal_note.yaml", - "category": "slot" - }, - { - "name": "legal_provenance_note", - "path": "modules/slots/legal_provenance_note.yaml", - "category": "slot" - }, - { - "name": "legal_responsibility_basis", - "path": "modules/slots/legal_responsibility_basis.yaml", - "category": "slot" - }, - { - "name": "legal_responsibility_end_date", - "path": "modules/slots/legal_responsibility_end_date.yaml", - "category": "slot" - }, - { - "name": "legal_responsibility_start_date", - "path": "modules/slots/legal_responsibility_start_date.yaml", - "category": "slot" - }, - { - "name": "legal_status", - "path": "modules/slots/legal_status.yaml", - "category": "slot" - }, - { - "name": "legal_system_type", - "path": "modules/slots/legal_system_type.yaml", - "category": "slot" - }, - { - "name": "lender", - "path": "modules/slots/lender.yaml", - "category": "slot" - }, - { - "name": "lender_contact", - "path": "modules/slots/lender_contact.yaml", - "category": "slot" - }, - { - "name": "lending_policy", - "path": "modules/slots/lending_policy.yaml", - "category": "slot" - }, - { - "name": "level_value", - "path": "modules/slots/level_value.yaml", - "category": "slot" - }, - { - "name": "library_catalog_url", - "path": "modules/slots/library_catalog_url.yaml", - "category": "slot" - }, - { - "name": "library_search_score", - "path": "modules/slots/library_search_score.yaml", - "category": "slot" - }, - { - "name": "library_subtype", - "path": "modules/slots/library_subtype.yaml", - "category": "slot" - }, - { - "name": "license", - "path": "modules/slots/license.yaml", - "category": "slot" - }, - { - "name": "life_stage", - "path": "modules/slots/life_stage.yaml", - "category": "slot" - }, - { - "name": "lifecycle_phase_type", - "path": "modules/slots/lifecycle_phase_type.yaml", - "category": "slot" - }, - { - "name": "light_max_lux", - "path": "modules/slots/light_max_lux.yaml", - "category": "slot" - }, - { - "name": "like_count", - "path": "modules/slots/like_count.yaml", - "category": "slot" - }, - { - "name": "likelihood_confidence", - "path": "modules/slots/likelihood_confidence.yaml", - "category": "slot" - }, - { - "name": "likelihood_factor", - "path": "modules/slots/likelihood_factor.yaml", - "category": "slot" - }, - { - "name": "likelihood_level", - "path": "modules/slots/likelihood_level.yaml", - "category": "slot" - }, - { - "name": "likelihood_score", - "path": "modules/slots/likelihood_score.yaml", - "category": "slot" - }, - { - "name": "likely_whatsapp_proficient", - "path": "modules/slots/likely_whatsapp_proficient.yaml", - "category": "slot" - }, - { - "name": "link_context", - "path": "modules/slots/link_context.yaml", - "category": "slot" - }, - { - "name": "link_count", - "path": "modules/slots/link_count.yaml", - "category": "slot" - }, - { - "name": "link_rationale", - "path": "modules/slots/link_rationale.yaml", - "category": "slot" - }, - { - "name": "link_text", - "path": "modules/slots/link_text.yaml", - "category": "slot" - }, - { - "name": "link_type", - "path": "modules/slots/link_type.yaml", - "category": "slot" - }, - { - "name": "link_url", - "path": "modules/slots/link_url.yaml", - "category": "slot" - }, - { - "name": "linked_class_name", - "path": "modules/slots/linked_class_name.yaml", - "category": "slot" - }, - { - "name": "linked_data", - "path": "modules/slots/linked_data.yaml", - "category": "slot" - }, - { - "name": "linked_data_access", - "path": "modules/slots/linked_data_access.yaml", - "category": "slot" - }, - { - "name": "linked_data_export", - "path": "modules/slots/linked_data_export.yaml", - "category": "slot" - }, - { - "name": "linked_to_collection", - "path": "modules/slots/linked_to_collection.yaml", - "category": "slot" - }, - { - "name": "linkedin_profile_path", - "path": "modules/slots/linkedin_profile_path.yaml", - "category": "slot" - }, - { - "name": "linkedin_profile_url", - "path": "modules/slots/linkedin_profile_url.yaml", - "category": "slot" - }, - { - "name": "linkedin_url", - "path": "modules/slots/linkedin_url.yaml", - "category": "slot" - }, - { - "name": "list_item", - "path": "modules/slots/list_item.yaml", - "category": "slot" - }, - { - "name": "literal_name", - "path": "modules/slots/literal_name.yaml", - "category": "slot" - }, - { - "name": "live_broadcast_content", - "path": "modules/slots/live_broadcast_content.yaml", - "category": "slot" - }, - { - "name": "living_collection", - "path": "modules/slots/living_collection.yaml", - "category": "slot" - }, - { - "name": "llm_response", - "path": "modules/slots/llm_response.yaml", - "category": "slot" - }, - { - "name": "loan_agreement_url", - "path": "modules/slots/loan_agreement_url.yaml", - "category": "slot" - }, - { - "name": "loan_end_date", - "path": "modules/slots/loan_end_date.yaml", - "category": "slot" - }, - { - "name": "loan_history", - "path": "modules/slots/loan_history.yaml", - "category": "slot" - }, - { - "name": "loan_id", - "path": "modules/slots/loan_id.yaml", - "category": "slot" - }, - { - "name": "loan_note", - "path": "modules/slots/loan_note.yaml", - "category": "slot" - }, - { - "name": "loan_number", - "path": "modules/slots/loan_number.yaml", - "category": "slot" - }, - { - "name": "loan_purpose", - "path": "modules/slots/loan_purpose.yaml", - "category": "slot" - }, - { - "name": "loan_start_date", - "path": "modules/slots/loan_start_date.yaml", - "category": "slot" - }, - { - "name": "loan_status", - "path": "modules/slots/loan_status.yaml", - "category": "slot" - }, - { - "name": "loan_timespan", - "path": "modules/slots/loan_timespan.yaml", - "category": "slot" - }, - { - "name": "loan_type", - "path": "modules/slots/loan_type.yaml", - "category": "slot" - }, - { - "name": "locality", - "path": "modules/slots/locality.yaml", + "name": "listed_in", + "path": "modules/slots/listed_in.yaml", "category": "slot" }, { @@ -11328,53 +10088,13 @@ "category": "slot" }, { - "name": "location", - "path": "modules/slots/location.yaml", + "name": "located_in", + "path": "modules/slots/located_in.yaml", "category": "slot" }, { - "name": "location_browse_score", - "path": "modules/slots/location_browse_score.yaml", - "category": "slot" - }, - { - "name": "location_name", - "path": "modules/slots/location_name.yaml", - "category": "slot" - }, - { - "name": "logo_confidence", - "path": "modules/slots/logo_confidence.yaml", - "category": "slot" - }, - { - "name": "logo_label", - "path": "modules/slots/logo_label.yaml", - "category": "slot" - }, - { - "name": "logo_organization", - "path": "modules/slots/logo_organization.yaml", - "category": "slot" - }, - { - "name": "logo_segment", - "path": "modules/slots/logo_segment.yaml", - "category": "slot" - }, - { - "name": "long_name", - "path": "modules/slots/long_name.yaml", - "category": "slot" - }, - { - "name": "longitude", - "path": "modules/slots/longitude.yaml", - "category": "slot" - }, - { - "name": "lot_number", - "path": "modules/slots/lot_number.yaml", + "name": "location_of", + "path": "modules/slots/location_of.yaml", "category": "slot" }, { @@ -11383,18 +10103,8 @@ "category": "slot" }, { - "name": "maintenance_schedule", - "path": "modules/slots/maintenance_schedule.yaml", - "category": "slot" - }, - { - "name": "major_city", - "path": "modules/slots/major_city.yaml", - "category": "slot" - }, - { - "name": "major_research_project", - "path": "modules/slots/major_research_project.yaml", + "name": "manage", + "path": "modules/slots/manage.yaml", "category": "slot" }, { @@ -11403,103 +10113,38 @@ "category": "slot" }, { - "name": "manages_collection", - "path": "modules/slots/manages_collection.yaml", + "name": "mandatory", + "path": "modules/slots/mandatory.yaml", "category": "slot" }, { - "name": "manages_or_managed", - "path": "modules/slots/manages_or_managed.yaml", + "name": "martyred_through", + "path": "modules/slots/martyred_through.yaml", "category": "slot" }, { - "name": "managing_unit", - "path": "modules/slots/managing_unit.yaml", + "name": "mask", + "path": "modules/slots/mask.yaml", "category": "slot" }, { - "name": "mandate", - "path": "modules/slots/mandate.yaml", + "name": "maximum_of_maximum", + "path": "modules/slots/maximum_of_maximum.yaml", "category": "slot" }, { - "name": "marginalia", - "path": "modules/slots/marginalia.yaml", + "name": "measure", + "path": "modules/slots/measure.yaml", "category": "slot" }, { - "name": "martyred", - "path": "modules/slots/martyred.yaml", + "name": "measured_on", + "path": "modules/slots/measured_on.yaml", "category": "slot" }, { - "name": "material_composition", - "path": "modules/slots/material_composition.yaml", - "category": "slot" - }, - { - "name": "material_specialization", - "path": "modules/slots/material_specialization.yaml", - "category": "slot" - }, - { - "name": "materials_used", - "path": "modules/slots/materials_used.yaml", - "category": "slot" - }, - { - "name": "max_annual_light_exposure", - "path": "modules/slots/max_annual_light_exposure.yaml", - "category": "slot" - }, - { - "name": "max_group_size", - "path": "modules/slots/max_group_size.yaml", - "category": "slot" - }, - { - "name": "max_light_lux", - "path": "modules/slots/max_light_lux.yaml", - "category": "slot" - }, - { - "name": "max_likelihood_score", - "path": "modules/slots/max_likelihood_score.yaml", - "category": "slot" - }, - { - "name": "maximal_of_maximal", - "path": "modules/slots/maximal_of_maximal.yaml", - "category": "slot" - }, - { - "name": "maximum_amount", - "path": "modules/slots/maximum_amount.yaml", - "category": "slot" - }, - { - "name": "measurement_data", - "path": "modules/slots/measurement_data.yaml", - "category": "slot" - }, - { - "name": "measurement_date", - "path": "modules/slots/measurement_date.yaml", - "category": "slot" - }, - { - "name": "measurement_method", - "path": "modules/slots/measurement_method.yaml", - "category": "slot" - }, - { - "name": "measures_or_measured", - "path": "modules/slots/measures_or_measured.yaml", - "category": "slot" - }, - { - "name": "medium", - "path": "modules/slots/medium.yaml", + "name": "measured_through", + "path": "modules/slots/measured_through.yaml", "category": "slot" }, { @@ -11508,498 +10153,23 @@ "category": "slot" }, { - "name": "member_organization_name", - "path": "modules/slots/member_organization_name.yaml", + "name": "minimum_of_minimum", + "path": "modules/slots/minimum_of_minimum.yaml", "category": "slot" }, { - "name": "member_organization_url", - "path": "modules/slots/member_organization_url.yaml", + "name": "nested_in", + "path": "modules/slots/nested_in.yaml", "category": "slot" }, { - "name": "membership_criteria", - "path": "modules/slots/membership_criteria.yaml", + "name": "observe", + "path": "modules/slots/observe.yaml", "category": "slot" }, { - "name": "membership_id", - "path": "modules/slots/membership_id.yaml", - "category": "slot" - }, - { - "name": "membership_required", - "path": "modules/slots/membership_required.yaml", - "category": "slot" - }, - { - "name": "membership_role", - "path": "modules/slots/membership_role.yaml", - "category": "slot" - }, - { - "name": "membership_size", - "path": "modules/slots/membership_size.yaml", - "category": "slot" - }, - { - "name": "membership_type", - "path": "modules/slots/membership_type.yaml", - "category": "slot" - }, - { - "name": "metadata_standard", - "path": "modules/slots/metadata_standard.yaml", - "category": "slot" - }, - { - "name": "method", - "path": "modules/slots/method.yaml", - "category": "slot" - }, - { - "name": "methodology_type", - "path": "modules/slots/methodology_type.yaml", - "category": "slot" - }, - { - "name": "metrics_observed_at", - "path": "modules/slots/metrics_observed_at.yaml", - "category": "slot" - }, - { - "name": "metrics_observed_date", - "path": "modules/slots/metrics_observed_date.yaml", - "category": "slot" - }, - { - "name": "michelin_star", - "path": "modules/slots/michelin_star.yaml", - "category": "slot" - }, - { - "name": "minimal_of_minimal", - "path": "modules/slots/minimal_of_minimal.yaml", - "category": "slot" - }, - { - "name": "minimum_amount", - "path": "modules/slots/minimum_amount.yaml", - "category": "slot" - }, - { - "name": "minimum_donation", - "path": "modules/slots/minimum_donation.yaml", - "category": "slot" - }, - { - "name": "minimum_partner", - "path": "modules/slots/minimum_partner.yaml", - "category": "slot" - }, - { - "name": "mission_statement", - "path": "modules/slots/mission_statement.yaml", - "category": "slot" - }, - { - "name": "mixed_governance_structure", - "path": "modules/slots/mixed_governance_structure.yaml", - "category": "slot" - }, - { - "name": "model", - "path": "modules/slots/model.yaml", - "category": "slot" - }, - { - "name": "model_architecture", - "path": "modules/slots/model_architecture.yaml", - "category": "slot" - }, - { - "name": "model_provider", - "path": "modules/slots/model_provider.yaml", - "category": "slot" - }, - { - "name": "model_task", - "path": "modules/slots/model_task.yaml", - "category": "slot" - }, - { - "name": "model_version", - "path": "modules/slots/model_version.yaml", - "category": "slot" - }, - { - "name": "modern_place_name", - "path": "modules/slots/modern_place_name.yaml", - "category": "slot" - }, - { - "name": "modified", - "path": "modules/slots/modified.yaml", - "category": "slot" - }, - { - "name": "monitoring_platform", - "path": "modules/slots/monitoring_platform.yaml", - "category": "slot" - }, - { - "name": "monitoring_platform_url", - "path": "modules/slots/monitoring_platform_url.yaml", - "category": "slot" - }, - { - "name": "monument_number", - "path": "modules/slots/monument_number.yaml", - "category": "slot" - }, - { - "name": "motivation_type_description", - "path": "modules/slots/motivation_type_description.yaml", - "category": "slot" - }, - { - "name": "motivation_type_id", - "path": "modules/slots/motivation_type_id.yaml", - "category": "slot" - }, - { - "name": "motivation_type_name", - "path": "modules/slots/motivation_type_name.yaml", - "category": "slot" - }, - { - "name": "multilingual_label", - "path": "modules/slots/multilingual_label.yaml", - "category": "slot" - }, - { - "name": "museum_search_score", - "path": "modules/slots/museum_search_score.yaml", - "category": "slot" - }, - { - "name": "museum_subtype", - "path": "modules/slots/museum_subtype.yaml", - "category": "slot" - }, - { - "name": "museum_type_classification", - "path": "modules/slots/museum_type_classification.yaml", - "category": "slot" - }, - { - "name": "music_confidence", - "path": "modules/slots/music_confidence.yaml", - "category": "slot" - }, - { - "name": "music_detected", - "path": "modules/slots/music_detected.yaml", - "category": "slot" - }, - { - "name": "music_end_seconds", - "path": "modules/slots/music_end_seconds.yaml", - "category": "slot" - }, - { - "name": "music_genre", - "path": "modules/slots/music_genre.yaml", - "category": "slot" - }, - { - "name": "music_genres_detected", - "path": "modules/slots/music_genres_detected.yaml", - "category": "slot" - }, - { - "name": "music_segment_confidence", - "path": "modules/slots/music_segment_confidence.yaml", - "category": "slot" - }, - { - "name": "music_start_seconds", - "path": "modules/slots/music_start_seconds.yaml", - "category": "slot" - }, - { - "name": "music_type", - "path": "modules/slots/music_type.yaml", - "category": "slot" - }, - { - "name": "mutual_connections_text", - "path": "modules/slots/mutual_connections_text.yaml", - "category": "slot" - }, - { - "name": "name", - "path": "modules/slots/name.yaml", - "category": "slot" - }, - { - "name": "name_authority", - "path": "modules/slots/name_authority.yaml", - "category": "slot" - }, - { - "name": "name_language", - "path": "modules/slots/name_language.yaml", - "category": "slot" - }, - { - "name": "name_local", - "path": "modules/slots/name_local.yaml", - "category": "slot" - }, - { - "name": "name_specification", - "path": "modules/slots/name_specification.yaml", - "category": "slot" - }, - { - "name": "name_type", - "path": "modules/slots/name_type.yaml", - "category": "slot" - }, - { - "name": "name_validity_period", - "path": "modules/slots/name_validity_period.yaml", - "category": "slot" - }, - { - "name": "narrower_concept", - "path": "modules/slots/narrower_concept.yaml", - "category": "slot" - }, - { - "name": "narrower_type", - "path": "modules/slots/narrower_type.yaml", - "category": "slot" - }, - { - "name": "nazi_era_flag", - "path": "modules/slots/nazi_era_flag.yaml", - "category": "slot" - }, - { - "name": "nesting_level", - "path": "modules/slots/nesting_level.yaml", - "category": "slot" - }, - { - "name": "network_analysis", - "path": "modules/slots/network_analysis.yaml", - "category": "slot" - }, - { - "name": "nl", - "path": "modules/slots/nl.yaml", - "category": "slot" - }, - { - "name": "no_fabrication", - "path": "modules/slots/no_fabrication.yaml", - "category": "slot" - }, - { - "name": "noise_floor_db", - "path": "modules/slots/noise_floor_db.yaml", - "category": "slot" - }, - { - "name": "nomenclatural_code", - "path": "modules/slots/nomenclatural_code.yaml", - "category": "slot" - }, - { - "name": "nonprofit_subtype", - "path": "modules/slots/nonprofit_subtype.yaml", - "category": "slot" - }, - { - "name": "notable_examples", - "path": "modules/slots/notable_examples.yaml", - "category": "slot" - }, - { - "name": "notarial_deed_number", - "path": "modules/slots/notarial_deed_number.yaml", - "category": "slot" - }, - { - "name": "notary_name", - "path": "modules/slots/notary_name.yaml", - "category": "slot" - }, - { - "name": "notary_office", - "path": "modules/slots/notary_office.yaml", - "category": "slot" - }, - { - "name": "note", - "path": "modules/slots/note.yaml", - "category": "slot" - }, - { - "name": "note_content", - "path": "modules/slots/note_content.yaml", - "category": "slot" - }, - { - "name": "note_date", - "path": "modules/slots/note_date.yaml", - "category": "slot" - }, - { - "name": "note_type", - "path": "modules/slots/note_type.yaml", - "category": "slot" - }, - { - "name": "numeric_value", - "path": "modules/slots/numeric_value.yaml", - "category": "slot" - }, - { - "name": "oai_pmh_endpoint", - "path": "modules/slots/oai_pmh_endpoint.yaml", - "category": "slot" - }, - { - "name": "object_alternate_name", - "path": "modules/slots/object_alternate_name.yaml", - "category": "slot" - }, - { - "name": "object_classes_detected", - "path": "modules/slots/object_classes_detected.yaml", - "category": "slot" - }, - { - "name": "object_collection_id", - "path": "modules/slots/object_collection_id.yaml", - "category": "slot" - }, - { - "name": "object_confidence", - "path": "modules/slots/object_confidence.yaml", - "category": "slot" - }, - { - "name": "object_description", - "path": "modules/slots/object_description.yaml", - "category": "slot" - }, - { - "name": "object_id", - "path": "modules/slots/object_id.yaml", - "category": "slot" - }, - { - "name": "object_label", - "path": "modules/slots/object_label.yaml", - "category": "slot" - }, - { - "name": "object_name", - "path": "modules/slots/object_name.yaml", - "category": "slot" - }, - { - "name": "object_ref", - "path": "modules/slots/object_ref.yaml", - "category": "slot" - }, - { - "name": "object_segment", - "path": "modules/slots/object_segment.yaml", - "category": "slot" - }, - { - "name": "object_type", - "path": "modules/slots/object_type.yaml", - "category": "slot" - }, - { - "name": "object_wikidata_id", - "path": "modules/slots/object_wikidata_id.yaml", - "category": "slot" - }, - { - "name": "objective", - "path": "modules/slots/objective.yaml", - "category": "slot" - }, - { - "name": "objects_added", - "path": "modules/slots/objects_added.yaml", - "category": "slot" - }, - { - "name": "objects_affected", - "path": "modules/slots/objects_affected.yaml", - "category": "slot" - }, - { - "name": "objects_count", - "path": "modules/slots/objects_count.yaml", - "category": "slot" - }, - { - "name": "objects_removed", - "path": "modules/slots/objects_removed.yaml", - "category": "slot" - }, - { - "name": "observation", - "path": "modules/slots/observation.yaml", - "category": "slot" - }, - { - "name": "observation_context", - "path": "modules/slots/observation_context.yaml", - "category": "slot" - }, - { - "name": "observation_date", - "path": "modules/slots/observation_date.yaml", - "category": "slot" - }, - { - "name": "observation_id", - "path": "modules/slots/observation_id.yaml", - "category": "slot" - }, - { - "name": "observation_note", - "path": "modules/slots/observation_note.yaml", - "category": "slot" - }, - { - "name": "observation_period", - "path": "modules/slots/observation_period.yaml", - "category": "slot" - }, - { - "name": "observation_ref", - "path": "modules/slots/observation_ref.yaml", - "category": "slot" - }, - { - "name": "observation_source", - "path": "modules/slots/observation_source.yaml", - "category": "slot" - }, - { - "name": "observed_entity", - "path": "modules/slots/observed_entity.yaml", + "name": "observed_by", + "path": "modules/slots/observed_by.yaml", "category": "slot" }, { @@ -12008,38 +10178,23 @@ "category": "slot" }, { - "name": "observed_name", - "path": "modules/slots/observed_name.yaml", + "name": "observed_through", + "path": "modules/slots/observed_through.yaml", "category": "slot" }, { - "name": "observer_affiliation", - "path": "modules/slots/observer_affiliation.yaml", + "name": "occur_at", + "path": "modules/slots/occur_at.yaml", "category": "slot" }, { - "name": "observer_name", - "path": "modules/slots/observer_name.yaml", + "name": "offer", + "path": "modules/slots/offer.yaml", "category": "slot" }, { - "name": "observer_type", - "path": "modules/slots/observer_type.yaml", - "category": "slot" - }, - { - "name": "occupation", - "path": "modules/slots/occupation.yaml", - "category": "slot" - }, - { - "name": "occurs_or_occurred_at", - "path": "modules/slots/occurs_or_occurred_at.yaml", - "category": "slot" - }, - { - "name": "oclc_number", - "path": "modules/slots/oclc_number.yaml", + "name": "offer_program", + "path": "modules/slots/offer_program.yaml", "category": "slot" }, { @@ -12047,39 +10202,14 @@ "path": "modules/slots/offered_by.yaml", "category": "slot" }, - { - "name": "offers_donation_scheme", - "path": "modules/slots/offers_donation_scheme.yaml", - "category": "slot" - }, - { - "name": "offers_or_offered", - "path": "modules/slots/offers_or_offered.yaml", - "category": "slot" - }, - { - "name": "offers_or_offered_access", - "path": "modules/slots/offers_or_offered_access.yaml", - "category": "slot" - }, - { - "name": "official_institution_subtype", - "path": "modules/slots/official_institution_subtype.yaml", - "category": "slot" - }, - { - "name": "online_shop", - "path": "modules/slots/online_shop.yaml", - "category": "slot" - }, { "name": "open_source", "path": "modules/slots/open_source.yaml", "category": "slot" }, { - "name": "opening_hour", - "path": "modules/slots/opening_hour.yaml", + "name": "operate", + "path": "modules/slots/operate.yaml", "category": "slot" }, { @@ -12088,73 +10218,13 @@ "category": "slot" }, { - "name": "operates_or_operated", - "path": "modules/slots/operates_or_operated.yaml", + "name": "opiniate", + "path": "modules/slots/opiniate.yaml", "category": "slot" }, { - "name": "operating_budget", - "path": "modules/slots/operating_budget.yaml", - "category": "slot" - }, - { - "name": "operating_hour", - "path": "modules/slots/operating_hour.yaml", - "category": "slot" - }, - { - "name": "operational_status", - "path": "modules/slots/operational_status.yaml", - "category": "slot" - }, - { - "name": "operator", - "path": "modules/slots/operator.yaml", - "category": "slot" - }, - { - "name": "organization_legal_form", - "path": "modules/slots/organization_legal_form.yaml", - "category": "slot" - }, - { - "name": "organization_name", - "path": "modules/slots/organization_name.yaml", - "category": "slot" - }, - { - "name": "organization_type", - "path": "modules/slots/organization_type.yaml", - "category": "slot" - }, - { - "name": "organizational_change_score", - "path": "modules/slots/organizational_change_score.yaml", - "category": "slot" - }, - { - "name": "organizational_level", - "path": "modules/slots/organizational_level.yaml", - "category": "slot" - }, - { - "name": "organizational_mission", - "path": "modules/slots/organizational_mission.yaml", - "category": "slot" - }, - { - "name": "organizational_principle", - "path": "modules/slots/organizational_principle.yaml", - "category": "slot" - }, - { - "name": "organizational_principle_uri", - "path": "modules/slots/organizational_principle_uri.yaml", - "category": "slot" - }, - { - "name": "organizational_structure", - "path": "modules/slots/organizational_structure.yaml", + "name": "organized_as", + "path": "modules/slots/organized_as.yaml", "category": "slot" }, { @@ -12163,38 +10233,8 @@ "category": "slot" }, { - "name": "organizing_body", - "path": "modules/slots/organizing_body.yaml", - "category": "slot" - }, - { - "name": "origin_location", - "path": "modules/slots/origin_location.yaml", - "category": "slot" - }, - { - "name": "origin_period", - "path": "modules/slots/origin_period.yaml", - "category": "slot" - }, - { - "name": "original_end_date", - "path": "modules/slots/original_end_date.yaml", - "category": "slot" - }, - { - "name": "originates_or_originated_from", - "path": "modules/slots/originates_or_originated_from.yaml", - "category": "slot" - }, - { - "name": "osm_id", - "path": "modules/slots/osm_id.yaml", - "category": "slot" - }, - { - "name": "outbound_condition_report_url", - "path": "modules/slots/outbound_condition_report_url.yaml", + "name": "originate_from", + "path": "modules/slots/originate_from.yaml", "category": "slot" }, { @@ -12203,243 +10243,23 @@ "category": "slot" }, { - "name": "outdoor_seating_capacity", - "path": "modules/slots/outdoor_seating_capacity.yaml", + "name": "overlap_with", + "path": "modules/slots/overlap_with.yaml", "category": "slot" }, { - "name": "outdoor_site_description", - "path": "modules/slots/outdoor_site_description.yaml", + "name": "owned_by", + "path": "modules/slots/owned_by.yaml", "category": "slot" }, { - "name": "outdoor_site_id", - "path": "modules/slots/outdoor_site_id.yaml", + "name": "part_of", + "path": "modules/slots/part_of.yaml", "category": "slot" }, { - "name": "outdoor_site_name", - "path": "modules/slots/outdoor_site_name.yaml", - "category": "slot" - }, - { - "name": "outdoor_site_type", - "path": "modules/slots/outdoor_site_type.yaml", - "category": "slot" - }, - { - "name": "overall_confidence", - "path": "modules/slots/overall_confidence.yaml", - "category": "slot" - }, - { - "name": "overall_status", - "path": "modules/slots/overall_status.yaml", - "category": "slot" - }, - { - "name": "oversight_jurisdiction", - "path": "modules/slots/oversight_jurisdiction.yaml", - "category": "slot" - }, - { - "name": "ownership_stamp", - "path": "modules/slots/ownership_stamp.yaml", - "category": "slot" - }, - { - "name": "page", - "path": "modules/slots/page.yaml", - "category": "slot" - }, - { - "name": "page_count", - "path": "modules/slots/page_count.yaml", - "category": "slot" - }, - { - "name": "page_section", - "path": "modules/slots/page_section.yaml", - "category": "slot" - }, - { - "name": "page_title", - "path": "modules/slots/page_title.yaml", - "category": "slot" - }, - { - "name": "paragraph_count", - "path": "modules/slots/paragraph_count.yaml", - "category": "slot" - }, - { - "name": "parallel_title", - "path": "modules/slots/parallel_title.yaml", - "category": "slot" - }, - { - "name": "parent_corporation", - "path": "modules/slots/parent_corporation.yaml", - "category": "slot" - }, - { - "name": "parent_department", - "path": "modules/slots/parent_department.yaml", - "category": "slot" - }, - { - "name": "parent_programme", - "path": "modules/slots/parent_programme.yaml", - "category": "slot" - }, - { - "name": "parent_society", - "path": "modules/slots/parent_society.yaml", - "category": "slot" - }, - { - "name": "parent_unit", - "path": "modules/slots/parent_unit.yaml", - "category": "slot" - }, - { - "name": "part_of_collection", - "path": "modules/slots/part_of_collection.yaml", - "category": "slot" - }, - { - "name": "part_of_custodian_collection", - "path": "modules/slots/part_of_custodian_collection.yaml", - "category": "slot" - }, - { - "name": "part_of_event", - "path": "modules/slots/part_of_event.yaml", - "category": "slot" - }, - { - "name": "part_of_facility", - "path": "modules/slots/part_of_facility.yaml", - "category": "slot" - }, - { - "name": "part_of_storage", - "path": "modules/slots/part_of_storage.yaml", - "category": "slot" - }, - { - "name": "part_of_zone", - "path": "modules/slots/part_of_zone.yaml", - "category": "slot" - }, - { - "name": "part_type", - "path": "modules/slots/part_type.yaml", - "category": "slot" - }, - { - "name": "participant_count", - "path": "modules/slots/participant_count.yaml", - "category": "slot" - }, - { - "name": "participates_or_participated_in", - "path": "modules/slots/participates_or_participated_in.yaml", - "category": "slot" - }, - { - "name": "participating_custodian", - "path": "modules/slots/participating_custodian.yaml", - "category": "slot" - }, - { - "name": "participating_institution", - "path": "modules/slots/participating_institution.yaml", - "category": "slot" - }, - { - "name": "particulate_max", - "path": "modules/slots/particulate_max.yaml", - "category": "slot" - }, - { - "name": "partner_institution", - "path": "modules/slots/partner_institution.yaml", - "category": "slot" - }, - { - "name": "partnership_model", - "path": "modules/slots/partnership_model.yaml", - "category": "slot" - }, - { - "name": "partnership_required", - "path": "modules/slots/partnership_required.yaml", - "category": "slot" - }, - { - "name": "patronym", - "path": "modules/slots/patronym.yaml", - "category": "slot" - }, - { - "name": "payment_frequency", - "path": "modules/slots/payment_frequency.yaml", - "category": "slot" - }, - { - "name": "pdf_url", - "path": "modules/slots/pdf_url.yaml", - "category": "slot" - }, - { - "name": "performance_datetime", - "path": "modules/slots/performance_datetime.yaml", - "category": "slot" - }, - { - "name": "performance_description", - "path": "modules/slots/performance_description.yaml", - "category": "slot" - }, - { - "name": "performance_duration", - "path": "modules/slots/performance_duration.yaml", - "category": "slot" - }, - { - "name": "performance_id", - "path": "modules/slots/performance_id.yaml", - "category": "slot" - }, - { - "name": "performance_location", - "path": "modules/slots/performance_location.yaml", - "category": "slot" - }, - { - "name": "performance_name", - "path": "modules/slots/performance_name.yaml", - "category": "slot" - }, - { - "name": "performance_note", - "path": "modules/slots/performance_note.yaml", - "category": "slot" - }, - { - "name": "performance_of", - "path": "modules/slots/performance_of.yaml", - "category": "slot" - }, - { - "name": "performance_repertoire", - "path": "modules/slots/performance_repertoire.yaml", - "category": "slot" - }, - { - "name": "performance_venue", - "path": "modules/slots/performance_venue.yaml", + "name": "participate_in", + "path": "modules/slots/participate_in.yaml", "category": "slot" }, { @@ -12448,443 +10268,28 @@ "category": "slot" }, { - "name": "performer", - "path": "modules/slots/performer.yaml", + "name": "plan", + "path": "modules/slots/plan.yaml", "category": "slot" }, { - "name": "period", - "path": "modules/slots/period.yaml", + "name": "pose_condition", + "path": "modules/slots/pose_condition.yaml", "category": "slot" }, { - "name": "period_covered", - "path": "modules/slots/period_covered.yaml", + "name": "posted_by", + "path": "modules/slots/posted_by.yaml", "category": "slot" }, { - "name": "period_description", - "path": "modules/slots/period_description.yaml", + "name": "power", + "path": "modules/slots/power.yaml", "category": "slot" }, { - "name": "period_end", - "path": "modules/slots/period_end.yaml", - "category": "slot" - }, - { - "name": "period_name", - "path": "modules/slots/period_name.yaml", - "category": "slot" - }, - { - "name": "period_start", - "path": "modules/slots/period_start.yaml", - "category": "slot" - }, - { - "name": "permanent_location", - "path": "modules/slots/permanent_location.yaml", - "category": "slot" - }, - { - "name": "permission_required", - "path": "modules/slots/permission_required.yaml", - "category": "slot" - }, - { - "name": "person_claim_id", - "path": "modules/slots/person_claim_id.yaml", - "category": "slot" - }, - { - "name": "person_claim_type", - "path": "modules/slots/person_claim_type.yaml", - "category": "slot" - }, - { - "name": "person_claim_value", - "path": "modules/slots/person_claim_value.yaml", - "category": "slot" - }, - { - "name": "person_html_file", - "path": "modules/slots/person_html_file.yaml", - "category": "slot" - }, - { - "name": "person_id", - "path": "modules/slots/person_id.yaml", - "category": "slot" - }, - { - "name": "person_name", - "path": "modules/slots/person_name.yaml", - "category": "slot" - }, - { - "name": "person_research_score", - "path": "modules/slots/person_research_score.yaml", - "category": "slot" - }, - { - "name": "personal_collection_subtype", - "path": "modules/slots/personal_collection_subtype.yaml", - "category": "slot" - }, - { - "name": "personnel_budget", - "path": "modules/slots/personnel_budget.yaml", - "category": "slot" - }, - { - "name": "pest_management_required", - "path": "modules/slots/pest_management_required.yaml", - "category": "slot" - }, - { - "name": "photograph", - "path": "modules/slots/photograph.yaml", - "category": "slot" - }, - { - "name": "physical_location", - "path": "modules/slots/physical_location.yaml", - "category": "slot" - }, - { - "name": "pipeline_stage", - "path": "modules/slots/pipeline_stage.yaml", - "category": "slot" - }, - { - "name": "place_custodian_ref", - "path": "modules/slots/place_custodian_ref.yaml", - "category": "slot" - }, - { - "name": "place_description", - "path": "modules/slots/place_description.yaml", - "category": "slot" - }, - { - "name": "place_designation", - "path": "modules/slots/place_designation.yaml", - "category": "slot" - }, - { - "name": "place_language", - "path": "modules/slots/place_language.yaml", - "category": "slot" - }, - { - "name": "place_name", - "path": "modules/slots/place_name.yaml", - "category": "slot" - }, - { - "name": "place_note", - "path": "modules/slots/place_note.yaml", - "category": "slot" - }, - { - "name": "place_of_publication", - "path": "modules/slots/place_of_publication.yaml", - "category": "slot" - }, - { - "name": "place_source_text", - "path": "modules/slots/place_source_text.yaml", - "category": "slot" - }, - { - "name": "place_specificity", - "path": "modules/slots/place_specificity.yaml", - "category": "slot" - }, - { - "name": "planned_closure_date", - "path": "modules/slots/planned_closure_date.yaml", - "category": "slot" - }, - { - "name": "planned_end", - "path": "modules/slots/planned_end.yaml", - "category": "slot" - }, - { - "name": "planned_start", - "path": "modules/slots/planned_start.yaml", - "category": "slot" - }, - { - "name": "plant_species_count", - "path": "modules/slots/plant_species_count.yaml", - "category": "slot" - }, - { - "name": "platform_description", - "path": "modules/slots/platform_description.yaml", - "category": "slot" - }, - { - "name": "platform_id", - "path": "modules/slots/platform_id.yaml", - "category": "slot" - }, - { - "name": "platform_name", - "path": "modules/slots/platform_name.yaml", - "category": "slot" - }, - { - "name": "platform_of", - "path": "modules/slots/platform_of.yaml", - "category": "slot" - }, - { - "name": "platform_purpose", - "path": "modules/slots/platform_purpose.yaml", - "category": "slot" - }, - { - "name": "platform_type", - "path": "modules/slots/platform_type.yaml", - "category": "slot" - }, - { - "name": "platform_type_category", - "path": "modules/slots/platform_type_category.yaml", - "category": "slot" - }, - { - "name": "platform_type_description", - "path": "modules/slots/platform_type_description.yaml", - "category": "slot" - }, - { - "name": "platform_type_id", - "path": "modules/slots/platform_type_id.yaml", - "category": "slot" - }, - { - "name": "platform_type_name", - "path": "modules/slots/platform_type_name.yaml", - "category": "slot" - }, - { - "name": "platform_url", - "path": "modules/slots/platform_url.yaml", - "category": "slot" - }, - { - "name": "policy_authority", - "path": "modules/slots/policy_authority.yaml", - "category": "slot" - }, - { - "name": "policy_description", - "path": "modules/slots/policy_description.yaml", - "category": "slot" - }, - { - "name": "policy_id", - "path": "modules/slots/policy_id.yaml", - "category": "slot" - }, - { - "name": "policy_name", - "path": "modules/slots/policy_name.yaml", - "category": "slot" - }, - { - "name": "policy_review_date", - "path": "modules/slots/policy_review_date.yaml", - "category": "slot" - }, - { - "name": "policy_text", - "path": "modules/slots/policy_text.yaml", - "category": "slot" - }, - { - "name": "portal_description", - "path": "modules/slots/portal_description.yaml", - "category": "slot" - }, - { - "name": "portal_id", - "path": "modules/slots/portal_id.yaml", - "category": "slot" - }, - { - "name": "portal_language", - "path": "modules/slots/portal_language.yaml", - "category": "slot" - }, - { - "name": "portal_name", - "path": "modules/slots/portal_name.yaml", - "category": "slot" - }, - { - "name": "portal_status", - "path": "modules/slots/portal_status.yaml", - "category": "slot" - }, - { - "name": "portal_type", - "path": "modules/slots/portal_type.yaml", - "category": "slot" - }, - { - "name": "portal_type_category", - "path": "modules/slots/portal_type_category.yaml", - "category": "slot" - }, - { - "name": "portal_type_description", - "path": "modules/slots/portal_type_description.yaml", - "category": "slot" - }, - { - "name": "portal_type_id", - "path": "modules/slots/portal_type_id.yaml", - "category": "slot" - }, - { - "name": "portal_type_name", - "path": "modules/slots/portal_type_name.yaml", - "category": "slot" - }, - { - "name": "portal_typical_domain", - "path": "modules/slots/portal_typical_domain.yaml", - "category": "slot" - }, - { - "name": "portal_url", - "path": "modules/slots/portal_url.yaml", - "category": "slot" - }, - { - "name": "poses_or_posed_condition", - "path": "modules/slots/poses_or_posed_condition.yaml", - "category": "slot" - }, - { - "name": "post_count", - "path": "modules/slots/post_count.yaml", - "category": "slot" - }, - { - "name": "post_id", - "path": "modules/slots/post_id.yaml", - "category": "slot" - }, - { - "name": "post_type_activity_streams_type", - "path": "modules/slots/post_type_activity_streams_type.yaml", - "category": "slot" - }, - { - "name": "post_type_category", - "path": "modules/slots/post_type_category.yaml", - "category": "slot" - }, - { - "name": "post_type_description", - "path": "modules/slots/post_type_description.yaml", - "category": "slot" - }, - { - "name": "post_type_ephemeral", - "path": "modules/slots/post_type_ephemeral.yaml", - "category": "slot" - }, - { - "name": "post_type_heritage_use_case", - "path": "modules/slots/post_type_heritage_use_case.yaml", - "category": "slot" - }, - { - "name": "post_type_id", - "path": "modules/slots/post_type_id.yaml", - "category": "slot" - }, - { - "name": "post_type_max_duration", - "path": "modules/slots/post_type_max_duration.yaml", - "category": "slot" - }, - { - "name": "post_type_media_format", - "path": "modules/slots/post_type_media_format.yaml", - "category": "slot" - }, - { - "name": "post_type_name", - "path": "modules/slots/post_type_name.yaml", - "category": "slot" - }, - { - "name": "post_type_schema_org_type", - "path": "modules/slots/post_type_schema_org_type.yaml", - "category": "slot" - }, - { - "name": "post_type_supported_platform", - "path": "modules/slots/post_type_supported_platform.yaml", - "category": "slot" - }, - { - "name": "post_url", - "path": "modules/slots/post_url.yaml", - "category": "slot" - }, - { - "name": "postal_code", - "path": "modules/slots/postal_code.yaml", - "category": "slot" - }, - { - "name": "posted_by_profile", - "path": "modules/slots/posted_by_profile.yaml", - "category": "slot" - }, - { - "name": "power_source", - "path": "modules/slots/power_source.yaml", - "category": "slot" - }, - { - "name": "powers_platform", - "path": "modules/slots/powers_platform.yaml", - "category": "slot" - }, - { - "name": "practitioner_community", - "path": "modules/slots/practitioner_community.yaml", - "category": "slot" - }, - { - "name": "preceding_activity", - "path": "modules/slots/preceding_activity.yaml", - "category": "slot" - }, - { - "name": "preferred_label", - "path": "modules/slots/preferred_label.yaml", - "category": "slot" - }, - { - "name": "preferred_name", - "path": "modules/slots/preferred_name.yaml", - "category": "slot" - }, - { - "name": "preparation_date", - "path": "modules/slots/preparation_date.yaml", + "name": "preceded_by", + "path": "modules/slots/preceded_by.yaml", "category": "slot" }, { @@ -12893,78 +10298,13 @@ "category": "slot" }, { - "name": "preservation_approach", - "path": "modules/slots/preservation_approach.yaml", + "name": "prepared_on", + "path": "modules/slots/prepared_on.yaml", "category": "slot" }, { - "name": "preservation_budget", - "path": "modules/slots/preservation_budget.yaml", - "category": "slot" - }, - { - "name": "preservation_event_type", - "path": "modules/slots/preservation_event_type.yaml", - "category": "slot" - }, - { - "name": "preservation_level", - "path": "modules/slots/preservation_level.yaml", - "category": "slot" - }, - { - "name": "preservation_method", - "path": "modules/slots/preservation_method.yaml", - "category": "slot" - }, - { - "name": "preservation_note", - "path": "modules/slots/preservation_note.yaml", - "category": "slot" - }, - { - "name": "preservation_purpose", - "path": "modules/slots/preservation_purpose.yaml", - "category": "slot" - }, - { - "name": "preservation_requirement", - "path": "modules/slots/preservation_requirement.yaml", - "category": "slot" - }, - { - "name": "preservation_standard", - "path": "modules/slots/preservation_standard.yaml", - "category": "slot" - }, - { - "name": "preservative_detail", - "path": "modules/slots/preservative_detail.yaml", - "category": "slot" - }, - { - "name": "preserves_or_preserved", - "path": "modules/slots/preserves_or_preserved.yaml", - "category": "slot" - }, - { - "name": "previous_observation", - "path": "modules/slots/previous_observation.yaml", - "category": "slot" - }, - { - "name": "price", - "path": "modules/slots/price.yaml", - "category": "slot" - }, - { - "name": "price_currency", - "path": "modules/slots/price_currency.yaml", - "category": "slot" - }, - { - "name": "price_text", - "path": "modules/slots/price_text.yaml", + "name": "preserve", + "path": "modules/slots/preserve.yaml", "category": "slot" }, { @@ -12973,768 +10313,598 @@ "category": "slot" }, { - "name": "primary_audio_event_type", - "path": "modules/slots/primary_audio_event_type.yaml", + "name": "proficient_in", + "path": "modules/slots/proficient_in.yaml", "category": "slot" }, { - "name": "primary_heritage_type", - "path": "modules/slots/primary_heritage_type.yaml", + "name": "provide", + "path": "modules/slots/provide.yaml", "category": "slot" }, { - "name": "primary_register", - "path": "modules/slots/primary_register.yaml", + "name": "provide_to", + "path": "modules/slots/provide_to.yaml", "category": "slot" }, { - "name": "primary_speaker", - "path": "modules/slots/primary_speaker.yaml", + "name": "provided_by", + "path": "modules/slots/provided_by.yaml", "category": "slot" }, { - "name": "primary_system", - "path": "modules/slots/primary_system.yaml", + "name": "publish", + "path": "modules/slots/publish.yaml", "category": "slot" }, { - "name": "printer_publisher", - "path": "modules/slots/printer_publisher.yaml", + "name": "published_at", + "path": "modules/slots/published_at.yaml", "category": "slot" }, { - "name": "priority", - "path": "modules/slots/priority.yaml", + "name": "published_by", + "path": "modules/slots/published_by.yaml", "category": "slot" }, { - "name": "privacy_note", - "path": "modules/slots/privacy_note.yaml", + "name": "published_on", + "path": "modules/slots/published_on.yaml", "category": "slot" }, { - "name": "processing_completed_date", - "path": "modules/slots/processing_completed_date.yaml", + "name": "published_through", + "path": "modules/slots/published_through.yaml", "category": "slot" }, { - "name": "processing_duration_seconds", - "path": "modules/slots/processing_duration_seconds.yaml", + "name": "queryable", + "path": "modules/slots/queryable.yaml", "category": "slot" }, { - "name": "processing_priority", - "path": "modules/slots/processing_priority.yaml", + "name": "ranked_through", + "path": "modules/slots/ranked_through.yaml", "category": "slot" }, { - "name": "processing_started_date", - "path": "modules/slots/processing_started_date.yaml", + "name": "rebuild_by", + "path": "modules/slots/rebuild_by.yaml", "category": "slot" }, { - "name": "processing_status", - "path": "modules/slots/processing_status.yaml", + "name": "receive", + "path": "modules/slots/receive.yaml", "category": "slot" }, { - "name": "production_method", - "path": "modules/slots/production_method.yaml", + "name": "receive_investment", + "path": "modules/slots/receive_investment.yaml", "category": "slot" }, { - "name": "proficiency_level", - "path": "modules/slots/proficiency_level.yaml", + "name": "received_by", + "path": "modules/slots/received_by.yaml", "category": "slot" }, { - "name": "profile_data", - "path": "modules/slots/profile_data.yaml", + "name": "recognized_by", + "path": "modules/slots/recognized_by.yaml", "category": "slot" }, { - "name": "profile_description", - "path": "modules/slots/profile_description.yaml", + "name": "recombined", + "path": "modules/slots/recombined.yaml", "category": "slot" }, { - "name": "profile_image_url", - "path": "modules/slots/profile_image_url.yaml", - "category": "slot" - }, - { - "name": "profile_linkedin_url", - "path": "modules/slots/profile_linkedin_url.yaml", - "category": "slot" - }, - { - "name": "profile_location", - "path": "modules/slots/profile_location.yaml", - "category": "slot" - }, - { - "name": "profile_name", - "path": "modules/slots/profile_name.yaml", - "category": "slot" - }, - { - "name": "profile_url", - "path": "modules/slots/profile_url.yaml", - "category": "slot" - }, - { - "name": "protocol_name", - "path": "modules/slots/protocol_name.yaml", - "category": "slot" - }, - { - "name": "protocol_version", - "path": "modules/slots/protocol_version.yaml", - "category": "slot" - }, - { - "name": "provider", - "path": "modules/slots/provider.yaml", - "category": "slot" - }, - { - "name": "provides_or_provided", - "path": "modules/slots/provides_or_provided.yaml", - "category": "slot" - }, - { - "name": "provides_or_provided_provenance_to", - "path": "modules/slots/provides_or_provided_provenance_to.yaml", - "category": "slot" - }, - { - "name": "provides_or_provided_to", - "path": "modules/slots/provides_or_provided_to.yaml", - "category": "slot" - }, - { - "name": "publishes_or_published", - "path": "modules/slots/publishes_or_published.yaml", - "category": "slot" - }, - { - "name": "rate_value", - "path": "modules/slots/rate_value.yaml", - "category": "slot" - }, - { - "name": "rationale", - "path": "modules/slots/rationale.yaml", - "category": "slot" - }, - { - "name": "raw_subtitle_content", - "path": "modules/slots/raw_subtitle_content.yaml", - "category": "slot" - }, - { - "name": "reading_room_type", - "path": "modules/slots/reading_room_type.yaml", - "category": "slot" - }, - { - "name": "reason_description", - "path": "modules/slots/reason_description.yaml", - "category": "slot" - }, - { - "name": "reasoning_content", - "path": "modules/slots/reasoning_content.yaml", - "category": "slot" - }, - { - "name": "receives_or_received", - "path": "modules/slots/receives_or_received.yaml", - "category": "slot" - }, - { - "name": "recognized_person_name", - "path": "modules/slots/recognized_person_name.yaml", - "category": "slot" - }, - { - "name": "recommendation", - "path": "modules/slots/recommendation.yaml", - "category": "slot" - }, - { - "name": "reconstruction_method", - "path": "modules/slots/reconstruction_method.yaml", - "category": "slot" - }, - { - "name": "record_count", - "path": "modules/slots/record_count.yaml", - "category": "slot" - }, - { - "name": "record_date", - "path": "modules/slots/record_date.yaml", - "category": "slot" - }, - { - "name": "record_equivalent", - "path": "modules/slots/record_equivalent.yaml", - "category": "slot" - }, - { - "name": "record_format", - "path": "modules/slots/record_format.yaml", - "category": "slot" - }, - { - "name": "record_holder", - "path": "modules/slots/record_holder.yaml", - "category": "slot" - }, - { - "name": "record_holder_note", - "path": "modules/slots/record_holder_note.yaml", - "category": "slot" - }, - { - "name": "record_id", - "path": "modules/slots/record_id.yaml", - "category": "slot" - }, - { - "name": "record_note", - "path": "modules/slots/record_note.yaml", - "category": "slot" - }, - { - "name": "record_set_type", - "path": "modules/slots/record_set_type.yaml", - "category": "slot" - }, - { - "name": "record_timespan", - "path": "modules/slots/record_timespan.yaml", - "category": "slot" - }, - { - "name": "record_type", - "path": "modules/slots/record_type.yaml", + "name": "recommend", + "path": "modules/slots/recommend.yaml", "category": "slot" }, { "name": "recording_available", - "path": "modules/slots/recording_available.yaml", + "path": "modules/slots/20260202_matang/new/recording_available.yaml", "category": "slot" }, { "name": "recording_url", - "path": "modules/slots/recording_url.yaml", + "path": "modules/slots/20260202_matang/new/recording_url.yaml", + "category": "slot" + }, + { + "name": "recur_at", + "path": "modules/slots/recur_at.yaml", "category": "slot" }, { "name": "recurrence_pattern", - "path": "modules/slots/recurrence_pattern.yaml", + "path": "modules/slots/20260202_matang/new/recurrence_pattern.yaml", + "category": "slot" + }, + { + "name": "refer_to", + "path": "modules/slots/refer_to.yaml", "category": "slot" }, { "name": "refers_or_referred_to", - "path": "modules/slots/refers_or_referred_to.yaml", + "path": "modules/slots/20260202_matang/new/refers_or_referred_to.yaml", "category": "slot" }, { "name": "refers_to_access_policy", - "path": "modules/slots/refers_to_access_policy.yaml", + "path": "modules/slots/20260202_matang/new/refers_to_access_policy.yaml", "category": "slot" }, { "name": "refers_to_custodian", - "path": "modules/slots/refers_to_custodian.yaml", + "path": "modules/slots/20260202_matang/new/refers_to_custodian.yaml", "category": "slot" }, { "name": "refers_to_legal_status", - "path": "modules/slots/refers_to_legal_status.yaml", + "path": "modules/slots/20260202_matang/new/refers_to_legal_status.yaml", "category": "slot" }, { "name": "refers_to_person", - "path": "modules/slots/refers_to_person.yaml", + "path": "modules/slots/20260202_matang/new/refers_to_person.yaml", "category": "slot" }, { "name": "refers_to_storage", - "path": "modules/slots/refers_to_storage.yaml", + "path": "modules/slots/20260202_matang/new/refers_to_storage.yaml", "category": "slot" }, { "name": "region", - "path": "modules/slots/region.yaml", + "path": "modules/slots/20260202_matang/new/region.yaml", "category": "slot" }, { "name": "region_code", - "path": "modules/slots/region_code.yaml", + "path": "modules/slots/20260202_matang/new/region_code.yaml", "category": "slot" }, { "name": "region_confidence", - "path": "modules/slots/region_confidence.yaml", + "path": "modules/slots/20260202_matang/new/region_confidence.yaml", "category": "slot" }, { "name": "region_language", - "path": "modules/slots/region_language.yaml", + "path": "modules/slots/20260202_matang/new/region_language.yaml", "category": "slot" }, { "name": "region_text", - "path": "modules/slots/region_text.yaml", + "path": "modules/slots/20260202_matang/new/region_text.yaml", "category": "slot" }, { "name": "region_type", - "path": "modules/slots/region_type.yaml", + "path": "modules/slots/20260202_matang/new/region_type.yaml", "category": "slot" }, { "name": "register_abbreviation", - "path": "modules/slots/register_abbreviation.yaml", + "path": "modules/slots/20260202_matang/new/register_abbreviation.yaml", "category": "slot" }, { "name": "register_id", - "path": "modules/slots/register_id.yaml", + "path": "modules/slots/20260202_matang/new/register_id.yaml", "category": "slot" }, { "name": "register_name", - "path": "modules/slots/register_name.yaml", + "path": "modules/slots/20260202_matang/new/register_name.yaml", "category": "slot" }, { "name": "register_name_local", - "path": "modules/slots/register_name_local.yaml", + "path": "modules/slots/20260202_matang/new/register_name_local.yaml", "category": "slot" }, { "name": "register_type", - "path": "modules/slots/register_type.yaml", + "path": "modules/slots/20260202_matang/new/register_type.yaml", + "category": "slot" + }, + { + "name": "registered_at", + "path": "modules/slots/registered_at.yaml", "category": "slot" }, { "name": "registered_office_clause", - "path": "modules/slots/registered_office_clause.yaml", + "path": "modules/slots/20260202_matang/new/registered_office_clause.yaml", "category": "slot" }, { "name": "registers_or_registered", - "path": "modules/slots/registers_or_registered.yaml", + "path": "modules/slots/20260202_matang/new/registers_or_registered.yaml", "category": "slot" }, { "name": "registration_authority", - "path": "modules/slots/registration_authority.yaml", + "path": "modules/slots/20260202_matang/new/registration_authority.yaml", "category": "slot" }, { "name": "registration_date", - "path": "modules/slots/registration_date.yaml", - "category": "slot" - }, - { - "name": "registration_required", - "path": "modules/slots/registration_required.yaml", + "path": "modules/slots/20260202_matang/new/registration_date.yaml", "category": "slot" }, { "name": "regulated_by_scheme", - "path": "modules/slots/regulated_by_scheme.yaml", + "path": "modules/slots/20260202_matang/new/regulated_by_scheme.yaml", "category": "slot" }, { "name": "regulates_or_regulated", - "path": "modules/slots/regulates_or_regulated.yaml", + "path": "modules/slots/20260202_matang/new/regulates_or_regulated.yaml", "category": "slot" }, { "name": "regulatory_authority", - "path": "modules/slots/regulatory_authority.yaml", + "path": "modules/slots/20260202_matang/new/regulatory_authority.yaml", "category": "slot" }, { "name": "regulatory_body", - "path": "modules/slots/regulatory_body.yaml", + "path": "modules/slots/20260202_matang/new/regulatory_body.yaml", "category": "slot" }, { "name": "related", - "path": "modules/slots/related.yaml", + "path": "modules/slots/20260202_matang/new/related.yaml", "category": "slot" }, { "name": "related_agenda", - "path": "modules/slots/related_agenda.yaml", + "path": "modules/slots/20260202_matang/new/related_agenda.yaml", "category": "slot" }, { "name": "related_call", - "path": "modules/slots/related_call.yaml", + "path": "modules/slots/20260202_matang/new/related_call.yaml", "category": "slot" }, { "name": "related_concept", - "path": "modules/slots/related_concept.yaml", + "path": "modules/slots/20260202_matang/new/related_concept.yaml", "category": "slot" }, { "name": "related_loan", - "path": "modules/slots/related_loan.yaml", + "path": "modules/slots/20260202_matang/new/related_loan.yaml", "category": "slot" }, { "name": "related_project", - "path": "modules/slots/related_project.yaml", + "path": "modules/slots/20260202_matang/new/related_project.yaml", + "category": "slot" + }, + { + "name": "related_to", + "path": "modules/slots/related_to.yaml", "category": "slot" }, { "name": "related_type_name", - "path": "modules/slots/related_type_name.yaml", + "path": "modules/slots/20260202_matang/new/related_type_name.yaml", "category": "slot" }, { "name": "related_type_note", - "path": "modules/slots/related_type_note.yaml", + "path": "modules/slots/20260202_matang/new/related_type_note.yaml", "category": "slot" }, { "name": "related_type_relationship", - "path": "modules/slots/related_type_relationship.yaml", + "path": "modules/slots/20260202_matang/new/related_type_relationship.yaml", "category": "slot" }, { "name": "related_type_wikidata", - "path": "modules/slots/related_type_wikidata.yaml", + "path": "modules/slots/20260202_matang/new/related_type_wikidata.yaml", "category": "slot" }, { "name": "related_types", - "path": "modules/slots/related_types.yaml", + "path": "modules/slots/20260202_matang/new/related_types.yaml", "category": "slot" }, { "name": "relationship", - "path": "modules/slots/relationship.yaml", + "path": "modules/slots/20260202_matang/new/relationship.yaml", "category": "slot" }, { "name": "religion", - "path": "modules/slots/religion.yaml", + "path": "modules/slots/20260202_matang/new/religion.yaml", "category": "slot" }, { "name": "religious_function", - "path": "modules/slots/religious_function.yaml", + "path": "modules/slots/20260202_matang/new/religious_function.yaml", "category": "slot" }, { "name": "religious_tradition", - "path": "modules/slots/religious_tradition.yaml", + "path": "modules/slots/20260202_matang/new/religious_tradition.yaml", "category": "slot" }, { "name": "remediation_note", - "path": "modules/slots/remediation_note.yaml", + "path": "modules/slots/20260202_matang/new/remediation_note.yaml", "category": "slot" }, { - "name": "remediation_required", - "path": "modules/slots/remediation_required.yaml", + "name": "remove", + "path": "modules/slots/remove.yaml", "category": "slot" }, { "name": "repertoire", - "path": "modules/slots/repertoire.yaml", + "path": "modules/slots/20260202_matang/new/repertoire.yaml", "category": "slot" }, { "name": "replaces_primary_location", - "path": "modules/slots/replaces_primary_location.yaml", + "path": "modules/slots/20260202_matang/new/replaces_primary_location.yaml", "category": "slot" }, { "name": "replied_to", - "path": "modules/slots/20260202_matang/replied_to.yaml", + "path": "modules/slots/replied_to.yaml", "category": "slot" }, { "name": "report_document", - "path": "modules/slots/report_document.yaml", + "path": "modules/slots/20260202_matang/new/report_document.yaml", "category": "slot" }, { "name": "report_url", - "path": "modules/slots/report_url.yaml", + "path": "modules/slots/20260202_matang/new/report_url.yaml", "category": "slot" }, { "name": "reported_date", - "path": "modules/slots/reported_date.yaml", + "path": "modules/slots/20260202_matang/new/reported_date.yaml", + "category": "slot" + }, + { + "name": "reported_on", + "path": "modules/slots/reported_on.yaml", "category": "slot" }, { "name": "reporting_period_end", - "path": "modules/slots/reporting_period_end.yaml", + "path": "modules/slots/20260202_matang/new/reporting_period_end.yaml", "category": "slot" }, { "name": "reporting_period_start", - "path": "modules/slots/reporting_period_start.yaml", + "path": "modules/slots/20260202_matang/new/reporting_period_start.yaml", "category": "slot" }, { "name": "repository_software", - "path": "modules/slots/repository_software.yaml", + "path": "modules/slots/20260202_matang/new/repository_software.yaml", "category": "slot" }, { "name": "repository_url", - "path": "modules/slots/repository_url.yaml", + "path": "modules/slots/20260202_matang/new/repository_url.yaml", + "category": "slot" + }, + { + "name": "represented_by", + "path": "modules/slots/represented_by.yaml", "category": "slot" }, { "name": "represents_or_represented", - "path": "modules/slots/represents_or_represented.yaml", + "path": "modules/slots/20260202_matang/new/represents_or_represented.yaml", "category": "slot" }, { "name": "request_date", - "path": "modules/slots/request_date.yaml", + "path": "modules/slots/20260202_matang/new/request_date.yaml", "category": "slot" }, { "name": "request_id", - "path": "modules/slots/request_id.yaml", + "path": "modules/slots/20260202_matang/new/request_id.yaml", + "category": "slot" + }, + { + "name": "require", + "path": "modules/slots/require.yaml", + "category": "slot" + }, + { + "name": "required", + "path": "modules/slots/required.yaml", "category": "slot" }, { "name": "requirement_id", - "path": "modules/slots/requirement_id.yaml", + "path": "modules/slots/20260202_matang/new/requirement_id.yaml", "category": "slot" }, { "name": "requirement_text", - "path": "modules/slots/requirement_text.yaml", + "path": "modules/slots/20260202_matang/new/requirement_text.yaml", "category": "slot" }, { "name": "requirement_type", - "path": "modules/slots/requirement_type.yaml", + "path": "modules/slots/20260202_matang/new/requirement_type.yaml", "category": "slot" }, { "name": "requirement_unit", - "path": "modules/slots/requirement_unit.yaml", + "path": "modules/slots/20260202_matang/new/requirement_unit.yaml", "category": "slot" }, { "name": "requirement_value", - "path": "modules/slots/requirement_value.yaml", - "category": "slot" - }, - { - "name": "requires_appointment", - "path": "modules/slots/requires_appointment.yaml", - "category": "slot" - }, - { - "name": "requires_articles_at_registration", - "path": "modules/slots/requires_articles_at_registration.yaml", - "category": "slot" - }, - { - "name": "requires_dark_storage", - "path": "modules/slots/requires_dark_storage.yaml", - "category": "slot" - }, - { - "name": "requires_declaration", - "path": "modules/slots/requires_declaration.yaml", - "category": "slot" - }, - { - "name": "requires_dust_free", - "path": "modules/slots/requires_dust_free.yaml", - "category": "slot" - }, - { - "name": "requires_esd_protection", - "path": "modules/slots/requires_esd_protection.yaml", - "category": "slot" - }, - { - "name": "requires_or_required", - "path": "modules/slots/requires_or_required.yaml", - "category": "slot" - }, - { - "name": "requires_qualification", - "path": "modules/slots/requires_qualification.yaml", - "category": "slot" - }, - { - "name": "requires_registration", - "path": "modules/slots/requires_registration.yaml", - "category": "slot" - }, - { - "name": "requires_research", - "path": "modules/slots/requires_research.yaml", - "category": "slot" - }, - { - "name": "requires_separate_registration", - "path": "modules/slots/requires_separate_registration.yaml", - "category": "slot" - }, - { - "name": "requires_uv_filter", - "path": "modules/slots/requires_uv_filter.yaml", + "path": "modules/slots/20260202_matang/new/requirement_value.yaml", "category": "slot" }, { "name": "research_center_subtype", - "path": "modules/slots/research_center_subtype.yaml", + "path": "modules/slots/20260202_matang/new/research_center_subtype.yaml", "category": "slot" }, { "name": "research_center_type", - "path": "modules/slots/research_center_type.yaml", + "path": "modules/slots/20260202_matang/new/research_center_type.yaml", "category": "slot" }, { "name": "research_department", - "path": "modules/slots/research_department.yaml", + "path": "modules/slots/20260202_matang/new/research_department.yaml", "category": "slot" }, { "name": "research_focus", - "path": "modules/slots/research_focus.yaml", + "path": "modules/slots/20260202_matang/new/research_focus.yaml", "category": "slot" }, { "name": "research_focus_area", - "path": "modules/slots/research_focus_area.yaml", + "path": "modules/slots/20260202_matang/new/research_focus_area.yaml", "category": "slot" }, { "name": "research_infrastructure", - "path": "modules/slots/research_infrastructure.yaml", + "path": "modules/slots/20260202_matang/new/research_infrastructure.yaml", "category": "slot" }, { "name": "research_program", - "path": "modules/slots/research_program.yaml", + "path": "modules/slots/20260202_matang/new/research_program.yaml", "category": "slot" }, { "name": "research_project", - "path": "modules/slots/research_project.yaml", + "path": "modules/slots/20260202_matang/new/research_project.yaml", "category": "slot" }, { "name": "research_value", - "path": "modules/slots/research_value.yaml", - "category": "slot" - }, - { - "name": "reservation_required", - "path": "modules/slots/reservation_required.yaml", + "path": "modules/slots/20260202_matang/new/research_value.yaml", "category": "slot" }, { "name": "resource_description", - "path": "modules/slots/resource_description.yaml", + "path": "modules/slots/20260202_matang/new/resource_description.yaml", "category": "slot" }, { "name": "response_format", - "path": "modules/slots/response_format.yaml", + "path": "modules/slots/20260202_matang/new/response_format.yaml", "category": "slot" }, { "name": "responsible_actor", - "path": "modules/slots/responsible_actor.yaml", + "path": "modules/slots/20260202_matang/new/responsible_actor.yaml", "category": "slot" }, { "name": "responsible_agent", - "path": "modules/slots/responsible_agent.yaml", + "path": "modules/slots/20260202_matang/new/responsible_agent.yaml", "category": "slot" }, { "name": "responsible_department", - "path": "modules/slots/responsible_department.yaml", + "path": "modules/slots/20260202_matang/new/responsible_department.yaml", + "category": "slot" + }, + { + "name": "responsible_for", + "path": "modules/slots/responsible_for.yaml", "category": "slot" }, { "name": "responsible_legal_entity", - "path": "modules/slots/responsible_legal_entity.yaml", + "path": "modules/slots/20260202_matang/new/responsible_legal_entity.yaml", + "category": "slot" + }, + { + "name": "restricted_by", + "path": "modules/slots/restricted_by.yaml", "category": "slot" }, { "name": "restriction_category", - "path": "modules/slots/restriction_category.yaml", + "path": "modules/slots/20260202_matang/new/restriction_category.yaml", "category": "slot" }, { "name": "restriction_description", - "path": "modules/slots/restriction_description.yaml", + "path": "modules/slots/20260202_matang/new/restriction_description.yaml", "category": "slot" }, { "name": "restriction_reason", - "path": "modules/slots/restriction_reason.yaml", + "path": "modules/slots/20260202_matang/new/restriction_reason.yaml", "category": "slot" }, { "name": "restriction_type", - "path": "modules/slots/restriction_type.yaml", + "path": "modules/slots/20260202_matang/new/restriction_type.yaml", "category": "slot" }, { "name": "results_expected_date", - "path": "modules/slots/results_expected_date.yaml", + "path": "modules/slots/20260202_matang/new/results_expected_date.yaml", "category": "slot" }, { "name": "retention_period_year", - "path": "modules/slots/retention_period_year.yaml", + "path": "modules/slots/20260202_matang/new/retention_period_year.yaml", "category": "slot" }, { "name": "retention_schedule", - "path": "modules/slots/retention_schedule.yaml", + "path": "modules/slots/20260202_matang/new/retention_schedule.yaml", "category": "slot" }, { "name": "retention_tracking", - "path": "modules/slots/retention_tracking.yaml", + "path": "modules/slots/20260202_matang/new/retention_tracking.yaml", "category": "slot" }, { "name": "retrieval_agent", - "path": "modules/slots/retrieval_agent.yaml", + "path": "modules/slots/20260202_matang/new/retrieval_agent.yaml", "category": "slot" }, { "name": "retrieval_method", - "path": "modules/slots/retrieval_method.yaml", + "path": "modules/slots/20260202_matang/new/retrieval_method.yaml", "category": "slot" }, { "name": "retrieval_timestamp", - "path": "modules/slots/retrieval_timestamp.yaml", + "path": "modules/slots/20260202_matang/new/retrieval_timestamp.yaml", + "category": "slot" + }, + { + "name": "retrieved_at", + "path": "modules/slots/retrieved_at.yaml", + "category": "slot" + }, + { + "name": "retrieved_by", + "path": "modules/slots/20260202_matang/new/retrieved_by.yaml", "category": "slot" }, { @@ -13744,817 +10914,852 @@ }, { "name": "retrieved_from", - "path": "modules/slots/20260202_matang/retrieved_from.yaml", + "path": "modules/slots/retrieved_from.yaml", "category": "slot" }, { "name": "retrieved_on", - "path": "modules/slots/retrieved_on.yaml", + "path": "modules/slots/20260202_matang/new/retrieved_on.yaml", + "category": "slot" + }, + { + "name": "retrieved_through", + "path": "modules/slots/retrieved_through.yaml", + "category": "slot" + }, + { + "name": "return", + "path": "modules/slots/return.yaml", "category": "slot" }, { "name": "return_condition_report_url", - "path": "modules/slots/return_condition_report_url.yaml", + "path": "modules/slots/20260202_matang/new/return_condition_report_url.yaml", + "category": "slot" + }, + { + "name": "returned", + "path": "modules/slots/returned.yaml", "category": "slot" }, { "name": "revenue_category", - "path": "modules/slots/revenue_category.yaml", + "path": "modules/slots/20260202_matang/new/revenue_category.yaml", "category": "slot" }, { - "name": "review_date", - "path": "modules/slots/review_date.yaml", - "category": "slot" - }, - { - "name": "review_status", - "path": "modules/slots/review_status.yaml", + "name": "reviewed_through", + "path": "modules/slots/reviewed_through.yaml", "category": "slot" }, { "name": "revision_date", - "path": "modules/slots/revision_date.yaml", + "path": "modules/slots/20260202_matang/new/revision_date.yaml", "category": "slot" }, { "name": "revision_number", - "path": "modules/slots/revision_number.yaml", + "path": "modules/slots/20260202_matang/new/revision_number.yaml", "category": "slot" }, { - "name": "rights_statement", - "path": "modules/slots/rights_statement.yaml", - "category": "slot" - }, - { - "name": "rights_statement_url", - "path": "modules/slots/rights_statement_url.yaml", + "name": "revision_of", + "path": "modules/slots/revision_of.yaml", "category": "slot" }, { "name": "role_category", - "path": "modules/slots/role_category.yaml", + "path": "modules/slots/20260202_matang/new/role_category.yaml", "category": "slot" }, { "name": "role_end_date", - "path": "modules/slots/role_end_date.yaml", + "path": "modules/slots/20260202_matang/new/role_end_date.yaml", "category": "slot" }, { "name": "role_id", - "path": "modules/slots/role_id.yaml", + "path": "modules/slots/20260202_matang/new/role_id.yaml", "category": "slot" }, { "name": "role_name", - "path": "modules/slots/role_name.yaml", + "path": "modules/slots/20260202_matang/new/role_name.yaml", "category": "slot" }, { "name": "role_name_local", - "path": "modules/slots/role_name_local.yaml", + "path": "modules/slots/20260202_matang/new/role_name_local.yaml", "category": "slot" }, { "name": "role_start_date", - "path": "modules/slots/role_start_date.yaml", + "path": "modules/slots/20260202_matang/new/role_start_date.yaml", "category": "slot" }, { "name": "role_title", - "path": "modules/slots/role_title.yaml", + "path": "modules/slots/20260202_matang/new/role_title.yaml", "category": "slot" }, { "name": "route_description", - "path": "modules/slots/route_description.yaml", + "path": "modules/slots/20260202_matang/new/route_description.yaml", "category": "slot" }, { "name": "route_id", - "path": "modules/slots/route_id.yaml", + "path": "modules/slots/20260202_matang/new/route_id.yaml", "category": "slot" }, { "name": "route_keyword", - "path": "modules/slots/route_keyword.yaml", + "path": "modules/slots/20260202_matang/new/route_keyword.yaml", "category": "slot" }, { "name": "route_relevance_to_heritage", - "path": "modules/slots/route_relevance_to_heritage.yaml", + "path": "modules/slots/20260202_matang/new/route_relevance_to_heritage.yaml", "category": "slot" }, { "name": "route_title", - "path": "modules/slots/route_title.yaml", + "path": "modules/slots/20260202_matang/new/route_title.yaml", "category": "slot" }, { "name": "row_number", - "path": "modules/slots/row_number.yaml", + "path": "modules/slots/20260202_matang/new/row_number.yaml", "category": "slot" }, { "name": "safeguarded_by", - "path": "modules/slots/safeguarded_by.yaml", + "path": "modules/slots/20260202_matang/new/safeguarded_by.yaml", "category": "slot" }, { "name": "safeguarding_measure", - "path": "modules/slots/safeguarding_measure.yaml", + "path": "modules/slots/20260202_matang/new/safeguarding_measure.yaml", "category": "slot" }, { "name": "safety_certification", - "path": "modules/slots/safety_certification.yaml", + "path": "modules/slots/20260202_matang/new/safety_certification.yaml", "category": "slot" }, { "name": "sales_activity", - "path": "modules/slots/sales_activity.yaml", + "path": "modules/slots/20260202_matang/new/sales_activity.yaml", "category": "slot" }, { "name": "sampling_protocol", - "path": "modules/slots/sampling_protocol.yaml", + "path": "modules/slots/20260202_matang/new/sampling_protocol.yaml", "category": "slot" }, { "name": "scene_count", - "path": "modules/slots/scene_count.yaml", + "path": "modules/slots/20260202_matang/new/scene_count.yaml", "category": "slot" }, { "name": "scene_types_detected", - "path": "modules/slots/scene_types_detected.yaml", + "path": "modules/slots/20260202_matang/new/scene_types_detected.yaml", "category": "slot" }, { "name": "scheme_description", - "path": "modules/slots/scheme_description.yaml", + "path": "modules/slots/20260202_matang/new/scheme_description.yaml", "category": "slot" }, { "name": "scheme_id", - "path": "modules/slots/scheme_id.yaml", + "path": "modules/slots/20260202_matang/new/scheme_id.yaml", "category": "slot" }, { "name": "scheme_name", - "path": "modules/slots/scheme_name.yaml", + "path": "modules/slots/20260202_matang/new/scheme_name.yaml", "category": "slot" }, { "name": "scheme_type", - "path": "modules/slots/scheme_type.yaml", + "path": "modules/slots/20260202_matang/new/scheme_type.yaml", "category": "slot" }, { "name": "scheme_url", - "path": "modules/slots/scheme_url.yaml", - "category": "slot" - }, - { - "name": "scope", - "path": "modules/slots/scope.yaml", + "path": "modules/slots/20260202_matang/new/scheme_url.yaml", "category": "slot" }, { "name": "scope_description", - "path": "modules/slots/scope_description.yaml", - "category": "slot" - }, - { - "name": "scope_exclude", - "path": "modules/slots/scope_exclude.yaml", - "category": "slot" - }, - { - "name": "scope_include", - "path": "modules/slots/scope_include.yaml", + "path": "modules/slots/20260202_matang/new/scope_description.yaml", "category": "slot" }, { "name": "scrape_method", - "path": "modules/slots/scrape_method.yaml", + "path": "modules/slots/20260202_matang/new/scrape_method.yaml", "category": "slot" }, { "name": "scraped_timestamp", - "path": "modules/slots/scraped_timestamp.yaml", + "path": "modules/slots/20260202_matang/new/scraped_timestamp.yaml", "category": "slot" }, { "name": "script_type", - "path": "modules/slots/script_type.yaml", + "path": "modules/slots/20260202_matang/new/script_type.yaml", "category": "slot" }, { "name": "seasonal_hour", - "path": "modules/slots/seasonal_hour.yaml", + "path": "modules/slots/20260202_matang/new/seasonal_hour.yaml", "category": "slot" }, { "name": "seating_capacity", - "path": "modules/slots/seating_capacity.yaml", + "path": "modules/slots/20260202_matang/new/seating_capacity.yaml", "category": "slot" }, { "name": "secondary", - "path": "modules/slots/secondary.yaml", + "path": "modules/slots/20260202_matang/new/secondary.yaml", "category": "slot" }, { "name": "section_id", - "path": "modules/slots/section_id.yaml", + "path": "modules/slots/20260202_matang/new/section_id.yaml", "category": "slot" }, { "name": "secularization_status", - "path": "modules/slots/secularization_status.yaml", + "path": "modules/slots/20260202_matang/new/secularization_status.yaml", "category": "slot" }, { "name": "security_level", - "path": "modules/slots/security_level.yaml", + "path": "modules/slots/20260202_matang/new/security_level.yaml", "category": "slot" }, { "name": "segment_confidence", - "path": "modules/slots/segment_confidence.yaml", + "path": "modules/slots/20260202_matang/new/segment_confidence.yaml", "category": "slot" }, { "name": "segment_end_seconds", - "path": "modules/slots/segment_end_seconds.yaml", + "path": "modules/slots/20260202_matang/new/segment_end_seconds.yaml", "category": "slot" }, { "name": "segment_index", - "path": "modules/slots/segment_index.yaml", + "path": "modules/slots/20260202_matang/new/segment_index.yaml", "category": "slot" }, { "name": "segment_language", - "path": "modules/slots/segment_language.yaml", + "path": "modules/slots/20260202_matang/new/segment_language.yaml", "category": "slot" }, { "name": "segment_start_seconds", - "path": "modules/slots/segment_start_seconds.yaml", + "path": "modules/slots/20260202_matang/new/segment_start_seconds.yaml", "category": "slot" }, { "name": "segment_text", - "path": "modules/slots/segment_text.yaml", + "path": "modules/slots/20260202_matang/new/segment_text.yaml", "category": "slot" }, { "name": "sensory_heritage_domain", - "path": "modules/slots/sensory_heritage_domain.yaml", + "path": "modules/slots/20260202_matang/new/sensory_heritage_domain.yaml", "category": "slot" }, { "name": "sentence_count", - "path": "modules/slots/sentence_count.yaml", + "path": "modules/slots/20260202_matang/new/sentence_count.yaml", "category": "slot" }, { "name": "served_by", - "path": "modules/slots/served_by.yaml", + "path": "modules/slots/20260202_matang/new/served_by.yaml", "category": "slot" }, { "name": "serves_finding_aid", - "path": "modules/slots/serves_finding_aid.yaml", + "path": "modules/slots/20260202_matang/new/serves_finding_aid.yaml", "category": "slot" }, { "name": "serves_function_of", - "path": "modules/slots/serves_function_of.yaml", + "path": "modules/slots/20260202_matang/new/serves_function_of.yaml", "category": "slot" }, { "name": "serves_or_served", - "path": "modules/slots/serves_or_served.yaml", + "path": "modules/slots/20260202_matang/new/serves_or_served.yaml", "category": "slot" }, { "name": "serves_staff", - "path": "modules/slots/serves_staff.yaml", + "path": "modules/slots/20260202_matang/new/serves_staff.yaml", "category": "slot" }, { "name": "serves_visitors_only", - "path": "modules/slots/serves_visitors_only.yaml", + "path": "modules/slots/20260202_matang/new/serves_visitors_only.yaml", "category": "slot" }, { "name": "service_area", - "path": "modules/slots/service_area.yaml", + "path": "modules/slots/20260202_matang/new/service_area.yaml", "category": "slot" }, { "name": "service_area_description", - "path": "modules/slots/service_area_description.yaml", + "path": "modules/slots/20260202_matang/new/service_area_description.yaml", "category": "slot" }, { "name": "service_area_id", - "path": "modules/slots/service_area_id.yaml", + "path": "modules/slots/20260202_matang/new/service_area_id.yaml", "category": "slot" }, { "name": "service_area_name", - "path": "modules/slots/service_area_name.yaml", + "path": "modules/slots/20260202_matang/new/service_area_name.yaml", "category": "slot" }, { "name": "service_area_type", - "path": "modules/slots/service_area_type.yaml", + "path": "modules/slots/20260202_matang/new/service_area_type.yaml", "category": "slot" }, { "name": "service_offering", - "path": "modules/slots/service_offering.yaml", + "path": "modules/slots/20260202_matang/new/service_offering.yaml", "category": "slot" }, { "name": "service_portfolio", - "path": "modules/slots/service_portfolio.yaml", + "path": "modules/slots/20260202_matang/new/service_portfolio.yaml", "category": "slot" }, { "name": "services_offered", - "path": "modules/slots/services_offered.yaml", + "path": "modules/slots/20260202_matang/new/services_offered.yaml", "category": "slot" }, { "name": "setpoint_max", - "path": "modules/slots/setpoint_max.yaml", + "path": "modules/slots/20260202_matang/new/setpoint_max.yaml", "category": "slot" }, { "name": "setpoint_min", - "path": "modules/slots/setpoint_min.yaml", + "path": "modules/slots/20260202_matang/new/setpoint_min.yaml", "category": "slot" }, { "name": "setpoint_tolerance", - "path": "modules/slots/setpoint_tolerance.yaml", + "path": "modules/slots/20260202_matang/new/setpoint_tolerance.yaml", "category": "slot" }, { "name": "setpoint_type", - "path": "modules/slots/setpoint_type.yaml", + "path": "modules/slots/20260202_matang/new/setpoint_type.yaml", "category": "slot" }, { "name": "setpoint_unit", - "path": "modules/slots/setpoint_unit.yaml", + "path": "modules/slots/20260202_matang/new/setpoint_unit.yaml", "category": "slot" }, { "name": "setpoint_value", - "path": "modules/slots/setpoint_value.yaml", + "path": "modules/slots/20260202_matang/new/setpoint_value.yaml", "category": "slot" }, { "name": "settlement", - "path": "modules/slots/settlement.yaml", + "path": "modules/slots/20260202_matang/new/settlement.yaml", "category": "slot" }, { "name": "settlement_name", - "path": "modules/slots/settlement_name.yaml", + "path": "modules/slots/20260202_matang/new/settlement_name.yaml", "category": "slot" }, { "name": "sex", - "path": "modules/slots/sex.yaml", + "path": "modules/slots/20260202_matang/new/sex.yaml", "category": "slot" }, { "name": "shares_catalog_with_main", - "path": "modules/slots/shares_catalog_with_main.yaml", + "path": "modules/slots/20260202_matang/new/shares_catalog_with_main.yaml", "category": "slot" }, { "name": "shelf_mark", - "path": "modules/slots/shelf_mark.yaml", + "path": "modules/slots/20260202_matang/new/shelf_mark.yaml", "category": "slot" }, { "name": "shelf_number", - "path": "modules/slots/shelf_number.yaml", + "path": "modules/slots/20260202_matang/new/shelf_number.yaml", "category": "slot" }, { "name": "shipping_method", - "path": "modules/slots/shipping_method.yaml", + "path": "modules/slots/20260202_matang/new/shipping_method.yaml", "category": "slot" }, { "name": "shop_type", - "path": "modules/slots/shop_type.yaml", + "path": "modules/slots/20260202_matang/new/shop_type.yaml", "category": "slot" }, { "name": "short_name", - "path": "modules/slots/short_name.yaml", + "path": "modules/slots/20260202_matang/new/short_name.yaml", + "category": "slot" + }, + { + "name": "signed_at", + "path": "modules/slots/signed_at.yaml", + "category": "slot" + }, + { + "name": "signed_by", + "path": "modules/slots/signed_by.yaml", + "category": "slot" + }, + { + "name": "signed_on", + "path": "modules/slots/signed_on.yaml", "category": "slot" }, { "name": "silence_total_seconds", - "path": "modules/slots/silence_total_seconds.yaml", + "path": "modules/slots/20260202_matang/new/silence_total_seconds.yaml", "category": "slot" }, { "name": "site_portfolio", - "path": "modules/slots/site_portfolio.yaml", + "path": "modules/slots/20260202_matang/new/site_portfolio.yaml", "category": "slot" }, { "name": "skill", - "path": "modules/slots/skill.yaml", + "path": "modules/slots/20260202_matang/new/skill.yaml", "category": "slot" }, { "name": "slot_fixes", - "path": "modules/slots/slot_fixes.yaml", + "path": "modules/slots/20260202_matang/new/slot_fixes.yaml", "category": "slot" }, { "name": "slug", - "path": "modules/slots/slug.yaml", + "path": "modules/slots/20260202_matang/new/slug.yaml", "category": "slot" }, { "name": "snr_db", - "path": "modules/slots/snr_db.yaml", + "path": "modules/slots/20260202_matang/new/snr_db.yaml", "category": "slot" }, { "name": "social_media_example_profile", - "path": "modules/slots/social_media_example_profile.yaml", + "path": "modules/slots/20260202_matang/new/social_media_example_profile.yaml", "category": "slot" }, { "name": "social_media_feature", - "path": "modules/slots/social_media_feature.yaml", + "path": "modules/slots/20260202_matang/new/social_media_feature.yaml", "category": "slot" }, { "name": "social_media_heritage_use_case", - "path": "modules/slots/social_media_heritage_use_case.yaml", + "path": "modules/slots/20260202_matang/new/social_media_heritage_use_case.yaml", "category": "slot" }, { "name": "social_media_platform_category", - "path": "modules/slots/social_media_platform_category.yaml", + "path": "modules/slots/20260202_matang/new/social_media_platform_category.yaml", "category": "slot" }, { "name": "social_media_platform_description", - "path": "modules/slots/social_media_platform_description.yaml", + "path": "modules/slots/20260202_matang/new/social_media_platform_description.yaml", "category": "slot" }, { "name": "social_media_platform_name", - "path": "modules/slots/social_media_platform_name.yaml", + "path": "modules/slots/20260202_matang/new/social_media_platform_name.yaml", "category": "slot" }, { "name": "social_media_platform_type_id", - "path": "modules/slots/social_media_platform_type_id.yaml", + "path": "modules/slots/20260202_matang/new/social_media_platform_type_id.yaml", "category": "slot" }, { "name": "social_media_profile_id", - "path": "modules/slots/social_media_profile_id.yaml", + "path": "modules/slots/20260202_matang/new/social_media_profile_id.yaml", "category": "slot" }, { "name": "social_media_url_pattern", - "path": "modules/slots/social_media_url_pattern.yaml", + "path": "modules/slots/20260202_matang/new/social_media_url_pattern.yaml", "category": "slot" }, { "name": "social_media_wikidata_id", - "path": "modules/slots/social_media_wikidata_id.yaml", + "path": "modules/slots/20260202_matang/new/social_media_wikidata_id.yaml", "category": "slot" }, { "name": "society_focus", - "path": "modules/slots/society_focus.yaml", + "path": "modules/slots/20260202_matang/new/society_focus.yaml", "category": "slot" }, { "name": "sound_events_detected", - "path": "modules/slots/sound_events_detected.yaml", + "path": "modules/slots/20260202_matang/new/sound_events_detected.yaml", "category": "slot" }, { "name": "source", - "path": "modules/slots/source.yaml", + "path": "modules/slots/20260202_matang/new/source.yaml", "category": "slot" }, { "name": "source_creator", - "path": "modules/slots/source_creator.yaml", + "path": "modules/slots/20260202_matang/new/source_creator.yaml", "category": "slot" }, { "name": "source_dataset", - "path": "modules/slots/source_dataset.yaml", + "path": "modules/slots/20260202_matang/new/source_dataset.yaml", "category": "slot" }, { "name": "source_date", - "path": "modules/slots/source_date.yaml", + "path": "modules/slots/20260202_matang/new/source_date.yaml", "category": "slot" }, { "name": "source_file", - "path": "modules/slots/source_file.yaml", + "path": "modules/slots/20260202_matang/new/source_file.yaml", "category": "slot" }, { "name": "source_language_auto_detected", - "path": "modules/slots/source_language_auto_detected.yaml", + "path": "modules/slots/20260202_matang/new/source_language_auto_detected.yaml", "category": "slot" }, { "name": "source_metadata", - "path": "modules/slots/source_metadata.yaml", + "path": "modules/slots/20260202_matang/new/source_metadata.yaml", "category": "slot" }, { "name": "source_organization", - "path": "modules/slots/source_organization.yaml", + "path": "modules/slots/20260202_matang/new/source_organization.yaml", "category": "slot" }, { "name": "source_section", - "path": "modules/slots/source_section.yaml", + "path": "modules/slots/20260202_matang/new/source_section.yaml", "category": "slot" }, { "name": "source_type", - "path": "modules/slots/source_type.yaml", + "path": "modules/slots/20260202_matang/new/source_type.yaml", "category": "slot" }, { "name": "source_uri", - "path": "modules/slots/source_uri.yaml", + "path": "modules/slots/20260202_matang/new/source_uri.yaml", "category": "slot" }, { "name": "source_url", - "path": "modules/slots/source_url.yaml", + "path": "modules/slots/20260202_matang/new/source_url.yaml", "category": "slot" }, { "name": "source_video", - "path": "modules/slots/source_video.yaml", + "path": "modules/slots/20260202_matang/new/source_video.yaml", "category": "slot" }, { "name": "source_video_url", - "path": "modules/slots/source_video_url.yaml", + "path": "modules/slots/20260202_matang/new/source_video_url.yaml", "category": "slot" }, { "name": "space_description", - "path": "modules/slots/space_description.yaml", + "path": "modules/slots/20260202_matang/new/space_description.yaml", "category": "slot" }, { "name": "space_name", - "path": "modules/slots/space_name.yaml", + "path": "modules/slots/20260202_matang/new/space_name.yaml", "category": "slot" }, { "name": "sparql_endpoint", - "path": "modules/slots/sparql_endpoint.yaml", + "path": "modules/slots/20260202_matang/new/sparql_endpoint.yaml", "category": "slot" }, { "name": "spatial_resolution", - "path": "modules/slots/spatial_resolution.yaml", + "path": "modules/slots/20260202_matang/new/spatial_resolution.yaml", "category": "slot" }, { "name": "speaker_count", - "path": "modules/slots/speaker_count.yaml", + "path": "modules/slots/20260202_matang/new/speaker_count.yaml", "category": "slot" }, { "name": "speaker_id", - "path": "modules/slots/speaker_id.yaml", + "path": "modules/slots/20260202_matang/new/speaker_id.yaml", "category": "slot" }, { "name": "speaker_label", - "path": "modules/slots/speaker_label.yaml", + "path": "modules/slots/20260202_matang/new/speaker_label.yaml", "category": "slot" }, { "name": "special_collection", - "path": "modules/slots/special_collection.yaml", + "path": "modules/slots/20260202_matang/new/special_collection.yaml", "category": "slot" }, { "name": "special_requirement", - "path": "modules/slots/special_requirement.yaml", + "path": "modules/slots/20260202_matang/new/special_requirement.yaml", "category": "slot" }, { "name": "specialized_place", - "path": "modules/slots/specialized_place.yaml", + "path": "modules/slots/20260202_matang/new/specialized_place.yaml", "category": "slot" }, { "name": "specification_url", - "path": "modules/slots/specification_url.yaml", + "path": "modules/slots/20260202_matang/new/specification_url.yaml", "category": "slot" }, { "name": "specificity_agent", - "path": "modules/slots/specificity_agent.yaml", + "path": "modules/slots/20260202_matang/new/specificity_agent.yaml", "category": "slot" }, { "name": "specificity_rationale", - "path": "modules/slots/specificity_rationale.yaml", + "path": "modules/slots/20260202_matang/new/specificity_rationale.yaml", "category": "slot" }, { "name": "specificity_score", - "path": "modules/slots/specificity_score.yaml", + "path": "modules/slots/20260202_matang/new/specificity_score.yaml", "category": "slot" }, { "name": "specificity_timestamp", - "path": "modules/slots/specificity_timestamp.yaml", + "path": "modules/slots/20260202_matang/new/specificity_timestamp.yaml", "category": "slot" }, { - "name": "specifies_or_specified", - "path": "modules/slots/specifies_or_specified.yaml", + "name": "specified_as", + "path": "modules/slots/specified_as.yaml", + "category": "slot" + }, + { + "name": "specify", + "path": "modules/slots/specify.yaml", "category": "slot" }, { "name": "specimen_count", - "path": "modules/slots/specimen_count.yaml", + "path": "modules/slots/20260202_matang/new/specimen_count.yaml", "category": "slot" }, { "name": "specimen_type", - "path": "modules/slots/specimen_type.yaml", + "path": "modules/slots/20260202_matang/new/specimen_type.yaml", "category": "slot" }, { "name": "spectrum_procedure", - "path": "modules/slots/spectrum_procedure.yaml", + "path": "modules/slots/20260202_matang/new/spectrum_procedure.yaml", "category": "slot" }, { "name": "speech_detected", - "path": "modules/slots/speech_detected.yaml", + "path": "modules/slots/20260202_matang/new/speech_detected.yaml", "category": "slot" }, { "name": "speech_language", - "path": "modules/slots/speech_language.yaml", + "path": "modules/slots/20260202_matang/new/speech_language.yaml", "category": "slot" }, { "name": "speech_language_confidence", - "path": "modules/slots/speech_language_confidence.yaml", + "path": "modules/slots/20260202_matang/new/speech_language_confidence.yaml", "category": "slot" }, { "name": "speech_text", - "path": "modules/slots/speech_text.yaml", + "path": "modules/slots/20260202_matang/new/speech_text.yaml", "category": "slot" }, { "name": "square_meters", - "path": "modules/slots/square_meters.yaml", + "path": "modules/slots/20260202_matang/new/square_meters.yaml", "category": "slot" }, { "name": "staff_count", - "path": "modules/slots/staff_count.yaml", + "path": "modules/slots/20260202_matang/new/staff_count.yaml", "category": "slot" }, { "name": "staff_id", - "path": "modules/slots/staff_id.yaml", + "path": "modules/slots/20260202_matang/new/staff_id.yaml", "category": "slot" }, { "name": "staff_impact", - "path": "modules/slots/staff_impact.yaml", + "path": "modules/slots/20260202_matang/new/staff_impact.yaml", "category": "slot" }, { "name": "staff_role", - "path": "modules/slots/staff_role.yaml", + "path": "modules/slots/20260202_matang/new/staff_role.yaml", "category": "slot" }, { "name": "standardized_name", - "path": "modules/slots/standardized_name.yaml", + "path": "modules/slots/20260202_matang/new/standardized_name.yaml", "category": "slot" }, { "name": "standards_applied", - "path": "modules/slots/standards_applied.yaml", + "path": "modules/slots/20260202_matang/new/standards_applied.yaml", "category": "slot" }, { "name": "standards_compliance", - "path": "modules/slots/standards_compliance.yaml", + "path": "modules/slots/20260202_matang/new/standards_compliance.yaml", "category": "slot" }, { "name": "start", - "path": "modules/slots/start.yaml", + "path": "modules/slots/20260202_matang/new/start.yaml", "category": "slot" }, { "name": "start_of_the_start", - "path": "modules/slots/start_of_the_start.yaml", + "path": "modules/slots/20260202_matang/new/start_of_the_start.yaml", "category": "slot" }, { "name": "start_seconds", - "path": "modules/slots/start_seconds.yaml", + "path": "modules/slots/20260202_matang/new/start_seconds.yaml", "category": "slot" }, { "name": "start_time", - "path": "modules/slots/start_time.yaml", + "path": "modules/slots/20260202_matang/new/start_time.yaml", "category": "slot" }, { "name": "started_at_time", - "path": "modules/slots/started_at_time.yaml", + "path": "modules/slots/20260202_matang/new/started_at_time.yaml", + "category": "slot" + }, + { + "name": "started_on", + "path": "modules/slots/started_on.yaml", "category": "slot" }, { "name": "starts_or_started_at_location", - "path": "modules/slots/starts_or_started_at_location.yaml", + "path": "modules/slots/20260202_matang/new/starts_or_started_at_location.yaml", "category": "slot" }, { - "name": "statement_currency", - "path": "modules/slots/statement_currency.yaml", + "name": "state", + "path": "modules/slots/state.yaml", "category": "slot" }, { - "name": "statement_description", - "path": "modules/slots/statement_description.yaml", + "name": "store", + "path": "modules/slots/store.yaml", "category": "slot" }, { - "name": "statement_name", - "path": "modules/slots/statement_name.yaml", + "name": "stored_at", + "path": "modules/slots/stored_at.yaml", "category": "slot" }, { - "name": "statement_type", - "path": "modules/slots/statement_type.yaml", + "name": "succeeded_by", + "path": "modules/slots/succeeded_by.yaml", "category": "slot" }, { - "name": "states_or_stated", - "path": "modules/slots/states_or_stated.yaml", + "name": "supersede", + "path": "modules/slots/supersede.yaml", "category": "slot" }, { - "name": "stores_or_stored", - "path": "modules/slots/stores_or_stored.yaml", + "name": "superseded_by", + "path": "modules/slots/superseded_by.yaml", "category": "slot" }, { - "name": "supersedes_or_superseded", - "path": "modules/slots/supersedes_or_superseded.yaml", + "name": "supported_by", + "path": "modules/slots/supported_by.yaml", "category": "slot" }, { - "name": "takes_or_took_comission", - "path": "modules/slots/takes_or_took_comission.yaml", + "name": "symbolize", + "path": "modules/slots/symbolize.yaml", "category": "slot" }, { - "name": "takes_or_took_place_at", - "path": "modules/slots/takes_or_took_place_at.yaml", + "name": "symbolized_by", + "path": "modules/slots/symbolized_by.yaml", + "category": "slot" + }, + { + "name": "take_comission", + "path": "modules/slots/take_comission.yaml", + "category": "slot" + }, + { + "name": "take_place_at", + "path": "modules/slots/take_place_at.yaml", + "category": "slot" + }, + { + "name": "targeted_at", + "path": "modules/slots/targeted_at.yaml", + "category": "slot" + }, + { + "name": "tax_deductible", + "path": "modules/slots/tax_deductible.yaml", "category": "slot" }, { @@ -14563,33 +11768,93 @@ "category": "slot" }, { - "name": "transmits_or_transmitted_through", - "path": "modules/slots/transmits_or_transmitted_through.yaml", + "name": "threatened_by", + "path": "modules/slots/threatened_by.yaml", "category": "slot" }, { - "name": "uses_or_used", - "path": "modules/slots/uses_or_used.yaml", + "name": "track", + "path": "modules/slots/track.yaml", "category": "slot" }, { - "name": "uses_or_used_technique", - "path": "modules/slots/uses_or_used_technique.yaml", + "name": "transferred", + "path": "modules/slots/transferred.yaml", "category": "slot" }, { - "name": "warrants_or_warranted", - "path": "modules/slots/warrants_or_warranted.yaml", + "name": "transferred_to", + "path": "modules/slots/transferred_to.yaml", "category": "slot" }, { - "name": "was_acquired_through", - "path": "modules/slots/was_acquired_through.yaml", + "name": "transmission", + "path": "modules/slots/transmission.yaml", "category": "slot" }, { - "name": "was_fetched_at", - "path": "modules/slots/was_fetched_at.yaml", + "name": "transmit_through", + "path": "modules/slots/transmit_through.yaml", + "category": "slot" + }, + { + "name": "triggered_by", + "path": "modules/slots/triggered_by.yaml", + "category": "slot" + }, + { + "name": "updated_at", + "path": "modules/slots/updated_at.yaml", + "category": "slot" + }, + { + "name": "use", + "path": "modules/slots/use.yaml", + "category": "slot" + }, + { + "name": "use_material", + "path": "modules/slots/use_material.yaml", + "category": "slot" + }, + { + "name": "used_by", + "path": "modules/slots/used_by.yaml", + "category": "slot" + }, + { + "name": "used_for", + "path": "modules/slots/used_for.yaml", + "category": "slot" + }, + { + "name": "used_in", + "path": "modules/slots/used_in.yaml", + "category": "slot" + }, + { + "name": "verified_by", + "path": "modules/slots/verified_by.yaml", + "category": "slot" + }, + { + "name": "visible_in", + "path": "modules/slots/visible_in.yaml", + "category": "slot" + }, + { + "name": "warrant", + "path": "modules/slots/warrant.yaml", + "category": "slot" + }, + { + "name": "webarchived_at", + "path": "modules/slots/webarchived_at.yaml", + "category": "slot" + }, + { + "name": "written_in", + "path": "modules/slots/written_in.yaml", "category": "slot" } ] diff --git a/schemas/20251121/linkml/modules/slots/20260202_matang/new/refers_to_custodian.yaml b/schemas/20251121/linkml/modules/slots/20260202_matang/new/refers_to_custodian.yaml index 68f1220267..4930e2ce05 100644 --- a/schemas/20251121/linkml/modules/slots/20260202_matang/new/refers_to_custodian.yaml +++ b/schemas/20251121/linkml/modules/slots/20260202_matang/new/refers_to_custodian.yaml @@ -27,7 +27,7 @@ slots: - This property connects observations and reconstructions back to the abstract Custodian hub, allowing multiple views of the same entity to be linked together. - Range is Custodian (not uriorcurie) to create explicit relationship in UML diagrams and enable schema validation. broad_mappings: - - schema:organization + - schema:Organization annotations: custodian_types: '["*"]' exact_mappings: \ No newline at end of file diff --git a/schemas/20251121/linkml/modules/slots/has_code.yaml b/schemas/20251121/linkml/modules/slots/has_code.yaml index 6944b620d6..da1cbc1653 100644 --- a/schemas/20251121/linkml/modules/slots/has_code.yaml +++ b/schemas/20251121/linkml/modules/slots/has_code.yaml @@ -142,5 +142,5 @@ slots: | DCTerms | dcterms:identifier | 1395-1418 | close | Unambiguous reference | | Schema.org | schema:identifier | 21325-346 | close | Any identifier for Thing | | CIDOC-CRM | crm:P1_is_identified_by | 1172-1187 | broad | General identification | - | CIDOC-CRM | crm:P48_has_preferred_id | 2353-2369 | narrow | Preferred identifier | + | CIDOC-CRM | crm:P48_has_preferred_identifier | 2353-2369 | narrow | Preferred identifier | - Updated 2026-02-03 with verified ontology mappings and translations.