Implement scripts for schema modifications and ontology verification

- Added `fix_dual_class_link.py` to remove dual class link references from specified YAML files.
- Created `fix_specific_ghosts.py` to apply specific replacements in YAML files based on defined mappings.
- Introduced `migrate_staff_count.py` to migrate staff count references to a new structure in specified YAML files.
- Developed `migrate_type_slots.py` to replace type-related slots with new identifiers across YAML files.
- Implemented `scan_ghost_references.py` to identify and report ghost references to archived slots and classes in YAML files.
- Added `verify_ontology_terms.py` to verify the presence of ontology terms in specified ontology files against schema definitions.
This commit is contained in:
kempersc 2026-01-29 17:10:25 +01:00
parent 2a349b11bb
commit 7cf10084b4
300 changed files with 75950 additions and 2420 deletions

5
archived_classes.txt Normal file
View file

@ -0,0 +1,5 @@
DualClassLink_archived_20260126.yaml
EducationCredential_archived_20260125.yaml
EducationEntry_archived_20260125.yaml
RealnessStatus_archived_20260114.yaml
TemplateSpecificityScores_archived_20260117.yaml

1146
archived_slots.txt Normal file

File diff suppressed because it is too large Load diff

View file

@ -73,6 +73,9 @@ This document catalogs all ontologies used in the GLAM Heritage Custodian projec
|------|----------|---------|--------|-----------|
| `skos.rdf` | SKOS (Simple Knowledge Org System) | 2009 | https://www.w3.org/TR/skos-reference/ | `skos:` |
| `dublin_core_elements.rdf` | Dublin Core Elements | 1.1 | https://www.dublincore.org/specifications/dublin-core/ | `dc:` |
| `dcterms.rdf` | DCMI Metadata Terms (RDF) | 2020 | https://www.dublincore.org/specifications/dublin-core/dcmi-terms/dublin_core_terms.rdf | `dcterms:` |
| `dctype.rdf` | DCMI Type Vocabulary | 2012 | https://www.dublincore.org/specifications/dublin-core/dcmi-type-vocabulary/ | `dcmitype:` |
| `oa.ttl` | Open Annotation Data Model | 2013 | https://www.w3.org/TR/annotation-vocab/ | `oa:` |
| `dcat3.ttl` | DCAT (Data Catalog Vocabulary) | 3.0 | https://www.w3.org/TR/vocab-dcat-3/ | `dcat:` |
| `schemaorg.owl` | Schema.org | 2024 | https://schema.org/ | `schema:` |
| `vcard.rdf` | vCard Ontology | 4.0 | https://www.w3.org/TR/vcard-rdf/ | `vcard:` |

2103
data/ontology/dcterms.rdf Normal file

File diff suppressed because it is too large Load diff

21762
data/ontology/dcterms.ttl Normal file

File diff suppressed because it is too large Load diff

152
data/ontology/dctype.rdf Normal file
View file

@ -0,0 +1,152 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE rdf:RDF [
<!ENTITY rdfns 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'>
<!ENTITY rdfsns 'http://www.w3.org/2000/01/rdf-schema#'>
<!ENTITY dcns 'http://purl.org/dc/elements/1.1/'>
<!ENTITY dctermsns 'http://purl.org/dc/terms/'>
<!ENTITY dctypens 'http://purl.org/dc/dcmitype/'>
<!ENTITY dcamns 'http://purl.org/dc/dcam/'>
<!ENTITY skosns 'http://www.w3.org/2004/02/skos/core#'>
<!ENTITY owlns 'http://www.w3.org/2002/07/owl#'>
]>
<rdf:RDF xmlns:owl="http://www.w3.org/2002/07/owl#" xmlns:skos="http://www.w3.org/2004/02/skos/core#" xmlns:dcam="http://purl.org/dc/dcam/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#">
<rdf:Description rdf:about="http://purl.org/dc/dcmitype/">
<dcterms:title xml:lang="en">DCMI Type Vocabulary</dcterms:title>
<dcterms:publisher rdf:resource="http://purl.org/dc/aboutdcmi#DCMI"/>
<dcterms:modified rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2012-06-14</dcterms:modified>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/dc/dcmitype/Collection">
<rdfs:label xml:lang="en">Collection</rdfs:label>
<rdfs:comment xml:lang="en">An aggregation of resources.</rdfs:comment>
<dcterms:description xml:lang="en">A collection is described as a group; its parts may also be separately described.</dcterms:description>
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/dcmitype/"/>
<dcterms:issued rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2000-07-11</dcterms:issued>
<dcterms:modified rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2008-01-14</dcterms:modified>
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
<dcterms:hasVersion rdf:resource="http://dublincore.org/usage/terms/history/#Collection-003"/>
<dcam:memberOf rdf:resource="http://purl.org/dc/terms/DCMIType"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/dc/dcmitype/Dataset">
<rdfs:label xml:lang="en">Dataset</rdfs:label>
<rdfs:comment xml:lang="en">Data encoded in a defined structure.</rdfs:comment>
<dcterms:description xml:lang="en">Examples include lists, tables, and databases. A dataset may be useful for direct machine processing.</dcterms:description>
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/dcmitype/"/>
<dcterms:issued rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2000-07-11</dcterms:issued>
<dcterms:modified rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2008-01-14</dcterms:modified>
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
<dcterms:hasVersion rdf:resource="http://dublincore.org/usage/terms/history/#Dataset-003"/>
<dcam:memberOf rdf:resource="http://purl.org/dc/terms/DCMIType"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/dc/dcmitype/Event">
<rdfs:label xml:lang="en">Event</rdfs:label>
<rdfs:comment xml:lang="en">A non-persistent, time-based occurrence.</rdfs:comment>
<dcterms:description xml:lang="en">Metadata for an event provides descriptive information that is the basis for discovery of the purpose, location, duration, and responsible agents associated with an event. Examples include an exhibition, webcast, conference, workshop, open day, performance, battle, trial, wedding, tea party, conflagration.</dcterms:description>
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/dcmitype/"/>
<dcterms:issued rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2000-07-11</dcterms:issued>
<dcterms:modified rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2008-01-14</dcterms:modified>
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
<dcterms:hasVersion rdf:resource="http://dublincore.org/usage/terms/history/#Event-003"/>
<dcam:memberOf rdf:resource="http://purl.org/dc/terms/DCMIType"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/dc/dcmitype/Image">
<rdfs:label xml:lang="en">Image</rdfs:label>
<rdfs:comment xml:lang="en">A visual representation other than text.</rdfs:comment>
<dcterms:description xml:lang="en">Examples include images and photographs of physical objects, paintings, prints, drawings, other images and graphics, animations and moving pictures, film, diagrams, maps, musical notation. Note that Image may include both electronic and physical representations.</dcterms:description>
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/dcmitype/"/>
<dcterms:issued rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2000-07-11</dcterms:issued>
<dcterms:modified rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2008-01-14</dcterms:modified>
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
<dcterms:hasVersion rdf:resource="http://dublincore.org/usage/terms/history/#Image-004"/>
<dcam:memberOf rdf:resource="http://purl.org/dc/terms/DCMIType"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/dc/dcmitype/InteractiveResource">
<rdfs:label xml:lang="en">Interactive Resource</rdfs:label>
<rdfs:comment xml:lang="en">A resource requiring interaction from the user to be understood, executed, or experienced.</rdfs:comment>
<dcterms:description xml:lang="en">Examples include forms on Web pages, applets, multimedia learning objects, chat services, or virtual reality environments.</dcterms:description>
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/dcmitype/"/>
<dcterms:issued rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2000-07-11</dcterms:issued>
<dcterms:modified rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2008-01-14</dcterms:modified>
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
<dcterms:hasVersion rdf:resource="http://dublincore.org/usage/terms/history/#InteractiveResource-003"/>
<dcam:memberOf rdf:resource="http://purl.org/dc/terms/DCMIType"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/dc/dcmitype/Service">
<rdfs:label xml:lang="en">Service</rdfs:label>
<rdfs:comment xml:lang="en">A system that provides one or more functions.</rdfs:comment>
<dcterms:description xml:lang="en">Examples include a photocopying service, a banking service, an authentication service, interlibrary loans, a Z39.50 or Web server.</dcterms:description>
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/dcmitype/"/>
<dcterms:issued rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2000-07-11</dcterms:issued>
<dcterms:modified rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2008-01-14</dcterms:modified>
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
<dcterms:hasVersion rdf:resource="http://dublincore.org/usage/terms/history/#Service-003"/>
<dcam:memberOf rdf:resource="http://purl.org/dc/terms/DCMIType"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/dc/dcmitype/Software">
<rdfs:label xml:lang="en">Software</rdfs:label>
<rdfs:comment xml:lang="en">A computer program in source or compiled form.</rdfs:comment>
<dcterms:description xml:lang="en">Examples include a C source file, MS-Windows .exe executable, or Perl script.</dcterms:description>
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/dcmitype/"/>
<dcterms:issued rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2000-07-11</dcterms:issued>
<dcterms:modified rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2008-01-14</dcterms:modified>
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
<dcterms:hasVersion rdf:resource="http://dublincore.org/usage/terms/history/#Software-003"/>
<dcam:memberOf rdf:resource="http://purl.org/dc/terms/DCMIType"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/dc/dcmitype/Sound">
<rdfs:label xml:lang="en">Sound</rdfs:label>
<rdfs:comment xml:lang="en">A resource primarily intended to be heard.</rdfs:comment>
<dcterms:description xml:lang="en">Examples include a music playback file format, an audio compact disc, and recorded speech or sounds.</dcterms:description>
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/dcmitype/"/>
<dcterms:issued rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2000-07-11</dcterms:issued>
<dcterms:modified rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2008-01-14</dcterms:modified>
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
<dcterms:hasVersion rdf:resource="http://dublincore.org/usage/terms/history/#Sound-003"/>
<dcam:memberOf rdf:resource="http://purl.org/dc/terms/DCMIType"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/dc/dcmitype/Text">
<rdfs:label xml:lang="en">Text</rdfs:label>
<rdfs:comment xml:lang="en">A resource consisting primarily of words for reading.</rdfs:comment>
<dcterms:description xml:lang="en">Examples include books, letters, dissertations, poems, newspapers, articles, archives of mailing lists. Note that facsimiles or images of texts are still of the genre Text.</dcterms:description>
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/dcmitype/"/>
<dcterms:issued rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2000-07-11</dcterms:issued>
<dcterms:modified rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2008-01-14</dcterms:modified>
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
<dcterms:hasVersion rdf:resource="http://dublincore.org/usage/terms/history/#Text-003"/>
<dcam:memberOf rdf:resource="http://purl.org/dc/terms/DCMIType"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/dc/dcmitype/PhysicalObject">
<rdfs:label xml:lang="en">Physical Object</rdfs:label>
<rdfs:comment xml:lang="en">An inanimate, three-dimensional object or substance.</rdfs:comment>
<dcterms:description xml:lang="en">Note that digital representations of, or surrogates for, these objects should use Image, Text or one of the other types.</dcterms:description>
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/dcmitype/"/>
<dcterms:issued rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2002-07-13</dcterms:issued>
<dcterms:modified rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2008-01-14</dcterms:modified>
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
<dcterms:hasVersion rdf:resource="http://dublincore.org/usage/terms/history/#PhysicalObject-003"/>
<dcam:memberOf rdf:resource="http://purl.org/dc/terms/DCMIType"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/dc/dcmitype/StillImage">
<rdfs:label xml:lang="en">Still Image</rdfs:label>
<rdfs:comment xml:lang="en">A static visual representation.</rdfs:comment>
<dcterms:description xml:lang="en">Examples include paintings, drawings, graphic designs, plans and maps. Recommended best practice is to assign the type Text to images of textual materials. Instances of the type Still Image must also be describable as instances of the broader type Image.</dcterms:description>
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/dcmitype/"/>
<dcterms:issued rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2003-11-18</dcterms:issued>
<dcterms:modified rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2008-01-14</dcterms:modified>
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
<dcterms:hasVersion rdf:resource="http://dublincore.org/usage/terms/history/#StillImage-003"/>
<dcam:memberOf rdf:resource="http://purl.org/dc/terms/DCMIType"/>
<rdfs:subClassOf rdf:resource="http://purl.org/dc/dcmitype/Image"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/dc/dcmitype/MovingImage">
<rdfs:label xml:lang="en">Moving Image</rdfs:label>
<rdfs:comment xml:lang="en">A series of visual representations imparting an impression of motion when shown in succession.</rdfs:comment>
<dcterms:description xml:lang="en">Examples include animations, movies, television programs, videos, zoetropes, or visual output from a simulation. Instances of the type Moving Image must also be describable as instances of the broader type Image.</dcterms:description>
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/dcmitype/"/>
<dcterms:issued rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2003-11-18</dcterms:issued>
<dcterms:modified rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2008-01-14</dcterms:modified>
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
<dcterms:hasVersion rdf:resource="http://dublincore.org/usage/terms/history/#MovingImage-003"/>
<dcam:memberOf rdf:resource="http://purl.org/dc/terms/DCMIType"/>
<rdfs:subClassOf rdf:resource="http://purl.org/dc/dcmitype/Image"/>
</rdf:Description>
</rdf:RDF>

429
data/ontology/oa.ttl Normal file
View file

@ -0,0 +1,429 @@
@prefix acl: <http://www.w3.org/ns/auth/acl#> .
@prefix as: <http://www.w3.org/ns/activitystreams#> .
@prefix bibo: <http://purl.org/ontology/bibo/> .
@prefix cnt: <http://www.w3.org/2011/content#> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix dctypes: <http://purl.org/dc/dcmitype/> .
@prefix exif: <http://www.w3.org/2003/12/exif/ns#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix geo: <http://www.w3.org/2003/01/geo/wgs84_pos#> .
@prefix gr: <http://purl.org/goodrelations/v1#> .
@prefix iana: <http://www.iana.org/assignments/relation/> .
@prefix iiif: <http://iiif.io/api/image/2#> .
@prefix ldp: <http://www.w3.org/ns/ldp#> .
@prefix oa: <http://www.w3.org/ns/oa#> .
@prefix ore: <http://www.openarchives.org/ore/terms/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix pcdm: <http://pcdm.org/models#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sc: <http://iiif.io/api/presentation/2#> .
@prefix sioc: <http://rdfs.org/sioc/ns#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix svcs: <http://rdfs.org/sioc/services#> .
@prefix time: <http://www.w3.org/2006/time#> .
@prefix trig: <http://www.w3.org/2004/03/trix/rdfg-1/> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
oa:Annotation a rdfs:Class ;
rdfs:label "Annotation" ;
rdfs:comment "The class for Web Annotations." ;
rdfs:isDefinedBy oa: .
oa:Choice a rdfs:Class ;
rdfs:label "Choice" ;
rdfs:comment "A subClass of as:OrderedCollection that conveys to a consuming application that it should select one of the resources in the as:items list to use, rather than all of them. This is typically used to provide a choice of resources to render to the user, based on further supplied properties. If the consuming application cannot determine the user's preference, then it should use the first in the list." ;
rdfs:isDefinedBy oa: ;
rdfs:subClassOf as:OrderedCollection .
oa:CssSelector a rdfs:Class ;
rdfs:label "CssSelector" ;
rdfs:comment "A CssSelector describes a Segment of interest in a representation that conforms to the Document Object Model through the use of the CSS selector specification." ;
rdfs:isDefinedBy oa: ;
rdfs:subClassOf oa:Selector .
oa:CssStyle a rdfs:Class ;
rdfs:label "CssStyle" ;
rdfs:comment "A resource which describes styles for resources participating in the Annotation using CSS." ;
rdfs:isDefinedBy oa: ;
rdfs:subClassOf oa:Style .
oa:DataPositionSelector a rdfs:Class ;
rdfs:label "DataPositionSelector" ;
rdfs:comment "DataPositionSelector describes a range of data by recording the start and end positions of the selection in the stream. Position 0 would be immediately before the first byte, position 1 would be immediately before the second byte, and so on. The start byte is thus included in the list, but the end byte is not." ;
rdfs:isDefinedBy oa: ;
rdfs:subClassOf oa:Selector .
oa:Direction a rdfs:Class ;
rdfs:label "Direction" ;
rdfs:comment "A class to encapsulate the different text directions that a textual resource might take. It is not used directly in the Annotation Model, only its three instances." ;
rdfs:isDefinedBy oa: .
oa:FragmentSelector a rdfs:Class ;
rdfs:label "FragmentSelector" ;
rdfs:comment "The FragmentSelector class is used to record the segment of a representation using the IRI fragment specification defined by the representation's media type." ;
rdfs:isDefinedBy oa: ;
rdfs:subClassOf oa:Selector .
oa:HttpRequestState a rdfs:Class ;
rdfs:label "HttpRequestState" ;
rdfs:comment "The HttpRequestState class is used to record the HTTP request headers that a client SHOULD use to request the correct representation from the resource. " ;
rdfs:isDefinedBy oa: ;
rdfs:subClassOf oa:State .
oa:Motivation a rdfs:Class ;
rdfs:label "Motivation" ;
rdfs:comment "The Motivation class is used to record the user's intent or motivation for the creation of the Annotation, or the inclusion of the body or target, that it is associated with." ;
rdfs:isDefinedBy oa: ;
rdfs:subClassOf skos:Concept .
oa:RangeSelector a rdfs:Class ;
rdfs:label "RangeSelector" ;
rdfs:comment "A Range Selector can be used to identify the beginning and the end of the selection by using other Selectors. The selection consists of everything from the beginning of the starting selector through to the beginning of the ending selector, but not including it." ;
rdfs:isDefinedBy oa: ;
rdfs:subClassOf oa:Selector .
oa:ResourceSelection a rdfs:Class ;
rdfs:label "ResourceSelection" ;
rdfs:comment "Instances of the ResourceSelection class identify part (described by an oa:Selector) of another resource (referenced with oa:hasSource), possibly from a particular representation of a resource (described by an oa:State). Please note that ResourceSelection is not used directly in the Web Annotation model, but is provided as a separate class for further application profiles to use, separate from oa:SpecificResource which has many Annotation specific features." ;
rdfs:isDefinedBy oa: .
oa:Selector a rdfs:Class ;
rdfs:label "Selector" ;
rdfs:comment "A resource which describes the segment of interest in a representation of a Source resource, indicated with oa:hasSelector from the Specific Resource. This class is not used directly in the Annotation model, only its subclasses." ;
rdfs:isDefinedBy oa: .
oa:SpecificResource a rdfs:Class ;
rdfs:label "SpecificResource" ;
rdfs:comment "Instances of the SpecificResource class identify part of another resource (referenced with oa:hasSource), a particular representation of a resource, a resource with styling hints for renders, or any combination of these, as used within an Annotation." ;
rdfs:isDefinedBy oa: ;
rdfs:subClassOf oa:ResourceSelection .
oa:State a rdfs:Class ;
rdfs:label "State" ;
rdfs:comment "A State describes the intended state of a resource as applied to the particular Annotation, and thus provides the information needed to retrieve the correct representation of that resource." ;
rdfs:isDefinedBy oa: .
oa:Style a rdfs:Class ;
rdfs:label "Style" ;
rdfs:comment "A Style describes the intended styling of a resource as applied to the particular Annotation, and thus provides the information to ensure that rendering is consistent across implementations." ;
rdfs:isDefinedBy oa: .
oa:SvgSelector a rdfs:Class ;
rdfs:label "SvgSelector" ;
rdfs:comment "An SvgSelector defines an area through the use of the Scalable Vector Graphics [SVG] standard. This allows the user to select a non-rectangular area of the content, such as a circle or polygon by describing the region using SVG. The SVG may be either embedded within the Annotation or referenced as an External Resource." ;
rdfs:isDefinedBy oa: ;
rdfs:subClassOf oa:Selector .
oa:TextPositionSelector a rdfs:Class ;
rdfs:label "TextPositionSelector" ;
rdfs:comment "The TextPositionSelector describes a range of text by recording the start and end positions of the selection in the stream. Position 0 would be immediately before the first character, position 1 would be immediately before the second character, and so on." ;
rdfs:isDefinedBy oa: ;
rdfs:subClassOf oa:Selector .
oa:TextQuoteSelector a rdfs:Class ;
rdfs:label "TextQuoteSelector" ;
rdfs:comment "The TextQuoteSelector describes a range of text by copying it, and including some of the text immediately before (a prefix) and after (a suffix) it to distinguish between multiple copies of the same sequence of characters." ;
rdfs:isDefinedBy oa: ;
rdfs:subClassOf oa:Selector .
oa:TextualBody a rdfs:Class ;
rdfs:label "TextualBody" ;
rdfs:comment "" ;
rdfs:isDefinedBy oa: .
oa:TimeState a rdfs:Class ;
rdfs:label "TimeState" ;
rdfs:comment "A TimeState records the time at which the resource's state is appropriate for the Annotation, typically the time that the Annotation was created and/or a link to a persistent copy of the current version." ;
rdfs:isDefinedBy oa: ;
rdfs:subClassOf oa:State .
oa:XPathSelector a rdfs:Class ;
rdfs:label "XPathSelector" ;
rdfs:comment " An XPathSelector is used to select elements and content within a resource that supports the Document Object Model via a specified XPath value." ;
rdfs:isDefinedBy oa: ;
rdfs:subClassOf oa:Selector .
oa:PreferContainedDescriptions a rdfs:Resource ;
rdfs:label "PreferContainedDescriptions" ;
rdfs:comment "An IRI to signal the client prefers to receive full descriptions of the Annotations from a container, not just their IRIs." ;
rdfs:isDefinedBy oa: .
oa:PreferContainedIRIs a rdfs:Resource ;
rdfs:label "PreferContainedIRIs" ;
rdfs:comment "An IRI to signal that the client prefers to receive only the IRIs of the Annotations from a container, not their full descriptions." ;
rdfs:isDefinedBy oa: .
oa:annotationService a rdf:Property ;
rdfs:label "annotationService" ;
rdfs:comment """The object of the relationship is the end point of a service that conforms to the annotation-protocol, and it may be associated with any resource. The expectation of asserting the relationship is that the object is the preferred service for maintaining annotations about the subject resource, according to the publisher of the relationship.
This relationship is intended to be used both within Linked Data descriptions and as the rel type of a Link, via HTTP Link Headers rfc5988 for binary resources and in HTML <link> elements. For more information about these, please see the Annotation Protocol specification annotation-protocol.
""" ;
rdfs:isDefinedBy oa: .
oa:assessing a oa:Motivation ;
rdfs:label "assessing" ;
rdfs:comment "The motivation for when the user intends to provide an assessment about the Target resource." ;
rdfs:isDefinedBy oa: .
oa:bodyValue a rdf:Property ;
rdfs:label "bodyValue" ;
rdfs:comment """The object of the predicate is a plain text string to be used as the content of the body of the Annotation. The value MUST be an xsd:string and that data type MUST NOT be expressed in the serialization. Note that language MUST NOT be associated with the value either as a language tag, as that is only available for rdf:langString .
""" ;
rdfs:domain oa:Annotation ;
rdfs:isDefinedBy oa: ;
rdfs:range xsd:string .
oa:bookmarking a oa:Motivation ;
rdfs:label "bookmarking" ;
rdfs:comment "The motivation for when the user intends to create a bookmark to the Target or part thereof." ;
rdfs:isDefinedBy oa: .
oa:cachedSource a rdf:Property ;
rdfs:label "cachedSource" ;
rdfs:comment "A object of the relationship is a copy of the Source resource's representation, appropriate for the Annotation." ;
rdfs:domain oa:TimeState ;
rdfs:isDefinedBy oa: .
oa:canonical a rdf:Property ;
rdfs:label "canonical" ;
rdfs:comment "A object of the relationship is the canonical IRI that can always be used to deduplicate the Annotation, regardless of the current IRI used to access the representation." ;
rdfs:isDefinedBy oa: .
oa:classifying a oa:Motivation ;
rdfs:label "classifying" ;
rdfs:comment "The motivation for when the user intends to that classify the Target as something." ;
rdfs:isDefinedBy oa: .
oa:commenting a oa:Motivation ;
rdfs:label "commenting" ;
rdfs:comment "The motivation for when the user intends to comment about the Target." ;
rdfs:isDefinedBy oa: .
oa:describing a oa:Motivation ;
rdfs:label "describing" ;
rdfs:comment "The motivation for when the user intends to describe the Target, as opposed to a comment about them." ;
rdfs:isDefinedBy oa: .
oa:editing a oa:Motivation ;
rdfs:label "editing" ;
rdfs:comment "The motivation for when the user intends to request a change or edit to the Target resource." ;
rdfs:isDefinedBy oa: .
oa:end a rdf:Property ;
rdfs:label "end" ;
rdfs:comment "The end property is used to convey the 0-based index of the end position of a range of content." ;
rdfs:isDefinedBy oa: ;
rdfs:range xsd:nonNegativeInteger .
oa:exact a rdf:Property ;
rdfs:label "exact" ;
rdfs:comment "The object of the predicate is a copy of the text which is being selected, after normalization." ;
rdfs:isDefinedBy oa: ;
rdfs:range xsd:string .
oa:hasBody a rdf:Property ;
rdfs:label "hasBody" ;
rdfs:comment "The object of the relationship is a resource that is a body of the Annotation." ;
rdfs:domain oa:Annotation ;
rdfs:isDefinedBy oa: .
oa:hasEndSelector a rdf:Property ;
rdfs:label "hasEndSelector" ;
rdfs:comment "The relationship between a RangeSelector and the Selector that describes the end position of the range. " ;
rdfs:domain oa:RangeSelector ;
rdfs:isDefinedBy oa: ;
rdfs:range oa:Selector .
oa:hasPurpose a rdf:Property ;
rdfs:label "hasPurpose" ;
rdfs:comment "The purpose served by the resource in the Annotation." ;
rdfs:isDefinedBy oa: ;
rdfs:range oa:Motivation .
oa:hasScope a rdf:Property ;
rdfs:label "hasScope" ;
rdfs:comment "The scope or context in which the resource is used within the Annotation." ;
rdfs:domain oa:SpecificResource ;
rdfs:isDefinedBy oa: .
oa:hasSelector a rdf:Property ;
rdfs:label "hasSelector" ;
rdfs:comment "The object of the relationship is a Selector that describes the segment or region of interest within the source resource. Please note that the domain ( oa:ResourceSelection ) is not used directly in the Web Annotation model." ;
rdfs:domain oa:ResourceSelection ;
rdfs:isDefinedBy oa: ;
rdfs:range oa:Selector .
oa:hasSource a rdf:Property ;
rdfs:label "hasSource" ;
rdfs:comment "The resource that the ResourceSelection, or its subclass SpecificResource, is refined from, or more specific than. Please note that the domain ( oa:ResourceSelection ) is not used directly in the Web Annotation model." ;
rdfs:domain oa:ResourceSelection ;
rdfs:isDefinedBy oa: .
oa:hasStartSelector a rdf:Property ;
rdfs:label "hasStartSelector" ;
rdfs:comment "The relationship between a RangeSelector and the Selector that describes the start position of the range. " ;
rdfs:domain oa:RangeSelector ;
rdfs:isDefinedBy oa: ;
rdfs:range oa:Selector .
oa:hasState a rdf:Property ;
rdfs:label "hasState" ;
rdfs:comment "The relationship between the ResourceSelection, or its subclass SpecificResource, and a State resource. Please note that the domain ( oa:ResourceSelection ) is not used directly in the Web Annotation model." ;
rdfs:domain oa:ResourceSelection ;
rdfs:isDefinedBy oa: ;
rdfs:range oa:State .
oa:hasTarget a rdf:Property ;
rdfs:label "hasTarget" ;
rdfs:comment "The relationship between an Annotation and its Target." ;
rdfs:domain oa:Annotation ;
rdfs:isDefinedBy oa: .
oa:highlighting a oa:Motivation ;
rdfs:label "highlighting" ;
rdfs:comment "The motivation for when the user intends to highlight the Target resource or segment of it." ;
rdfs:isDefinedBy oa: .
oa:identifying a oa:Motivation ;
rdfs:label "identifying" ;
rdfs:comment "The motivation for when the user intends to assign an identity to the Target or identify what is being depicted or described in the Target." ;
rdfs:isDefinedBy oa: .
oa:linking a oa:Motivation ;
rdfs:label "linking" ;
rdfs:comment "The motivation for when the user intends to link to a resource related to the Target." ;
rdfs:isDefinedBy oa: .
oa:ltrDirection a oa:Direction ;
rdfs:label "ltrDirection" ;
rdfs:comment "The direction of text that is read from left to right." ;
rdfs:isDefinedBy oa: .
oa:moderating a oa:Motivation ;
rdfs:label "moderating" ;
rdfs:comment "The motivation for when the user intends to assign some value or quality to the Target." ;
rdfs:isDefinedBy oa: .
oa:motivatedBy a rdf:Property ;
rdfs:label "motivatedBy" ;
rdfs:comment "The relationship between an Annotation and a Motivation that describes the reason for the Annotation's creation." ;
rdfs:domain oa:Annotation ;
rdfs:isDefinedBy oa: ;
rdfs:range oa:Motivation .
oa:prefix a rdf:Property ;
rdfs:label "prefix" ;
rdfs:comment "The object of the property is a snippet of content that occurs immediately before the content which is being selected by the Selector." ;
rdfs:isDefinedBy oa: ;
rdfs:range xsd:string .
oa:processingLanguage a rdf:Property ;
rdfs:label "processingLanguage" ;
rdfs:comment "The object of the property is the language that should be used for textual processing algorithms when dealing with the content of the resource, including hyphenation, line breaking, which font to use for rendering and so forth. The value must follow the recommendations of BCP47." ;
rdfs:isDefinedBy oa: ;
rdfs:range xsd:string .
oa:questioning a oa:Motivation ;
rdfs:label "questioning" ;
rdfs:comment "The motivation for when the user intends to ask a question about the Target." ;
rdfs:isDefinedBy oa: .
oa:refinedBy a rdf:Property ;
rdfs:label "refinedBy" ;
rdfs:comment "The relationship between a Selector and another Selector or a State and a Selector or State that should be applied to the results of the first to refine the processing of the source resource. " ;
rdfs:isDefinedBy oa: .
oa:renderedVia a rdf:Property ;
rdfs:label "renderedVia" ;
rdfs:comment "A system that was used by the application that created the Annotation to render the resource." ;
rdfs:domain oa:SpecificResource ;
rdfs:isDefinedBy oa: .
oa:replying a oa:Motivation ;
rdfs:label "replying" ;
rdfs:comment "The motivation for when the user intends to reply to a previous statement, either an Annotation or another resource." ;
rdfs:isDefinedBy oa: .
oa:rtlDirection a oa:Direction ;
rdfs:label "rtlDirection" ;
rdfs:comment "The direction of text that is read from right to left." ;
rdfs:isDefinedBy oa: .
oa:sourceDate a rdf:Property ;
rdfs:label "sourceDate" ;
rdfs:comment "The timestamp at which the Source resource should be interpreted as being applicable to the Annotation." ;
rdfs:domain oa:TimeState ;
rdfs:isDefinedBy oa: ;
rdfs:range xsd:dateTime .
oa:sourceDateEnd a rdf:Property ;
rdfs:label "sourceDateEnd" ;
rdfs:comment "The end timestamp of the interval over which the Source resource should be interpreted as being applicable to the Annotation." ;
rdfs:domain oa:TimeState ;
rdfs:isDefinedBy oa: ;
rdfs:range xsd:dateTime .
oa:sourceDateStart a rdf:Property ;
rdfs:label "sourceDateStart" ;
rdfs:comment "The start timestamp of the interval over which the Source resource should be interpreted as being applicable to the Annotation." ;
rdfs:domain oa:TimeState ;
rdfs:isDefinedBy oa: ;
rdfs:range xsd:dateTime .
oa:start a rdf:Property ;
rdfs:label "start" ;
rdfs:comment "The start position in a 0-based index at which a range of content is selected from the data in the source resource." ;
rdfs:isDefinedBy oa: ;
rdfs:range xsd:nonNegativeInteger .
oa:styleClass a rdf:Property ;
rdfs:label "styleClass" ;
rdfs:comment "The name of the class used in the CSS description referenced from the Annotation that should be applied to the Specific Resource." ;
rdfs:domain oa:SpecificResource ;
rdfs:isDefinedBy oa: ;
rdfs:range xsd:string .
oa:styledBy a rdf:Property ;
rdfs:label "styledBy" ;
rdfs:comment "A reference to a Stylesheet that should be used to apply styles to the Annotation rendering." ;
rdfs:domain oa:Annotation ;
rdfs:isDefinedBy oa: ;
rdfs:range oa:Style .
oa:suffix a rdf:Property ;
rdfs:label "suffix" ;
rdfs:comment "The snippet of text that occurs immediately after the text which is being selected." ;
rdfs:isDefinedBy oa: ;
rdfs:range xsd:string .
oa:tagging a oa:Motivation ;
rdfs:label "tagging" ;
rdfs:comment "The motivation for when the user intends to associate a tag with the Target." ;
rdfs:isDefinedBy oa: .
oa:textDirection a rdf:Property ;
rdfs:label "textDirection" ;
rdfs:comment "The direction of the text of the subject resource. There MUST only be one text direction associated with any given resource." ;
rdfs:isDefinedBy oa: ;
rdfs:range oa:Direction .
oa:via a rdf:Property ;
rdfs:label "via" ;
rdfs:comment "A object of the relationship is a resource from which the source resource was retrieved by the providing system." ;
rdfs:isDefinedBy oa: .
oa: a owl:Ontology ;
dc:title "Web Annotation Ontology" ;
dcterms:creator [a foaf:Person; foaf:name "Benjamin Young"],
[a foaf:Person; foaf:name "Paolo Ciccarese"],
[a foaf:Person; foaf:name "Robert Sanderson"] ;
dcterms:modified "2016-11-12T21:28:11Z" ;
rdfs:comment "The Web Annotation ontology defines the terms of the Web Annotation vocabulary. Any changes to this document MUST be from a Working Group in the W3C that has established expertise in the area." ;
rdfs:seeAlso <http://www.w3.org/TR/annotation-vocab/> ;
prov:wasRevisionOf <http://www.openannotation.org/spec/core/20130208/oa.owl> ;
owl:versionInfo "2016-11-12T21:28:11Z" .

41011
data/ontology/schemaorg.owl Normal file

File diff suppressed because it is too large Load diff

View file

@ -4,7 +4,7 @@
"version": "0.0.0",
"type": "module",
"scripts": {
"sync-schemas": "rsync -av --delete ../schemas/20251121/linkml/ public/schemas/20251121/linkml/",
"sync-schemas": "rsync -av --delete --exclude=\"archive/\" ../schemas/20251121/linkml/ public/schemas/20251121/linkml/",
"generate-manifest": "node scripts/generate-schema-manifest.cjs",
"dev": "pnpm run sync-schemas && pnpm run generate-manifest && vite",
"build": "pnpm run sync-schemas && pnpm run generate-manifest && tsc -b && vite build",

View file

@ -692,6 +692,7 @@ if [ "$DEPLOY_API" = true ]; then
mkdir -p /var/lib/glam/api/schemas/20251121/linkml/modules/classes"
rsync -avz --progress \
-e "ssh -o StrictHostKeyChecking=no" \
--exclude="archive/" \
"$PROJECT_ROOT/schemas/20251121/linkml/" \
"$SERVER_USER@$SERVER_IP:/var/lib/glam/api/schemas/20251121/linkml/"

472
missing_ontology_terms.txt Normal file
View file

@ -0,0 +1,472 @@
schemas/20251121/linkml/01_custodian_name_modular.yaml
schemas/20251121/linkml/archive/refactored/StaffRoles_monolithic_20260108.yaml
schemas/20251121/linkml/archive/refactored/DataLicensePolicy_monolithic_20260108.yaml
schemas/20251121/linkml/archive/refactored/ReadingRoom_monolithic_20260108.yaml
schemas/20251121/linkml/archive/refactored/LanguageProficiency_monolithic_20260108.yaml
schemas/20251121/linkml/archive/refactored/FindingAid_monolithic_20260108.yaml
schemas/20251121/linkml/archive/refactored/VideoPost_monolithic_20260108.yaml
schemas/20251121/linkml/archive/refactored/class_metadata_slots_monolithic_20260107.yaml
schemas/20251121/linkml/archive/refactored/CateringPlace_monolithic_20260108.yaml
schemas/20251121/linkml/archive/refactored/EncompassingBody_monolithic_20260108.yaml
schemas/20251121/linkml/archive/refactored/OAIPMHEndpoint_monolithic_20260108.yaml
schemas/20251121/linkml/archive/refactored/identifier_standards_schema_monolithic_20260108.yaml
schemas/20251121/linkml/archive/refactored/VideoChapter_monolithic_20260108.yaml
schemas/20251121/linkml/archive/refactored/FindingAidType_monolithic_20260108.yaml
schemas/20251121/linkml/archive/refactored/DataServiceEndpoint_monolithic_20260108.yaml
schemas/20251121/linkml/archive/slots/has_or_had_access_control.yaml
schemas/20251121/linkml/archive/slots/identifier_format_used.yaml
schemas/20251121/linkml/archive/slots/has_or_had_manages_collection.yaml
schemas/20251121/linkml/archive/slots/has_derived_observation.yaml
schemas/20251121/linkml/archive/slots/has_or_had_access_description.yaml
schemas/20251121/linkml/archive/slots/illustration.yaml
schemas/20251121/linkml/archive/slots/allows_or_allowed_photography_archived_20260114.yaml
schemas/20251121/linkml/archive/slots/has_or_had_external_resource.yaml
schemas/20251121/linkml/archive/slots/has_auction_house.yaml
schemas/20251121/linkml/archive/slots/has_or_had_comprehensive_overview.yaml
schemas/20251121/linkml/archive/slots/implements_auxiliary_platform.yaml
schemas/20251121/linkml/archive/slots/has_or_had_exposed_collection.yaml
schemas/20251121/linkml/archive/slots/has_or_had_policy.yaml
schemas/20251121/linkml/archive/slots/has_or_had_about_text.yaml
schemas/20251121/linkml/archive/slots/has_auxiliary_platform.yaml
schemas/20251121/linkml/archive/slots/has_or_had_managed_collection.yaml
schemas/20251121/linkml/archive/slots/has_or_had_registration_number.yaml
schemas/20251121/linkml/archive/slots/has_or_had_administrative_expense_archived_20260114.yaml
schemas/20251121/linkml/archive/slots/has_or_had_access_condition.yaml
schemas/20251121/linkml/archive/slots/has_or_had_access_level.yaml
schemas/20251121/linkml/examples/registration_info_examples.yaml
schemas/20251121/linkml/instances/enums/reconstruction_activity_type.yaml
schemas/20251121/linkml/instances/enums/feature_type.yaml
schemas/20251121/linkml/instances/enums/encompassing_body_type.yaml
schemas/20251121/linkml/instances/enums/agent_type.yaml
schemas/20251121/linkml/instances/enums/source_document_type.yaml
schemas/20251121/linkml/instances/enums/entity_type.yaml
schemas/20251121/linkml/instances/enums/place_specificity.yaml
schemas/20251121/linkml/modules/classes/ExtractionSourceInfo.yaml
schemas/20251121/linkml/modules/classes/RegistrationAuthority.yaml
schemas/20251121/linkml/modules/classes/LegalEntityType.yaml
schemas/20251121/linkml/modules/classes/EnrichmentMethod.yaml
schemas/20251121/linkml/modules/classes/Arrangement.yaml
schemas/20251121/linkml/modules/classes/Methodology.yaml
schemas/20251121/linkml/modules/classes/LibraryType.yaml
schemas/20251121/linkml/modules/classes/Carrier.yaml
schemas/20251121/linkml/modules/classes/Agreement.yaml
schemas/20251121/linkml/modules/classes/CollectionContent.yaml
schemas/20251121/linkml/modules/classes/PhotoAttribution.yaml
schemas/20251121/linkml/modules/classes/WikidataArchitecture.yaml
schemas/20251121/linkml/modules/classes/WebObservation.yaml
schemas/20251121/linkml/modules/classes/BackupType.yaml
schemas/20251121/linkml/modules/classes/Observation.yaml
schemas/20251121/linkml/modules/classes/CauseOfDeath.yaml
schemas/20251121/linkml/modules/classes/UpdateFrequency.yaml
schemas/20251121/linkml/modules/classes/GhcidBlock.yaml
schemas/20251121/linkml/modules/classes/Edition.yaml
schemas/20251121/linkml/modules/classes/Acquisition.yaml
schemas/20251121/linkml/modules/classes/EducationFacilityType.yaml
schemas/20251121/linkml/modules/classes/ApplicantRequirement.yaml
schemas/20251121/linkml/modules/classes/EncompassingBodyTypes.yaml
schemas/20251121/linkml/modules/classes/VideoTimeSegment.yaml
schemas/20251121/linkml/modules/classes/StorageCondition.yaml
schemas/20251121/linkml/modules/classes/AnnotationMotivationType.yaml
schemas/20251121/linkml/modules/classes/InternetOfThings.yaml
schemas/20251121/linkml/modules/classes/SourceDocument.yaml
schemas/20251121/linkml/modules/classes/Policy.yaml
schemas/20251121/linkml/modules/classes/DataServiceEndpoint.yaml
schemas/20251121/linkml/modules/classes/WikidataCoordinates.yaml
schemas/20251121/linkml/modules/classes/RejectedGoogleMapsData.yaml
schemas/20251121/linkml/modules/classes/Warehouse.yaml
schemas/20251121/linkml/modules/classes/EBook.yaml
schemas/20251121/linkml/modules/classes/FundingRequirement.yaml
schemas/20251121/linkml/modules/classes/PrimaryDigitalPresenceAssertion.yaml
schemas/20251121/linkml/modules/classes/OriginalEntryIdentifiersDict.yaml
schemas/20251121/linkml/modules/classes/EADDownload.yaml
schemas/20251121/linkml/modules/classes/Item.yaml
schemas/20251121/linkml/modules/classes/Classroom.yaml
schemas/20251121/linkml/modules/classes/InformationCarrier.yaml
schemas/20251121/linkml/modules/classes/StaffRoles.yaml
schemas/20251121/linkml/modules/classes/Custodian.yaml
schemas/20251121/linkml/modules/classes/EncompassingBody.yaml
schemas/20251121/linkml/modules/classes/ContactDetails.yaml
schemas/20251121/linkml/modules/classes/GoverningBody.yaml
schemas/20251121/linkml/modules/classes/LegalForm.yaml
schemas/20251121/linkml/modules/classes/CollectionType.yaml
schemas/20251121/linkml/modules/classes/WikidataContact.yaml
schemas/20251121/linkml/modules/classes/ExhibitedObject.yaml
schemas/20251121/linkml/modules/classes/DeceasedStatus.yaml
schemas/20251121/linkml/modules/classes/ReconstructionAgent.yaml
schemas/20251121/linkml/modules/classes/SocialMediaContent.yaml
schemas/20251121/linkml/modules/classes/Publisher.yaml
schemas/20251121/linkml/modules/classes/CustodianName.yaml
schemas/20251121/linkml/modules/classes/EnvironmentalRequirement.yaml
schemas/20251121/linkml/modules/classes/Coordinates.yaml
schemas/20251121/linkml/modules/classes/FindingAid.yaml
schemas/20251121/linkml/modules/classes/BirthDate.yaml
schemas/20251121/linkml/modules/classes/Agent.yaml
schemas/20251121/linkml/modules/classes/TransferPolicy.yaml
schemas/20251121/linkml/modules/classes/Person.yaml
schemas/20251121/linkml/modules/classes/MetadataStandard.yaml
schemas/20251121/linkml/modules/classes/Capacity.yaml
schemas/20251121/linkml/modules/classes/SourceReference.yaml
schemas/20251121/linkml/modules/classes/Locker.yaml
schemas/20251121/linkml/modules/classes/SubGuideType.yaml
schemas/20251121/linkml/modules/classes/HistoricBuilding.yaml
schemas/20251121/linkml/modules/classes/IIIF.yaml
schemas/20251121/linkml/modules/classes/HolySacredSiteType.yaml
schemas/20251121/linkml/modules/classes/DataSensitivityLevel.yaml
schemas/20251121/linkml/modules/classes/SocialMediaPost.yaml
schemas/20251121/linkml/modules/classes/Event.yaml
schemas/20251121/linkml/modules/classes/CollectionManagementSystem.yaml
schemas/20251121/linkml/modules/classes/METSAPI.yaml
schemas/20251121/linkml/modules/classes/OriginalEntryIdentifier.yaml
schemas/20251121/linkml/modules/classes/ApplicantType.yaml
schemas/20251121/linkml/modules/classes/YoutubeProvenance.yaml
schemas/20251121/linkml/modules/classes/ComplianceStatus.yaml
schemas/20251121/linkml/modules/classes/CollectionEvent.yaml
schemas/20251121/linkml/modules/classes/GeographicExtent.yaml
schemas/20251121/linkml/modules/classes/HeritageObject.yaml
schemas/20251121/linkml/modules/classes/ClimateControl.yaml
schemas/20251121/linkml/modules/classes/RequirementStatus.yaml
schemas/20251121/linkml/modules/classes/NormalizedLocation.yaml
schemas/20251121/linkml/modules/classes/LoadingDock.yaml
schemas/20251121/linkml/modules/classes/EducationProviderType.yaml
schemas/20251121/linkml/modules/classes/PlatformSourceReference.yaml
schemas/20251121/linkml/modules/classes/Locality.yaml
schemas/20251121/linkml/modules/classes/IIPImageServer.yaml
schemas/20251121/linkml/modules/classes/TechnologicalInfrastructureType.yaml
schemas/20251121/linkml/modules/classes/OrganizationalChangeEvent.yaml
schemas/20251121/linkml/modules/classes/Permission.yaml
schemas/20251121/linkml/modules/classes/SourceProvenance.yaml
schemas/20251121/linkml/modules/classes/VideoAnnotation.yaml
schemas/20251121/linkml/modules/classes/CatalogingStandard.yaml
schemas/20251121/linkml/modules/classes/WebEnrichment.yaml
schemas/20251121/linkml/modules/classes/ReadingRoom.yaml
schemas/20251121/linkml/modules/classes/WikidataMedia.yaml
schemas/20251121/linkml/modules/classes/TransferEvent.yaml
schemas/20251121/linkml/modules/classes/ConfidenceScore.yaml
schemas/20251121/linkml/modules/classes/IsilCodeEntry.yaml
schemas/20251121/linkml/modules/classes/WebArchiveFailure.yaml
schemas/20251121/linkml/modules/classes/Department.yaml
schemas/20251121/linkml/modules/classes/Administration.yaml
schemas/20251121/linkml/modules/classes/WikidataLocation.yaml
schemas/20251121/linkml/modules/classes/NanIsilEnrichment.yaml
schemas/20251121/linkml/modules/classes/Access.yaml
schemas/20251121/linkml/modules/classes/CoFunding.yaml
schemas/20251121/linkml/modules/classes/CatalogSystemType.yaml
schemas/20251121/linkml/modules/classes/AuxiliaryPlace.yaml
schemas/20251121/linkml/modules/classes/Schema.yaml
schemas/20251121/linkml/modules/classes/Video.yaml
schemas/20251121/linkml/modules/classes/LegalName.yaml
schemas/20251121/linkml/modules/classes/LocationResolution.yaml
schemas/20251121/linkml/modules/classes/OfficialInstitutionType.yaml
schemas/20251121/linkml/modules/classes/FumeHood.yaml
schemas/20251121/linkml/modules/classes/TimespanBlock.yaml
schemas/20251121/linkml/modules/classes/Component.yaml
schemas/20251121/linkml/modules/classes/ConflictStatus.yaml
schemas/20251121/linkml/modules/classes/Overview.yaml
schemas/20251121/linkml/modules/classes/RawSource.yaml
schemas/20251121/linkml/modules/classes/InstitutionalFunction.yaml
schemas/20251121/linkml/modules/classes/AvailabilityStatus.yaml
schemas/20251121/linkml/modules/classes/NonProfitType.yaml
schemas/20251121/linkml/modules/classes/Address.yaml
schemas/20251121/linkml/modules/classes/MuseumRegisterProvenance.yaml
schemas/20251121/linkml/modules/classes/CertaintyLevel.yaml
schemas/20251121/linkml/modules/classes/TimeSpan.yaml
schemas/20251121/linkml/modules/classes/OriginalEntryLocation.yaml
schemas/20251121/linkml/modules/classes/ServiceArea.yaml
schemas/20251121/linkml/modules/classes/TemporaryLocation.yaml
schemas/20251121/linkml/modules/classes/AddressComponent.yaml
schemas/20251121/linkml/modules/classes/Reference.yaml
schemas/20251121/linkml/modules/classes/PublicationEvent.yaml
schemas/20251121/linkml/modules/classes/AuctionHouse.yaml
schemas/20251121/linkml/modules/classes/URL.yaml
schemas/20251121/linkml/modules/classes/Quantity.yaml
schemas/20251121/linkml/modules/classes/AccessPolicy.yaml
schemas/20251121/linkml/modules/classes/CustodianLegalStatus.yaml
schemas/20251121/linkml/modules/classes/DataLicensePolicy.yaml
schemas/20251121/linkml/modules/classes/FundingAgenda.yaml
schemas/20251121/linkml/modules/classes/Asserter.yaml
schemas/20251121/linkml/modules/classes/AudioEventSegment.yaml
schemas/20251121/linkml/modules/classes/DonationScheme.yaml
schemas/20251121/linkml/modules/classes/BudgetStatus.yaml
schemas/20251121/linkml/modules/classes/PermissionType.yaml
schemas/20251121/linkml/modules/classes/OAIPMHEndpoint.yaml
schemas/20251121/linkml/modules/classes/DatePrecision.yaml
schemas/20251121/linkml/modules/classes/GeoSpatialPlace.yaml
schemas/20251121/linkml/modules/classes/DataServiceEndpointType.yaml
schemas/20251121/linkml/modules/classes/FileAPI.yaml
schemas/20251121/linkml/modules/classes/ApproximationStatus.yaml
schemas/20251121/linkml/modules/classes/PublicationEntry.yaml
schemas/20251121/linkml/modules/classes/AddressType.yaml
schemas/20251121/linkml/modules/classes/CustodianCollection.yaml
schemas/20251121/linkml/modules/classes/Format.yaml
schemas/20251121/linkml/modules/classes/Photography.yaml
schemas/20251121/linkml/modules/classes/EquipmentType.yaml
schemas/20251121/linkml/modules/classes/ConfidenceLevel.yaml
schemas/20251121/linkml/modules/classes/HandsOnFacility.yaml
schemas/20251121/linkml/modules/classes/VideoChapter.yaml
schemas/20251121/linkml/modules/classes/EmailAddress.yaml
schemas/20251121/linkml/modules/classes/TreatmentType.yaml
schemas/20251121/linkml/modules/classes/WebLink.yaml
schemas/20251121/linkml/modules/classes/AuxiliaryDigitalPlatform.yaml
schemas/20251121/linkml/modules/classes/GhcidHistoryEntry.yaml
schemas/20251121/linkml/modules/classes/Documentation.yaml
schemas/20251121/linkml/modules/classes/FeaturePlace.yaml
schemas/20251121/linkml/modules/classes/TimeEntry.yaml
schemas/20251121/linkml/modules/classes/OriginalEntryCoordinates.yaml
schemas/20251121/linkml/modules/classes/AnnotationMotivationTypes.yaml
schemas/20251121/linkml/modules/classes/CallForApplication.yaml
schemas/20251121/linkml/modules/classes/VideoTranscript.yaml
schemas/20251121/linkml/modules/classes/SourceCoordinates.yaml
schemas/20251121/linkml/modules/classes/Bookplate.yaml
schemas/20251121/linkml/modules/classes/IndexTypes.yaml
schemas/20251121/linkml/modules/classes/CustodianPlace.yaml
schemas/20251121/linkml/modules/classes/ForkliftAccess.yaml
schemas/20251121/linkml/modules/classes/ChAnnotatorProvenance.yaml
schemas/20251121/linkml/modules/classes/Timestamp.yaml
schemas/20251121/linkml/modules/classes/Standard.yaml
schemas/20251121/linkml/modules/classes/DocumentFormat.yaml
schemas/20251121/linkml/modules/classes/BiologicalObject.yaml
schemas/20251121/linkml/modules/classes/DeviceTypes.yaml
schemas/20251121/linkml/modules/classes/CustodianObservation.yaml
schemas/20251121/linkml/modules/classes/TechnologicalInfrastructureTypes.yaml
schemas/20251121/linkml/modules/classes/YoutubeTranscript.yaml
schemas/20251121/linkml/modules/classes/Collection.yaml
schemas/20251121/linkml/modules/classes/LanguageCode.yaml
schemas/20251121/linkml/modules/classes/CustodianAdministration.yaml
schemas/20251121/linkml/modules/classes/VideoTextContent.yaml
schemas/20251121/linkml/modules/classes/ConfidenceMeasure.yaml
schemas/20251121/linkml/modules/classes/FieldOfStudy.yaml
schemas/20251121/linkml/modules/classes/archive/EducationCredential_archived_20260125.yaml
schemas/20251121/linkml/modules/classes/deprecated/FindingAidMetadata.yaml
schemas/20251121/linkml/modules/enums/RoomUnitTypeEnum.yaml
schemas/20251121/linkml/modules/enums/StorageStandardEnum.yaml
schemas/20251121/linkml/modules/enums/EntityTypeEnum.yaml
schemas/20251121/linkml/modules/enums/ExhibitedObjectTypeEnum.yaml
schemas/20251121/linkml/modules/enums/AgentTypeEnum.yaml
schemas/20251121/linkml/modules/enums/EncompassingBodyTypeEnum.yaml
schemas/20251121/linkml/modules/enums/FeatureTypeEnum.yaml
schemas/20251121/linkml/modules/enums/DualClassPatternEnum.yaml
schemas/20251121/linkml/modules/enums/AuthorRoleEnum.yaml
schemas/20251121/linkml/modules/enums/LanguageProficiencyEnum.yaml
schemas/20251121/linkml/modules/enums/LoanStatusEnum.yaml
schemas/20251121/linkml/modules/enums/EventStatusEnum.yaml
schemas/20251121/linkml/modules/enums/QuantityTypeEnum.yaml
schemas/20251121/linkml/modules/enums/PlaceSpecificityEnum.yaml
schemas/20251121/linkml/modules/enums/EventTypeEnum.yaml
schemas/20251121/linkml/modules/enums/ConservationStatusEnum.yaml
schemas/20251121/linkml/modules/enums/DonationSchemeTypeEnum.yaml
schemas/20251121/linkml/modules/mappings/ISO20275_common.yaml
schemas/20251121/linkml/modules/mappings/ISO20275_mapping.yaml
schemas/20251121/linkml/modules/slots/changes_or_changed_ownership_from.yaml
schemas/20251121/linkml/modules/slots/platform_of.yaml
schemas/20251121/linkml/modules/slots/was_fetched_at.yaml
schemas/20251121/linkml/modules/slots/is_or_was_published_at.yaml
schemas/20251121/linkml/modules/slots/objective.yaml
schemas/20251121/linkml/modules/slots/partnership_model.yaml
schemas/20251121/linkml/modules/slots/iso_standard.yaml
schemas/20251121/linkml/modules/slots/supersede_condition.yaml
schemas/20251121/linkml/modules/slots/has_or_had_author.yaml
schemas/20251121/linkml/modules/slots/name_validity_period.yaml
schemas/20251121/linkml/modules/slots/refers_to_custodian.yaml
schemas/20251121/linkml/modules/slots/supersede_articles.yaml
schemas/20251121/linkml/modules/slots/contact_point.yaml
schemas/20251121/linkml/modules/slots/lending_policy.yaml
schemas/20251121/linkml/modules/slots/special_collection.yaml
schemas/20251121/linkml/modules/slots/created.yaml
schemas/20251121/linkml/modules/slots/has_or_had_documentation.yaml
schemas/20251121/linkml/modules/slots/participant_count.yaml
schemas/20251121/linkml/modules/slots/is_or_was_included_in.yaml
schemas/20251121/linkml/modules/slots/preservation_standard.yaml
schemas/20251121/linkml/modules/slots/has_or_had_schema.yaml
schemas/20251121/linkml/modules/slots/is_or_was_involved_in.yaml
schemas/20251121/linkml/modules/slots/is_or_was_used_in.yaml
schemas/20251121/linkml/modules/slots/stores_or_stored.yaml
schemas/20251121/linkml/modules/slots/has_or_had_thumbnail.yaml
schemas/20251121/linkml/modules/slots/requires_or_required.yaml
schemas/20251121/linkml/modules/slots/has_or_had_arrangement.yaml
schemas/20251121/linkml/modules/slots/includes_or_included.yaml
schemas/20251121/linkml/modules/slots/has_or_had_component.yaml
schemas/20251121/linkml/modules/slots/is_or_was_superseded_by.yaml
schemas/20251121/linkml/modules/slots/has_or_had_digital_platform.yaml
schemas/20251121/linkml/modules/slots/has_or_had_reference.yaml
schemas/20251121/linkml/modules/slots/loan_timespan.yaml
schemas/20251121/linkml/modules/slots/object_ref.yaml
schemas/20251121/linkml/modules/slots/secularization_status.yaml
schemas/20251121/linkml/modules/slots/applies_or_applied_to.yaml
schemas/20251121/linkml/modules/slots/is_or_was_part_of_archive_series.yaml
schemas/20251121/linkml/modules/slots/has_or_had_summary.yaml
schemas/20251121/linkml/modules/slots/is_or_was_based_on.yaml
schemas/20251121/linkml/modules/slots/creator_role.yaml
schemas/20251121/linkml/modules/slots/is_or_was_sub_collection_of.yaml
schemas/20251121/linkml/modules/slots/is_or_was_access_restricted.yaml
schemas/20251121/linkml/modules/slots/regulatory_authority.yaml
schemas/20251121/linkml/modules/slots/is_or_was_available.yaml
schemas/20251121/linkml/modules/slots/is_or_was_required.yaml
schemas/20251121/linkml/modules/slots/is_or_was_approximate.yaml
schemas/20251121/linkml/modules/slots/supersede_name.yaml
schemas/20251121/linkml/modules/slots/has_or_had_specification.yaml
schemas/20251121/linkml/modules/slots/has_or_had_level.yaml
schemas/20251121/linkml/modules/slots/is_or_was_used_by.yaml
schemas/20251121/linkml/modules/slots/is_or_was_appended_with.yaml
schemas/20251121/linkml/modules/slots/scope_exclude.yaml
schemas/20251121/linkml/modules/slots/part_of_custodian_collection.yaml
schemas/20251121/linkml/modules/slots/has_or_had_status.yaml
schemas/20251121/linkml/modules/slots/is_or_was_responsible_for.yaml
schemas/20251121/linkml/modules/slots/is_or_was_platform_of.yaml
schemas/20251121/linkml/modules/slots/supersedes_or_superseded.yaml
schemas/20251121/linkml/modules/slots/policy_authority.yaml
schemas/20251121/linkml/modules/slots/uses_or_used.yaml
schemas/20251121/linkml/modules/slots/is_or_was_collection_of.yaml
schemas/20251121/linkml/modules/slots/refers_or_referred_to.yaml
schemas/20251121/linkml/modules/slots/legal_entity_type.yaml
schemas/20251121/linkml/modules/slots/organizational_principle_uri.yaml
schemas/20251121/linkml/modules/slots/content_hash.yaml
schemas/20251121/linkml/modules/slots/license.yaml
schemas/20251121/linkml/modules/slots/permission_required.yaml
schemas/20251121/linkml/modules/slots/report_document.yaml
schemas/20251121/linkml/modules/slots/regulated_by_scheme.yaml
schemas/20251121/linkml/modules/slots/record_timespan.yaml
schemas/20251121/linkml/modules/slots/has_or_had_expense.yaml
schemas/20251121/linkml/modules/slots/has_or_had_activity.yaml
schemas/20251121/linkml/modules/slots/is_or_was_transferred_to.yaml
schemas/20251121/linkml/modules/slots/custodial_history.yaml
schemas/20251121/linkml/modules/slots/justification.yaml
schemas/20251121/linkml/modules/slots/is_or_was_indexed.yaml
schemas/20251121/linkml/modules/slots/religious_tradition.yaml
schemas/20251121/linkml/modules/slots/has_or_had_frequency.yaml
schemas/20251121/linkml/modules/slots/is_or_was_located_in.yaml
schemas/20251121/linkml/modules/slots/offers_or_offered_access.yaml
schemas/20251121/linkml/modules/slots/mixed_governance_structure.yaml
schemas/20251121/linkml/modules/slots/requires_appointment.yaml
schemas/20251121/linkml/modules/slots/legal_form.yaml
schemas/20251121/linkml/modules/slots/has_or_had_revenue.yaml
schemas/20251121/linkml/modules/slots/security_level.yaml
schemas/20251121/linkml/modules/slots/refers_to_person.yaml
schemas/20251121/linkml/modules/slots/is_or_was_part_of.yaml
schemas/20251121/linkml/modules/slots/serves_finding_aid.yaml
schemas/20251121/linkml/modules/slots/has_or_had_significance.yaml
schemas/20251121/linkml/modules/slots/condition_of_access.yaml
schemas/20251121/linkml/modules/slots/temporal_extent.yaml
schemas/20251121/linkml/modules/slots/organizational_principle.yaml
schemas/20251121/linkml/modules/slots/retention_period_year.yaml
schemas/20251121/linkml/modules/slots/is_or_was_created_by.yaml
schemas/20251121/linkml/modules/slots/metadata_standard.yaml
schemas/20251121/linkml/modules/slots/spectrum_procedure.yaml
schemas/20251121/linkml/modules/slots/has_or_had_equipment_type.yaml
schemas/20251121/linkml/modules/slots/has_or_had_technological_infrastructure.yaml
schemas/20251121/linkml/modules/slots/source_date.yaml
schemas/20251121/linkml/modules/slots/is_or_was_archived_in.yaml
schemas/20251121/linkml/modules/slots/is_or_was_part_of_total.yaml
schemas/20251121/linkml/modules/slots/oversight_jurisdiction.yaml
schemas/20251121/linkml/modules/slots/encompasses_or_encompassed.yaml
schemas/20251121/linkml/modules/slots/is_approximate.yaml
schemas/20251121/linkml/modules/slots/is_or_was_succeeded_by.yaml
schemas/20251121/linkml/modules/slots/legal_responsibility_basis.yaml
schemas/20251121/linkml/modules/slots/has_or_had_sensitivity_level.yaml
schemas/20251121/linkml/modules/slots/provides_or_provided_provenance_to.yaml
schemas/20251121/linkml/modules/slots/kien_registration_date.yaml
schemas/20251121/linkml/modules/slots/creation_timespan.yaml
schemas/20251121/linkml/modules/slots/complies_or_complied_with.yaml
schemas/20251121/linkml/modules/slots/has_supervised_handling.yaml
schemas/20251121/linkml/modules/slots/place_custodian_ref.yaml
schemas/20251121/linkml/modules/slots/poses_or_posed_condition.yaml
schemas/20251121/linkml/modules/slots/is_or_was_aggregated_by.yaml
schemas/20251121/linkml/modules/slots/has_or_had_qualifier.yaml
schemas/20251121/linkml/modules/slots/reservation_required.yaml
schemas/20251121/linkml/modules/slots/archive/transfer_to_collection_date_archived_20260115.yaml
schemas/20251121/linkml/modules/slots/archive/time_of_destruction_archived_20260115.yaml
schemas/20251121/linkml/modules/slots/archive/expected_transfer_date_archived_20260126.yaml
schemas/20251121/linkml/modules/slots/archive/has_or_had_requirement_status.yaml
schemas/20251121/linkml/modules/slots/archive/execution_date_archived_20260126.yaml
schemas/20251121/linkml/modules/slots/archive/published_at_archived_20260117.yaml
schemas/20251121/linkml/modules/slots/archive/has_or_had_sub_collection.yaml
schemas/20251121/linkml/modules/slots/archive/parent_collection_archived_20250115.yaml
schemas/20251121/linkml/modules/slots/archive/parent_chapter_id_archived_20260128.yaml
schemas/20251121/linkml/modules/slots/archive/provenance_text_archived_20260118.yaml
schemas/20251121/linkml/modules/slots/archive/has_accession_number_archived_20260126.yaml
schemas/20251121/linkml/modules/slots/archive/evidence_gap_archived_20260126.yaml
schemas/20251121/linkml/modules/slots/archive/cms_detected_archived_20260119.yaml
schemas/20251121/linkml/modules/slots/archive/has_articles_of_association.yaml
schemas/20251121/linkml/modules/slots/archive/has_acquisition_source_archived_20260126.yaml
schemas/20251121/linkml/modules/slots/archive/visitor_count_archived_20260115.yaml
schemas/20251121/linkml/modules/slots/archive/has_accession_date_archived_20260126.yaml
schemas/20251121/linkml/modules/slots/archive/collection_type_ref_archived_20260118.yaml
schemas/20251121/linkml/modules/slots/archive/documents_budget_archived_20260126.yaml
schemas/20251121/linkml/modules/slots/archive/data_license_policy_archived_20260122.yaml
schemas/20251121/linkml/modules/slots/archive/confidence_score_archived_20260128.yaml
schemas/20251121/linkml/modules/slots/archive/finding_aid_access_restriction_archived_20260126.yaml
schemas/20251121/linkml/modules/slots/archive/data_sensitivity_archived_20260123.yaml
schemas/20251121/linkml/modules/slots/archive/superseded_by_archived_20260117.yaml
schemas/20251121/linkml/modules/slots/archive/has_or_had_affiliation.yaml
schemas/20251121/linkml/modules/slots/archive/exhibition_timespan_archived_20260126.yaml
schemas/20251121/linkml/modules/slots/archive/has_person_observation.yaml
schemas/20251121/linkml/modules/slots/archive/volunteer_program_archived_20260115.yaml
schemas/20251121/linkml/modules/slots/archive/documented_by_archived_20260126.yaml
schemas/20251121/linkml/modules/slots/archive/feeds_portal_archived_20260126.yaml
schemas/20251121/linkml/modules/slots/archive/digital_surrogate_archived_20260126.yaml
schemas/20251121/linkml/modules/slots/archive/has_or_had_access_restriction.yaml
schemas/20251121/linkml/modules/slots/archive/digital_platform_archived_20260125.yaml
schemas/20251121/linkml/modules/slots/archive/funding_program_archived_20260126.yaml
schemas/20251121/linkml/modules/slots/archive/typical_metadata_standard_archived_20260115.yaml
schemas/20251121/linkml/modules/slots/archive/url_value_archived_20260116.yaml
schemas/20251121/linkml/modules/slots/archive/successor_collection_archived_20260115.yaml
schemas/20251121/linkml/modules/slots/archive/valid_to_archived_20260114.yaml
schemas/20251121/linkml/modules/slots/archive/has_or_had_access_management.yaml
schemas/20251121/linkml/modules/slots/archive/has_or_had_encompass_archived_20260115.yaml
schemas/20251121/linkml/modules/slots/archive/has_or_had_portal_data_source.yaml
schemas/20251121/linkml/modules/slots/archive/gdpr_relevant_archived_20260126.yaml
schemas/20251121/linkml/modules/slots/archive/has_acquisition_date_archived_20260126.yaml
schemas/20251121/linkml/modules/slots/archive/has_audience_type_archived_20260117.yaml
schemas/20251121/linkml/modules/slots/archive/has_or_had_access_policy_reference.yaml
schemas/20251121/linkml/modules/slots/archive/has_address_archived_20260126.yaml
schemas/20251121/linkml/modules/slots/archive/has_acquisition_history.yaml
schemas/20251121/linkml/modules/slots/archive/event_date_archived_20260126.yaml
schemas/20251121/linkml/modules/slots/archive/change_rationale_archived_20260128.yaml
schemas/20251121/linkml/modules/slots/archive/has_or_had_access_right.yaml
schemas/20251121/linkml/modules/slots/archive/public_education.yaml
schemas/20251121/linkml/modules/slots/archive/type_scope_archived_20260115.yaml
schemas/20251121/linkml/modules/slots/archive/growth_rate_archived_20260126.yaml
schemas/20251121/linkml/modules/slots/archive/has_amendment_history.yaml
schemas/20251121/linkml/modules/slots/archive/feature_name_archived_20260126.yaml
schemas/20251121/linkml/modules/slots/archive/funding_rate_archived_20260126.yaml
schemas/20251121/linkml/modules/slots/archive/has_or_had_access_policy.yaml
schemas/20251121/linkml/modules/slots/archive/documentation_archived_20260126.yaml
schemas/20251121/linkml/modules/slots/archive/has_timespan_archived_20260126.yaml
schemas/20251121/linkml/modules/slots/archive/supersede_archived_20260117.yaml
schemas/20251121/linkml/modules/slots/archive/event_timespan_archived_20260126.yaml
schemas/20251121/linkml/modules/slots/archive/has_approval_date.yaml
schemas/20251121/linkml/modules/slots/archive/storage_name_archived_20260115.yaml
schemas/20251121/linkml/modules/slots/archive/applies_or_applied_to_call_archived_20260117.yaml
schemas/20251121/linkml/modules/slots/archive/has_iso_3166_1_alpha_3_code_archived_20260116.yaml
schemas/20251121/linkml/modules/slots/archive/has_access_application_url_archived_20260126.yaml
schemas/20251121/linkml/modules/slots/archive/protocol.yaml
schemas/20251121/linkml/modules/slots/archive/has_or_had_appraisal_policy_archived_20260127.yaml
schemas/20251121/linkml/modules/slots/archive/business_criticality_archived_20260117.yaml
schemas/20251121/linkml/modules/slots/archive/protocol_name.yaml
schemas/20251121/linkml/modules/slots/archive/funding_scheme_archived_20260126.yaml
schemas/20251121/linkml/modules/slots/archive/has_or_had_curation_activity.yaml
schemas/20251121/linkml/modules/slots/archive/conflict_status_archived_20260122.yaml
schemas/20251121/linkml/modules/slots/archive/has_or_had_place_of_birth.yaml
schemas/20251121/linkml/modules/slots/archive/collections_under_responsibility_archived_20260119.yaml
schemas/20251121/linkml/modules/slots/archive/cataloging_standard_archived_20260117.yaml
schemas/20251121/linkml/modules/slots/archive/has_or_had_business_criticality.yaml
schemas/20251121/linkml/modules/slots/archive/version_number_archived_20260115.yaml
schemas/20251121/linkml/modules/slots/archive/has_or_had_alternative_observed_name_archived_20260127.yaml
schemas/20251121/linkml/modules/slots/archive/backup_status_archived_20260115.yaml
schemas/20251121/linkml/modules/slots/archive/has_iso_3166_1_alpha_2_code_archived_20260116.yaml
schemas/20251121/linkml/modules/slots/archive/event_type_archived_20260126.yaml
schemas/20251121/linkml/modules/slots/archive/collection_of_archived_20260115.yaml
schemas/20251121/linkml/modules/slots/archive/has_appointment_required_flag_archived_20260115.yaml
schemas/20251121/linkml/modules/slots/archive/has_or_had_access_trigger_event.yaml
schemas/20251121/linkml/modules/slots/archive/valid_from_archived_20260114.yaml
schemas/20251121/linkml/modules/slots/archive/has_or_had_verification_status.yaml
schemas/20251121/linkml/modules/slots/archive/has_administrative_level_archived_20260127.yaml
schemas/20251121/linkml/modules/slots/archive/address_type_archived_20260114.yaml
schemas/20251121/linkml/modules/slots/archive/used_by_archived_20260115.yaml
schemas/20251121/linkml/modules/slots/archive/table_of_content_archived_20260116.yaml
schemas/20251121/linkml/modules/slots/archive/collection_size_archived_20260119.yaml
schemas/20251121/linkml/modules/slots/archive/extent.yaml
schemas/20251121/linkml/modules/slots/archive/has_observation.yaml
schemas/20251121/linkml/modules/slots/archive/catalog_system_archived_20260124.yaml
schemas/20251121/linkml/modules/slots/archive/defined_by_standard_archived_20260124.yaml
schemas/20251121/linkml/modules/slots/archive/has_or_had_transmission_method.yaml
schemas/20251121/linkml/modules/slots/archive/provenance_statement_archived_20260118.yaml

View file

@ -0,0 +1,472 @@
schemas/20251121/linkml/01_custodian_name_modular.yaml
schemas/20251121/linkml/archive/refactored/StaffRoles_monolithic_20260108.yaml
schemas/20251121/linkml/archive/refactored/DataLicensePolicy_monolithic_20260108.yaml
schemas/20251121/linkml/archive/refactored/ReadingRoom_monolithic_20260108.yaml
schemas/20251121/linkml/archive/refactored/LanguageProficiency_monolithic_20260108.yaml
schemas/20251121/linkml/archive/refactored/FindingAid_monolithic_20260108.yaml
schemas/20251121/linkml/archive/refactored/VideoPost_monolithic_20260108.yaml
schemas/20251121/linkml/archive/refactored/class_metadata_slots_monolithic_20260107.yaml
schemas/20251121/linkml/archive/refactored/CateringPlace_monolithic_20260108.yaml
schemas/20251121/linkml/archive/refactored/EncompassingBody_monolithic_20260108.yaml
schemas/20251121/linkml/archive/refactored/OAIPMHEndpoint_monolithic_20260108.yaml
schemas/20251121/linkml/archive/refactored/identifier_standards_schema_monolithic_20260108.yaml
schemas/20251121/linkml/archive/refactored/VideoChapter_monolithic_20260108.yaml
schemas/20251121/linkml/archive/refactored/FindingAidType_monolithic_20260108.yaml
schemas/20251121/linkml/archive/refactored/DataServiceEndpoint_monolithic_20260108.yaml
schemas/20251121/linkml/archive/slots/has_or_had_access_control.yaml
schemas/20251121/linkml/archive/slots/identifier_format_used.yaml
schemas/20251121/linkml/archive/slots/has_or_had_manages_collection.yaml
schemas/20251121/linkml/archive/slots/has_derived_observation.yaml
schemas/20251121/linkml/archive/slots/has_or_had_access_description.yaml
schemas/20251121/linkml/archive/slots/illustration.yaml
schemas/20251121/linkml/archive/slots/allows_or_allowed_photography_archived_20260114.yaml
schemas/20251121/linkml/archive/slots/has_or_had_external_resource.yaml
schemas/20251121/linkml/archive/slots/has_auction_house.yaml
schemas/20251121/linkml/archive/slots/has_or_had_comprehensive_overview.yaml
schemas/20251121/linkml/archive/slots/implements_auxiliary_platform.yaml
schemas/20251121/linkml/archive/slots/has_or_had_exposed_collection.yaml
schemas/20251121/linkml/archive/slots/has_or_had_policy.yaml
schemas/20251121/linkml/archive/slots/has_or_had_about_text.yaml
schemas/20251121/linkml/archive/slots/has_auxiliary_platform.yaml
schemas/20251121/linkml/archive/slots/has_or_had_managed_collection.yaml
schemas/20251121/linkml/archive/slots/has_or_had_registration_number.yaml
schemas/20251121/linkml/archive/slots/has_or_had_administrative_expense_archived_20260114.yaml
schemas/20251121/linkml/archive/slots/has_or_had_access_condition.yaml
schemas/20251121/linkml/archive/slots/has_or_had_access_level.yaml
schemas/20251121/linkml/examples/registration_info_examples.yaml
schemas/20251121/linkml/instances/enums/reconstruction_activity_type.yaml
schemas/20251121/linkml/instances/enums/feature_type.yaml
schemas/20251121/linkml/instances/enums/encompassing_body_type.yaml
schemas/20251121/linkml/instances/enums/agent_type.yaml
schemas/20251121/linkml/instances/enums/source_document_type.yaml
schemas/20251121/linkml/instances/enums/entity_type.yaml
schemas/20251121/linkml/instances/enums/place_specificity.yaml
schemas/20251121/linkml/modules/classes/ExtractionSourceInfo.yaml
schemas/20251121/linkml/modules/classes/RegistrationAuthority.yaml
schemas/20251121/linkml/modules/classes/LegalEntityType.yaml
schemas/20251121/linkml/modules/classes/EnrichmentMethod.yaml
schemas/20251121/linkml/modules/classes/Arrangement.yaml
schemas/20251121/linkml/modules/classes/Methodology.yaml
schemas/20251121/linkml/modules/classes/LibraryType.yaml
schemas/20251121/linkml/modules/classes/Carrier.yaml
schemas/20251121/linkml/modules/classes/Agreement.yaml
schemas/20251121/linkml/modules/classes/CollectionContent.yaml
schemas/20251121/linkml/modules/classes/PhotoAttribution.yaml
schemas/20251121/linkml/modules/classes/WikidataArchitecture.yaml
schemas/20251121/linkml/modules/classes/WebObservation.yaml
schemas/20251121/linkml/modules/classes/BackupType.yaml
schemas/20251121/linkml/modules/classes/Observation.yaml
schemas/20251121/linkml/modules/classes/CauseOfDeath.yaml
schemas/20251121/linkml/modules/classes/UpdateFrequency.yaml
schemas/20251121/linkml/modules/classes/GhcidBlock.yaml
schemas/20251121/linkml/modules/classes/Edition.yaml
schemas/20251121/linkml/modules/classes/Acquisition.yaml
schemas/20251121/linkml/modules/classes/EducationFacilityType.yaml
schemas/20251121/linkml/modules/classes/ApplicantRequirement.yaml
schemas/20251121/linkml/modules/classes/EncompassingBodyTypes.yaml
schemas/20251121/linkml/modules/classes/VideoTimeSegment.yaml
schemas/20251121/linkml/modules/classes/StorageCondition.yaml
schemas/20251121/linkml/modules/classes/AnnotationMotivationType.yaml
schemas/20251121/linkml/modules/classes/InternetOfThings.yaml
schemas/20251121/linkml/modules/classes/SourceDocument.yaml
schemas/20251121/linkml/modules/classes/Policy.yaml
schemas/20251121/linkml/modules/classes/DataServiceEndpoint.yaml
schemas/20251121/linkml/modules/classes/WikidataCoordinates.yaml
schemas/20251121/linkml/modules/classes/RejectedGoogleMapsData.yaml
schemas/20251121/linkml/modules/classes/Warehouse.yaml
schemas/20251121/linkml/modules/classes/EBook.yaml
schemas/20251121/linkml/modules/classes/FundingRequirement.yaml
schemas/20251121/linkml/modules/classes/PrimaryDigitalPresenceAssertion.yaml
schemas/20251121/linkml/modules/classes/OriginalEntryIdentifiersDict.yaml
schemas/20251121/linkml/modules/classes/EADDownload.yaml
schemas/20251121/linkml/modules/classes/Item.yaml
schemas/20251121/linkml/modules/classes/Classroom.yaml
schemas/20251121/linkml/modules/classes/InformationCarrier.yaml
schemas/20251121/linkml/modules/classes/StaffRoles.yaml
schemas/20251121/linkml/modules/classes/Custodian.yaml
schemas/20251121/linkml/modules/classes/EncompassingBody.yaml
schemas/20251121/linkml/modules/classes/ContactDetails.yaml
schemas/20251121/linkml/modules/classes/GoverningBody.yaml
schemas/20251121/linkml/modules/classes/LegalForm.yaml
schemas/20251121/linkml/modules/classes/CollectionType.yaml
schemas/20251121/linkml/modules/classes/WikidataContact.yaml
schemas/20251121/linkml/modules/classes/ExhibitedObject.yaml
schemas/20251121/linkml/modules/classes/DeceasedStatus.yaml
schemas/20251121/linkml/modules/classes/ReconstructionAgent.yaml
schemas/20251121/linkml/modules/classes/SocialMediaContent.yaml
schemas/20251121/linkml/modules/classes/Publisher.yaml
schemas/20251121/linkml/modules/classes/CustodianName.yaml
schemas/20251121/linkml/modules/classes/EnvironmentalRequirement.yaml
schemas/20251121/linkml/modules/classes/Coordinates.yaml
schemas/20251121/linkml/modules/classes/FindingAid.yaml
schemas/20251121/linkml/modules/classes/BirthDate.yaml
schemas/20251121/linkml/modules/classes/Agent.yaml
schemas/20251121/linkml/modules/classes/TransferPolicy.yaml
schemas/20251121/linkml/modules/classes/Person.yaml
schemas/20251121/linkml/modules/classes/MetadataStandard.yaml
schemas/20251121/linkml/modules/classes/Capacity.yaml
schemas/20251121/linkml/modules/classes/SourceReference.yaml
schemas/20251121/linkml/modules/classes/Locker.yaml
schemas/20251121/linkml/modules/classes/SubGuideType.yaml
schemas/20251121/linkml/modules/classes/HistoricBuilding.yaml
schemas/20251121/linkml/modules/classes/IIIF.yaml
schemas/20251121/linkml/modules/classes/HolySacredSiteType.yaml
schemas/20251121/linkml/modules/classes/DataSensitivityLevel.yaml
schemas/20251121/linkml/modules/classes/SocialMediaPost.yaml
schemas/20251121/linkml/modules/classes/Event.yaml
schemas/20251121/linkml/modules/classes/CollectionManagementSystem.yaml
schemas/20251121/linkml/modules/classes/METSAPI.yaml
schemas/20251121/linkml/modules/classes/OriginalEntryIdentifier.yaml
schemas/20251121/linkml/modules/classes/ApplicantType.yaml
schemas/20251121/linkml/modules/classes/YoutubeProvenance.yaml
schemas/20251121/linkml/modules/classes/ComplianceStatus.yaml
schemas/20251121/linkml/modules/classes/CollectionEvent.yaml
schemas/20251121/linkml/modules/classes/GeographicExtent.yaml
schemas/20251121/linkml/modules/classes/HeritageObject.yaml
schemas/20251121/linkml/modules/classes/ClimateControl.yaml
schemas/20251121/linkml/modules/classes/RequirementStatus.yaml
schemas/20251121/linkml/modules/classes/NormalizedLocation.yaml
schemas/20251121/linkml/modules/classes/LoadingDock.yaml
schemas/20251121/linkml/modules/classes/EducationProviderType.yaml
schemas/20251121/linkml/modules/classes/PlatformSourceReference.yaml
schemas/20251121/linkml/modules/classes/Locality.yaml
schemas/20251121/linkml/modules/classes/IIPImageServer.yaml
schemas/20251121/linkml/modules/classes/TechnologicalInfrastructureType.yaml
schemas/20251121/linkml/modules/classes/OrganizationalChangeEvent.yaml
schemas/20251121/linkml/modules/classes/Permission.yaml
schemas/20251121/linkml/modules/classes/SourceProvenance.yaml
schemas/20251121/linkml/modules/classes/VideoAnnotation.yaml
schemas/20251121/linkml/modules/classes/CatalogingStandard.yaml
schemas/20251121/linkml/modules/classes/WebEnrichment.yaml
schemas/20251121/linkml/modules/classes/ReadingRoom.yaml
schemas/20251121/linkml/modules/classes/WikidataMedia.yaml
schemas/20251121/linkml/modules/classes/TransferEvent.yaml
schemas/20251121/linkml/modules/classes/ConfidenceScore.yaml
schemas/20251121/linkml/modules/classes/IsilCodeEntry.yaml
schemas/20251121/linkml/modules/classes/WebArchiveFailure.yaml
schemas/20251121/linkml/modules/classes/Department.yaml
schemas/20251121/linkml/modules/classes/Administration.yaml
schemas/20251121/linkml/modules/classes/WikidataLocation.yaml
schemas/20251121/linkml/modules/classes/NanIsilEnrichment.yaml
schemas/20251121/linkml/modules/classes/Access.yaml
schemas/20251121/linkml/modules/classes/CoFunding.yaml
schemas/20251121/linkml/modules/classes/CatalogSystemType.yaml
schemas/20251121/linkml/modules/classes/AuxiliaryPlace.yaml
schemas/20251121/linkml/modules/classes/Schema.yaml
schemas/20251121/linkml/modules/classes/Video.yaml
schemas/20251121/linkml/modules/classes/LegalName.yaml
schemas/20251121/linkml/modules/classes/LocationResolution.yaml
schemas/20251121/linkml/modules/classes/OfficialInstitutionType.yaml
schemas/20251121/linkml/modules/classes/FumeHood.yaml
schemas/20251121/linkml/modules/classes/TimespanBlock.yaml
schemas/20251121/linkml/modules/classes/Component.yaml
schemas/20251121/linkml/modules/classes/ConflictStatus.yaml
schemas/20251121/linkml/modules/classes/Overview.yaml
schemas/20251121/linkml/modules/classes/RawSource.yaml
schemas/20251121/linkml/modules/classes/InstitutionalFunction.yaml
schemas/20251121/linkml/modules/classes/AvailabilityStatus.yaml
schemas/20251121/linkml/modules/classes/NonProfitType.yaml
schemas/20251121/linkml/modules/classes/Address.yaml
schemas/20251121/linkml/modules/classes/MuseumRegisterProvenance.yaml
schemas/20251121/linkml/modules/classes/CertaintyLevel.yaml
schemas/20251121/linkml/modules/classes/TimeSpan.yaml
schemas/20251121/linkml/modules/classes/OriginalEntryLocation.yaml
schemas/20251121/linkml/modules/classes/ServiceArea.yaml
schemas/20251121/linkml/modules/classes/TemporaryLocation.yaml
schemas/20251121/linkml/modules/classes/AddressComponent.yaml
schemas/20251121/linkml/modules/classes/Reference.yaml
schemas/20251121/linkml/modules/classes/PublicationEvent.yaml
schemas/20251121/linkml/modules/classes/AuctionHouse.yaml
schemas/20251121/linkml/modules/classes/URL.yaml
schemas/20251121/linkml/modules/classes/Quantity.yaml
schemas/20251121/linkml/modules/classes/AccessPolicy.yaml
schemas/20251121/linkml/modules/classes/CustodianLegalStatus.yaml
schemas/20251121/linkml/modules/classes/DataLicensePolicy.yaml
schemas/20251121/linkml/modules/classes/FundingAgenda.yaml
schemas/20251121/linkml/modules/classes/Asserter.yaml
schemas/20251121/linkml/modules/classes/AudioEventSegment.yaml
schemas/20251121/linkml/modules/classes/DonationScheme.yaml
schemas/20251121/linkml/modules/classes/BudgetStatus.yaml
schemas/20251121/linkml/modules/classes/PermissionType.yaml
schemas/20251121/linkml/modules/classes/OAIPMHEndpoint.yaml
schemas/20251121/linkml/modules/classes/DatePrecision.yaml
schemas/20251121/linkml/modules/classes/GeoSpatialPlace.yaml
schemas/20251121/linkml/modules/classes/DataServiceEndpointType.yaml
schemas/20251121/linkml/modules/classes/FileAPI.yaml
schemas/20251121/linkml/modules/classes/ApproximationStatus.yaml
schemas/20251121/linkml/modules/classes/PublicationEntry.yaml
schemas/20251121/linkml/modules/classes/AddressType.yaml
schemas/20251121/linkml/modules/classes/CustodianCollection.yaml
schemas/20251121/linkml/modules/classes/Format.yaml
schemas/20251121/linkml/modules/classes/Photography.yaml
schemas/20251121/linkml/modules/classes/EquipmentType.yaml
schemas/20251121/linkml/modules/classes/ConfidenceLevel.yaml
schemas/20251121/linkml/modules/classes/HandsOnFacility.yaml
schemas/20251121/linkml/modules/classes/VideoChapter.yaml
schemas/20251121/linkml/modules/classes/EmailAddress.yaml
schemas/20251121/linkml/modules/classes/TreatmentType.yaml
schemas/20251121/linkml/modules/classes/WebLink.yaml
schemas/20251121/linkml/modules/classes/AuxiliaryDigitalPlatform.yaml
schemas/20251121/linkml/modules/classes/GhcidHistoryEntry.yaml
schemas/20251121/linkml/modules/classes/Documentation.yaml
schemas/20251121/linkml/modules/classes/FeaturePlace.yaml
schemas/20251121/linkml/modules/classes/TimeEntry.yaml
schemas/20251121/linkml/modules/classes/OriginalEntryCoordinates.yaml
schemas/20251121/linkml/modules/classes/AnnotationMotivationTypes.yaml
schemas/20251121/linkml/modules/classes/CallForApplication.yaml
schemas/20251121/linkml/modules/classes/VideoTranscript.yaml
schemas/20251121/linkml/modules/classes/SourceCoordinates.yaml
schemas/20251121/linkml/modules/classes/Bookplate.yaml
schemas/20251121/linkml/modules/classes/IndexTypes.yaml
schemas/20251121/linkml/modules/classes/CustodianPlace.yaml
schemas/20251121/linkml/modules/classes/ForkliftAccess.yaml
schemas/20251121/linkml/modules/classes/ChAnnotatorProvenance.yaml
schemas/20251121/linkml/modules/classes/Timestamp.yaml
schemas/20251121/linkml/modules/classes/Standard.yaml
schemas/20251121/linkml/modules/classes/DocumentFormat.yaml
schemas/20251121/linkml/modules/classes/BiologicalObject.yaml
schemas/20251121/linkml/modules/classes/DeviceTypes.yaml
schemas/20251121/linkml/modules/classes/CustodianObservation.yaml
schemas/20251121/linkml/modules/classes/TechnologicalInfrastructureTypes.yaml
schemas/20251121/linkml/modules/classes/YoutubeTranscript.yaml
schemas/20251121/linkml/modules/classes/Collection.yaml
schemas/20251121/linkml/modules/classes/LanguageCode.yaml
schemas/20251121/linkml/modules/classes/CustodianAdministration.yaml
schemas/20251121/linkml/modules/classes/VideoTextContent.yaml
schemas/20251121/linkml/modules/classes/ConfidenceMeasure.yaml
schemas/20251121/linkml/modules/classes/FieldOfStudy.yaml
schemas/20251121/linkml/modules/classes/archive/EducationCredential_archived_20260125.yaml
schemas/20251121/linkml/modules/classes/deprecated/FindingAidMetadata.yaml
schemas/20251121/linkml/modules/enums/RoomUnitTypeEnum.yaml
schemas/20251121/linkml/modules/enums/StorageStandardEnum.yaml
schemas/20251121/linkml/modules/enums/EntityTypeEnum.yaml
schemas/20251121/linkml/modules/enums/ExhibitedObjectTypeEnum.yaml
schemas/20251121/linkml/modules/enums/AgentTypeEnum.yaml
schemas/20251121/linkml/modules/enums/EncompassingBodyTypeEnum.yaml
schemas/20251121/linkml/modules/enums/FeatureTypeEnum.yaml
schemas/20251121/linkml/modules/enums/DualClassPatternEnum.yaml
schemas/20251121/linkml/modules/enums/AuthorRoleEnum.yaml
schemas/20251121/linkml/modules/enums/LanguageProficiencyEnum.yaml
schemas/20251121/linkml/modules/enums/LoanStatusEnum.yaml
schemas/20251121/linkml/modules/enums/EventStatusEnum.yaml
schemas/20251121/linkml/modules/enums/QuantityTypeEnum.yaml
schemas/20251121/linkml/modules/enums/PlaceSpecificityEnum.yaml
schemas/20251121/linkml/modules/enums/EventTypeEnum.yaml
schemas/20251121/linkml/modules/enums/ConservationStatusEnum.yaml
schemas/20251121/linkml/modules/enums/DonationSchemeTypeEnum.yaml
schemas/20251121/linkml/modules/mappings/ISO20275_common.yaml
schemas/20251121/linkml/modules/mappings/ISO20275_mapping.yaml
schemas/20251121/linkml/modules/slots/changes_or_changed_ownership_from.yaml
schemas/20251121/linkml/modules/slots/platform_of.yaml
schemas/20251121/linkml/modules/slots/was_fetched_at.yaml
schemas/20251121/linkml/modules/slots/is_or_was_published_at.yaml
schemas/20251121/linkml/modules/slots/objective.yaml
schemas/20251121/linkml/modules/slots/partnership_model.yaml
schemas/20251121/linkml/modules/slots/iso_standard.yaml
schemas/20251121/linkml/modules/slots/supersede_condition.yaml
schemas/20251121/linkml/modules/slots/has_or_had_author.yaml
schemas/20251121/linkml/modules/slots/name_validity_period.yaml
schemas/20251121/linkml/modules/slots/refers_to_custodian.yaml
schemas/20251121/linkml/modules/slots/supersede_articles.yaml
schemas/20251121/linkml/modules/slots/contact_point.yaml
schemas/20251121/linkml/modules/slots/lending_policy.yaml
schemas/20251121/linkml/modules/slots/special_collection.yaml
schemas/20251121/linkml/modules/slots/created.yaml
schemas/20251121/linkml/modules/slots/has_or_had_documentation.yaml
schemas/20251121/linkml/modules/slots/participant_count.yaml
schemas/20251121/linkml/modules/slots/is_or_was_included_in.yaml
schemas/20251121/linkml/modules/slots/preservation_standard.yaml
schemas/20251121/linkml/modules/slots/has_or_had_schema.yaml
schemas/20251121/linkml/modules/slots/is_or_was_involved_in.yaml
schemas/20251121/linkml/modules/slots/is_or_was_used_in.yaml
schemas/20251121/linkml/modules/slots/stores_or_stored.yaml
schemas/20251121/linkml/modules/slots/has_or_had_thumbnail.yaml
schemas/20251121/linkml/modules/slots/requires_or_required.yaml
schemas/20251121/linkml/modules/slots/has_or_had_arrangement.yaml
schemas/20251121/linkml/modules/slots/includes_or_included.yaml
schemas/20251121/linkml/modules/slots/has_or_had_component.yaml
schemas/20251121/linkml/modules/slots/is_or_was_superseded_by.yaml
schemas/20251121/linkml/modules/slots/has_or_had_digital_platform.yaml
schemas/20251121/linkml/modules/slots/has_or_had_reference.yaml
schemas/20251121/linkml/modules/slots/loan_timespan.yaml
schemas/20251121/linkml/modules/slots/object_ref.yaml
schemas/20251121/linkml/modules/slots/secularization_status.yaml
schemas/20251121/linkml/modules/slots/applies_or_applied_to.yaml
schemas/20251121/linkml/modules/slots/is_or_was_part_of_archive_series.yaml
schemas/20251121/linkml/modules/slots/has_or_had_summary.yaml
schemas/20251121/linkml/modules/slots/is_or_was_based_on.yaml
schemas/20251121/linkml/modules/slots/creator_role.yaml
schemas/20251121/linkml/modules/slots/is_or_was_sub_collection_of.yaml
schemas/20251121/linkml/modules/slots/is_or_was_access_restricted.yaml
schemas/20251121/linkml/modules/slots/regulatory_authority.yaml
schemas/20251121/linkml/modules/slots/is_or_was_available.yaml
schemas/20251121/linkml/modules/slots/is_or_was_required.yaml
schemas/20251121/linkml/modules/slots/is_or_was_approximate.yaml
schemas/20251121/linkml/modules/slots/supersede_name.yaml
schemas/20251121/linkml/modules/slots/has_or_had_specification.yaml
schemas/20251121/linkml/modules/slots/has_or_had_level.yaml
schemas/20251121/linkml/modules/slots/is_or_was_used_by.yaml
schemas/20251121/linkml/modules/slots/is_or_was_appended_with.yaml
schemas/20251121/linkml/modules/slots/scope_exclude.yaml
schemas/20251121/linkml/modules/slots/part_of_custodian_collection.yaml
schemas/20251121/linkml/modules/slots/has_or_had_status.yaml
schemas/20251121/linkml/modules/slots/is_or_was_responsible_for.yaml
schemas/20251121/linkml/modules/slots/is_or_was_platform_of.yaml
schemas/20251121/linkml/modules/slots/supersedes_or_superseded.yaml
schemas/20251121/linkml/modules/slots/policy_authority.yaml
schemas/20251121/linkml/modules/slots/uses_or_used.yaml
schemas/20251121/linkml/modules/slots/is_or_was_collection_of.yaml
schemas/20251121/linkml/modules/slots/refers_or_referred_to.yaml
schemas/20251121/linkml/modules/slots/legal_entity_type.yaml
schemas/20251121/linkml/modules/slots/organizational_principle_uri.yaml
schemas/20251121/linkml/modules/slots/content_hash.yaml
schemas/20251121/linkml/modules/slots/license.yaml
schemas/20251121/linkml/modules/slots/permission_required.yaml
schemas/20251121/linkml/modules/slots/report_document.yaml
schemas/20251121/linkml/modules/slots/regulated_by_scheme.yaml
schemas/20251121/linkml/modules/slots/record_timespan.yaml
schemas/20251121/linkml/modules/slots/has_or_had_expense.yaml
schemas/20251121/linkml/modules/slots/has_or_had_activity.yaml
schemas/20251121/linkml/modules/slots/is_or_was_transferred_to.yaml
schemas/20251121/linkml/modules/slots/custodial_history.yaml
schemas/20251121/linkml/modules/slots/justification.yaml
schemas/20251121/linkml/modules/slots/is_or_was_indexed.yaml
schemas/20251121/linkml/modules/slots/religious_tradition.yaml
schemas/20251121/linkml/modules/slots/has_or_had_frequency.yaml
schemas/20251121/linkml/modules/slots/is_or_was_located_in.yaml
schemas/20251121/linkml/modules/slots/offers_or_offered_access.yaml
schemas/20251121/linkml/modules/slots/mixed_governance_structure.yaml
schemas/20251121/linkml/modules/slots/requires_appointment.yaml
schemas/20251121/linkml/modules/slots/legal_form.yaml
schemas/20251121/linkml/modules/slots/has_or_had_revenue.yaml
schemas/20251121/linkml/modules/slots/security_level.yaml
schemas/20251121/linkml/modules/slots/refers_to_person.yaml
schemas/20251121/linkml/modules/slots/is_or_was_part_of.yaml
schemas/20251121/linkml/modules/slots/serves_finding_aid.yaml
schemas/20251121/linkml/modules/slots/has_or_had_significance.yaml
schemas/20251121/linkml/modules/slots/condition_of_access.yaml
schemas/20251121/linkml/modules/slots/temporal_extent.yaml
schemas/20251121/linkml/modules/slots/organizational_principle.yaml
schemas/20251121/linkml/modules/slots/retention_period_year.yaml
schemas/20251121/linkml/modules/slots/is_or_was_created_by.yaml
schemas/20251121/linkml/modules/slots/metadata_standard.yaml
schemas/20251121/linkml/modules/slots/spectrum_procedure.yaml
schemas/20251121/linkml/modules/slots/has_or_had_equipment_type.yaml
schemas/20251121/linkml/modules/slots/has_or_had_technological_infrastructure.yaml
schemas/20251121/linkml/modules/slots/source_date.yaml
schemas/20251121/linkml/modules/slots/is_or_was_archived_in.yaml
schemas/20251121/linkml/modules/slots/is_or_was_part_of_total.yaml
schemas/20251121/linkml/modules/slots/oversight_jurisdiction.yaml
schemas/20251121/linkml/modules/slots/encompasses_or_encompassed.yaml
schemas/20251121/linkml/modules/slots/is_approximate.yaml
schemas/20251121/linkml/modules/slots/is_or_was_succeeded_by.yaml
schemas/20251121/linkml/modules/slots/legal_responsibility_basis.yaml
schemas/20251121/linkml/modules/slots/has_or_had_sensitivity_level.yaml
schemas/20251121/linkml/modules/slots/provides_or_provided_provenance_to.yaml
schemas/20251121/linkml/modules/slots/kien_registration_date.yaml
schemas/20251121/linkml/modules/slots/creation_timespan.yaml
schemas/20251121/linkml/modules/slots/complies_or_complied_with.yaml
schemas/20251121/linkml/modules/slots/has_supervised_handling.yaml
schemas/20251121/linkml/modules/slots/place_custodian_ref.yaml
schemas/20251121/linkml/modules/slots/poses_or_posed_condition.yaml
schemas/20251121/linkml/modules/slots/is_or_was_aggregated_by.yaml
schemas/20251121/linkml/modules/slots/has_or_had_qualifier.yaml
schemas/20251121/linkml/modules/slots/reservation_required.yaml
schemas/20251121/linkml/modules/slots/archive/transfer_to_collection_date_archived_20260115.yaml
schemas/20251121/linkml/modules/slots/archive/time_of_destruction_archived_20260115.yaml
schemas/20251121/linkml/modules/slots/archive/expected_transfer_date_archived_20260126.yaml
schemas/20251121/linkml/modules/slots/archive/has_or_had_requirement_status.yaml
schemas/20251121/linkml/modules/slots/archive/execution_date_archived_20260126.yaml
schemas/20251121/linkml/modules/slots/archive/published_at_archived_20260117.yaml
schemas/20251121/linkml/modules/slots/archive/has_or_had_sub_collection.yaml
schemas/20251121/linkml/modules/slots/archive/parent_collection_archived_20250115.yaml
schemas/20251121/linkml/modules/slots/archive/parent_chapter_id_archived_20260128.yaml
schemas/20251121/linkml/modules/slots/archive/provenance_text_archived_20260118.yaml
schemas/20251121/linkml/modules/slots/archive/has_accession_number_archived_20260126.yaml
schemas/20251121/linkml/modules/slots/archive/evidence_gap_archived_20260126.yaml
schemas/20251121/linkml/modules/slots/archive/cms_detected_archived_20260119.yaml
schemas/20251121/linkml/modules/slots/archive/has_articles_of_association.yaml
schemas/20251121/linkml/modules/slots/archive/has_acquisition_source_archived_20260126.yaml
schemas/20251121/linkml/modules/slots/archive/visitor_count_archived_20260115.yaml
schemas/20251121/linkml/modules/slots/archive/has_accession_date_archived_20260126.yaml
schemas/20251121/linkml/modules/slots/archive/collection_type_ref_archived_20260118.yaml
schemas/20251121/linkml/modules/slots/archive/documents_budget_archived_20260126.yaml
schemas/20251121/linkml/modules/slots/archive/data_license_policy_archived_20260122.yaml
schemas/20251121/linkml/modules/slots/archive/confidence_score_archived_20260128.yaml
schemas/20251121/linkml/modules/slots/archive/finding_aid_access_restriction_archived_20260126.yaml
schemas/20251121/linkml/modules/slots/archive/data_sensitivity_archived_20260123.yaml
schemas/20251121/linkml/modules/slots/archive/superseded_by_archived_20260117.yaml
schemas/20251121/linkml/modules/slots/archive/has_or_had_affiliation.yaml
schemas/20251121/linkml/modules/slots/archive/exhibition_timespan_archived_20260126.yaml
schemas/20251121/linkml/modules/slots/archive/has_person_observation.yaml
schemas/20251121/linkml/modules/slots/archive/volunteer_program_archived_20260115.yaml
schemas/20251121/linkml/modules/slots/archive/documented_by_archived_20260126.yaml
schemas/20251121/linkml/modules/slots/archive/feeds_portal_archived_20260126.yaml
schemas/20251121/linkml/modules/slots/archive/digital_surrogate_archived_20260126.yaml
schemas/20251121/linkml/modules/slots/archive/has_or_had_access_restriction.yaml
schemas/20251121/linkml/modules/slots/archive/digital_platform_archived_20260125.yaml
schemas/20251121/linkml/modules/slots/archive/funding_program_archived_20260126.yaml
schemas/20251121/linkml/modules/slots/archive/typical_metadata_standard_archived_20260115.yaml
schemas/20251121/linkml/modules/slots/archive/url_value_archived_20260116.yaml
schemas/20251121/linkml/modules/slots/archive/successor_collection_archived_20260115.yaml
schemas/20251121/linkml/modules/slots/archive/valid_to_archived_20260114.yaml
schemas/20251121/linkml/modules/slots/archive/has_or_had_access_management.yaml
schemas/20251121/linkml/modules/slots/archive/has_or_had_encompass_archived_20260115.yaml
schemas/20251121/linkml/modules/slots/archive/has_or_had_portal_data_source.yaml
schemas/20251121/linkml/modules/slots/archive/gdpr_relevant_archived_20260126.yaml
schemas/20251121/linkml/modules/slots/archive/has_acquisition_date_archived_20260126.yaml
schemas/20251121/linkml/modules/slots/archive/has_audience_type_archived_20260117.yaml
schemas/20251121/linkml/modules/slots/archive/has_or_had_access_policy_reference.yaml
schemas/20251121/linkml/modules/slots/archive/has_address_archived_20260126.yaml
schemas/20251121/linkml/modules/slots/archive/has_acquisition_history.yaml
schemas/20251121/linkml/modules/slots/archive/event_date_archived_20260126.yaml
schemas/20251121/linkml/modules/slots/archive/change_rationale_archived_20260128.yaml
schemas/20251121/linkml/modules/slots/archive/has_or_had_access_right.yaml
schemas/20251121/linkml/modules/slots/archive/public_education.yaml
schemas/20251121/linkml/modules/slots/archive/type_scope_archived_20260115.yaml
schemas/20251121/linkml/modules/slots/archive/growth_rate_archived_20260126.yaml
schemas/20251121/linkml/modules/slots/archive/has_amendment_history.yaml
schemas/20251121/linkml/modules/slots/archive/feature_name_archived_20260126.yaml
schemas/20251121/linkml/modules/slots/archive/funding_rate_archived_20260126.yaml
schemas/20251121/linkml/modules/slots/archive/has_or_had_access_policy.yaml
schemas/20251121/linkml/modules/slots/archive/documentation_archived_20260126.yaml
schemas/20251121/linkml/modules/slots/archive/has_timespan_archived_20260126.yaml
schemas/20251121/linkml/modules/slots/archive/supersede_archived_20260117.yaml
schemas/20251121/linkml/modules/slots/archive/event_timespan_archived_20260126.yaml
schemas/20251121/linkml/modules/slots/archive/has_approval_date.yaml
schemas/20251121/linkml/modules/slots/archive/storage_name_archived_20260115.yaml
schemas/20251121/linkml/modules/slots/archive/applies_or_applied_to_call_archived_20260117.yaml
schemas/20251121/linkml/modules/slots/archive/has_iso_3166_1_alpha_3_code_archived_20260116.yaml
schemas/20251121/linkml/modules/slots/archive/has_access_application_url_archived_20260126.yaml
schemas/20251121/linkml/modules/slots/archive/protocol.yaml
schemas/20251121/linkml/modules/slots/archive/has_or_had_appraisal_policy_archived_20260127.yaml
schemas/20251121/linkml/modules/slots/archive/business_criticality_archived_20260117.yaml
schemas/20251121/linkml/modules/slots/archive/protocol_name.yaml
schemas/20251121/linkml/modules/slots/archive/funding_scheme_archived_20260126.yaml
schemas/20251121/linkml/modules/slots/archive/has_or_had_curation_activity.yaml
schemas/20251121/linkml/modules/slots/archive/conflict_status_archived_20260122.yaml
schemas/20251121/linkml/modules/slots/archive/has_or_had_place_of_birth.yaml
schemas/20251121/linkml/modules/slots/archive/collections_under_responsibility_archived_20260119.yaml
schemas/20251121/linkml/modules/slots/archive/cataloging_standard_archived_20260117.yaml
schemas/20251121/linkml/modules/slots/archive/has_or_had_business_criticality.yaml
schemas/20251121/linkml/modules/slots/archive/version_number_archived_20260115.yaml
schemas/20251121/linkml/modules/slots/archive/has_or_had_alternative_observed_name_archived_20260127.yaml
schemas/20251121/linkml/modules/slots/archive/backup_status_archived_20260115.yaml
schemas/20251121/linkml/modules/slots/archive/has_iso_3166_1_alpha_2_code_archived_20260116.yaml
schemas/20251121/linkml/modules/slots/archive/event_type_archived_20260126.yaml
schemas/20251121/linkml/modules/slots/archive/collection_of_archived_20260115.yaml
schemas/20251121/linkml/modules/slots/archive/has_appointment_required_flag_archived_20260115.yaml
schemas/20251121/linkml/modules/slots/archive/has_or_had_access_trigger_event.yaml
schemas/20251121/linkml/modules/slots/archive/valid_from_archived_20260114.yaml
schemas/20251121/linkml/modules/slots/archive/has_or_had_verification_status.yaml
schemas/20251121/linkml/modules/slots/archive/has_administrative_level_archived_20260127.yaml
schemas/20251121/linkml/modules/slots/archive/address_type_archived_20260114.yaml
schemas/20251121/linkml/modules/slots/archive/used_by_archived_20260115.yaml
schemas/20251121/linkml/modules/slots/archive/table_of_content_archived_20260116.yaml
schemas/20251121/linkml/modules/slots/archive/collection_size_archived_20260119.yaml
schemas/20251121/linkml/modules/slots/archive/extent.yaml
schemas/20251121/linkml/modules/slots/archive/has_observation.yaml
schemas/20251121/linkml/modules/slots/archive/catalog_system_archived_20260124.yaml
schemas/20251121/linkml/modules/slots/archive/defined_by_standard_archived_20260124.yaml
schemas/20251121/linkml/modules/slots/archive/has_or_had_transmission_method.yaml
schemas/20251121/linkml/modules/slots/archive/provenance_statement_archived_20260118.yaml

230
missing_terms_active.txt Normal file
View file

@ -0,0 +1,230 @@
schemas/20251121/linkml/01_custodian_name_modular.yaml
schemas/20251121/linkml/examples/registration_info_examples.yaml
schemas/20251121/linkml/instances/enums/feature_type.yaml
schemas/20251121/linkml/instances/enums/encompassing_body_type.yaml
schemas/20251121/linkml/instances/enums/agent_type.yaml
schemas/20251121/linkml/instances/enums/source_document_type.yaml
schemas/20251121/linkml/instances/enums/entity_type.yaml
schemas/20251121/linkml/instances/enums/place_specificity.yaml
schemas/20251121/linkml/modules/classes/ExtractionSourceInfo.yaml
schemas/20251121/linkml/modules/classes/RegistrationAuthority.yaml
schemas/20251121/linkml/modules/classes/LegalEntityType.yaml
schemas/20251121/linkml/modules/classes/EnrichmentMethod.yaml
schemas/20251121/linkml/modules/classes/Arrangement.yaml
schemas/20251121/linkml/modules/classes/Methodology.yaml
schemas/20251121/linkml/modules/classes/Carrier.yaml
schemas/20251121/linkml/modules/classes/Agreement.yaml
schemas/20251121/linkml/modules/classes/WikidataArchitecture.yaml
schemas/20251121/linkml/modules/classes/WebObservation.yaml
schemas/20251121/linkml/modules/classes/Observation.yaml
schemas/20251121/linkml/modules/classes/CauseOfDeath.yaml
schemas/20251121/linkml/modules/classes/UpdateFrequency.yaml
schemas/20251121/linkml/modules/classes/Edition.yaml
schemas/20251121/linkml/modules/classes/Acquisition.yaml
schemas/20251121/linkml/modules/classes/EducationFacilityType.yaml
schemas/20251121/linkml/modules/classes/ApplicantRequirement.yaml
schemas/20251121/linkml/modules/classes/EncompassingBodyTypes.yaml
schemas/20251121/linkml/modules/classes/VideoTimeSegment.yaml
schemas/20251121/linkml/modules/classes/CarrierTypes.yaml
schemas/20251121/linkml/modules/classes/StorageCondition.yaml
schemas/20251121/linkml/modules/classes/AnnotationMotivationType.yaml
schemas/20251121/linkml/modules/classes/InternetOfThings.yaml
schemas/20251121/linkml/modules/classes/ApprovalTimeTypes.yaml
schemas/20251121/linkml/modules/classes/DataServiceEndpoint.yaml
schemas/20251121/linkml/modules/classes/WikidataCoordinates.yaml
schemas/20251121/linkml/modules/classes/RejectedGoogleMapsData.yaml
schemas/20251121/linkml/modules/classes/Warehouse.yaml
schemas/20251121/linkml/modules/classes/EBook.yaml
schemas/20251121/linkml/modules/classes/PrimaryDigitalPresenceAssertion.yaml
schemas/20251121/linkml/modules/classes/Item.yaml
schemas/20251121/linkml/modules/classes/Classroom.yaml
schemas/20251121/linkml/modules/classes/InformationCarrier.yaml
schemas/20251121/linkml/modules/classes/Custodian.yaml
schemas/20251121/linkml/modules/classes/EncompassingBody.yaml
schemas/20251121/linkml/modules/classes/ContactDetails.yaml
schemas/20251121/linkml/modules/classes/GoverningBody.yaml
schemas/20251121/linkml/modules/classes/LegalForm.yaml
schemas/20251121/linkml/modules/classes/CollectionType.yaml
schemas/20251121/linkml/modules/classes/WikidataContact.yaml
schemas/20251121/linkml/modules/classes/ExhibitedObject.yaml
schemas/20251121/linkml/modules/classes/DeceasedStatus.yaml
schemas/20251121/linkml/modules/classes/ReconstructionAgent.yaml
schemas/20251121/linkml/modules/classes/CustodianName.yaml
schemas/20251121/linkml/modules/classes/Coordinates.yaml
schemas/20251121/linkml/modules/classes/BirthDate.yaml
schemas/20251121/linkml/modules/classes/TransferPolicy.yaml
schemas/20251121/linkml/modules/classes/Person.yaml
schemas/20251121/linkml/modules/classes/Locker.yaml
schemas/20251121/linkml/modules/classes/SubGuideType.yaml
schemas/20251121/linkml/modules/classes/HistoricBuilding.yaml
schemas/20251121/linkml/modules/classes/HolySacredSiteType.yaml
schemas/20251121/linkml/modules/classes/Event.yaml
schemas/20251121/linkml/modules/classes/CollectionManagementSystem.yaml
schemas/20251121/linkml/modules/classes/ApplicantType.yaml
schemas/20251121/linkml/modules/classes/YoutubeProvenance.yaml
schemas/20251121/linkml/modules/classes/CollectionEvent.yaml
schemas/20251121/linkml/modules/classes/HeritageObject.yaml
schemas/20251121/linkml/modules/classes/ClimateControl.yaml
schemas/20251121/linkml/modules/classes/RequirementStatus.yaml
schemas/20251121/linkml/modules/classes/NormalizedLocation.yaml
schemas/20251121/linkml/modules/classes/LoadingDock.yaml
schemas/20251121/linkml/modules/classes/EducationProviderType.yaml
schemas/20251121/linkml/modules/classes/PlatformSourceReference.yaml
schemas/20251121/linkml/modules/classes/TechnologicalInfrastructureType.yaml
schemas/20251121/linkml/modules/classes/OrganizationalChangeEvent.yaml
schemas/20251121/linkml/modules/classes/Permission.yaml
schemas/20251121/linkml/modules/classes/SourceProvenance.yaml
schemas/20251121/linkml/modules/classes/WebEnrichment.yaml
schemas/20251121/linkml/modules/classes/ReadingRoom.yaml
schemas/20251121/linkml/modules/classes/TransferEvent.yaml
schemas/20251121/linkml/modules/classes/ConfidenceScore.yaml
schemas/20251121/linkml/modules/classes/WebArchiveFailure.yaml
schemas/20251121/linkml/modules/classes/Department.yaml
schemas/20251121/linkml/modules/classes/Administration.yaml
schemas/20251121/linkml/modules/classes/WikidataLocation.yaml
schemas/20251121/linkml/modules/classes/CoFunding.yaml
schemas/20251121/linkml/modules/classes/CatalogSystemType.yaml
schemas/20251121/linkml/modules/classes/AuxiliaryPlace.yaml
schemas/20251121/linkml/modules/classes/Video.yaml
schemas/20251121/linkml/modules/classes/LegalName.yaml
schemas/20251121/linkml/modules/classes/LocationResolution.yaml
schemas/20251121/linkml/modules/classes/OfficialInstitutionType.yaml
schemas/20251121/linkml/modules/classes/FumeHood.yaml
schemas/20251121/linkml/modules/classes/TimespanBlock.yaml
schemas/20251121/linkml/modules/classes/ConflictStatus.yaml
schemas/20251121/linkml/modules/classes/RawSource.yaml
schemas/20251121/linkml/modules/classes/InstitutionalFunction.yaml
schemas/20251121/linkml/modules/classes/AvailabilityStatus.yaml
schemas/20251121/linkml/modules/classes/NonProfitType.yaml
schemas/20251121/linkml/modules/classes/Address.yaml
schemas/20251121/linkml/modules/classes/MuseumRegisterProvenance.yaml
schemas/20251121/linkml/modules/classes/CertaintyLevel.yaml
schemas/20251121/linkml/modules/classes/TimeSpan.yaml
schemas/20251121/linkml/modules/classes/OriginalEntryLocation.yaml
schemas/20251121/linkml/modules/classes/TemporaryLocation.yaml
schemas/20251121/linkml/modules/classes/AddressComponent.yaml
schemas/20251121/linkml/modules/classes/PublicationEvent.yaml
schemas/20251121/linkml/modules/classes/AuctionHouse.yaml
schemas/20251121/linkml/modules/classes/AccessPolicy.yaml
schemas/20251121/linkml/modules/classes/CustodianLegalStatus.yaml
schemas/20251121/linkml/modules/classes/AudioEventSegment.yaml
schemas/20251121/linkml/modules/classes/BudgetStatus.yaml
schemas/20251121/linkml/modules/classes/PermissionType.yaml
schemas/20251121/linkml/modules/classes/DatePrecision.yaml
schemas/20251121/linkml/modules/classes/GeoSpatialPlace.yaml
schemas/20251121/linkml/modules/classes/ApproximationStatus.yaml
schemas/20251121/linkml/modules/classes/AddressType.yaml
schemas/20251121/linkml/modules/classes/TimeSpanTypes.yaml
schemas/20251121/linkml/modules/classes/Format.yaml
schemas/20251121/linkml/modules/classes/EquipmentType.yaml
schemas/20251121/linkml/modules/classes/ConfidenceLevel.yaml
schemas/20251121/linkml/modules/classes/HandsOnFacility.yaml
schemas/20251121/linkml/modules/classes/VideoChapter.yaml
schemas/20251121/linkml/modules/classes/EmailAddress.yaml
schemas/20251121/linkml/modules/classes/TreatmentType.yaml
schemas/20251121/linkml/modules/classes/TimeEntry.yaml
schemas/20251121/linkml/modules/classes/OriginalEntryCoordinates.yaml
schemas/20251121/linkml/modules/classes/AnnotationMotivationTypes.yaml
schemas/20251121/linkml/modules/classes/VideoTranscript.yaml
schemas/20251121/linkml/modules/classes/SourceCoordinates.yaml
schemas/20251121/linkml/modules/classes/Bookplate.yaml
schemas/20251121/linkml/modules/classes/ForkliftAccess.yaml
schemas/20251121/linkml/modules/classes/ChAnnotatorProvenance.yaml
schemas/20251121/linkml/modules/classes/Timestamp.yaml
schemas/20251121/linkml/modules/classes/Standard.yaml
schemas/20251121/linkml/modules/classes/BiologicalObject.yaml
schemas/20251121/linkml/modules/classes/DeviceTypes.yaml
schemas/20251121/linkml/modules/classes/TechnologicalInfrastructureTypes.yaml
schemas/20251121/linkml/modules/classes/YoutubeTranscript.yaml
schemas/20251121/linkml/modules/classes/Collection.yaml
schemas/20251121/linkml/modules/classes/CustodianAdministration.yaml
schemas/20251121/linkml/modules/classes/VideoTextContent.yaml
schemas/20251121/linkml/modules/classes/ConfidenceMeasure.yaml
schemas/20251121/linkml/modules/classes/EquipmentTypes.yaml
schemas/20251121/linkml/modules/classes/FieldOfStudy.yaml
schemas/20251121/linkml/modules/enums/RoomUnitTypeEnum.yaml
schemas/20251121/linkml/modules/enums/EntityTypeEnum.yaml
schemas/20251121/linkml/modules/enums/ExhibitedObjectTypeEnum.yaml
schemas/20251121/linkml/modules/enums/AgentTypeEnum.yaml
schemas/20251121/linkml/modules/enums/EncompassingBodyTypeEnum.yaml
schemas/20251121/linkml/modules/enums/FeatureTypeEnum.yaml
schemas/20251121/linkml/modules/enums/DualClassPatternEnum.yaml
schemas/20251121/linkml/modules/enums/AuthorRoleEnum.yaml
schemas/20251121/linkml/modules/enums/LanguageProficiencyEnum.yaml
schemas/20251121/linkml/modules/enums/LoanStatusEnum.yaml
schemas/20251121/linkml/modules/enums/EventStatusEnum.yaml
schemas/20251121/linkml/modules/enums/QuantityTypeEnum.yaml
schemas/20251121/linkml/modules/enums/PlaceSpecificityEnum.yaml
schemas/20251121/linkml/modules/enums/EventTypeEnum.yaml
schemas/20251121/linkml/modules/enums/ConservationStatusEnum.yaml
schemas/20251121/linkml/modules/enums/DonationSchemeTypeEnum.yaml
schemas/20251121/linkml/modules/mappings/ISO20275_common.yaml
schemas/20251121/linkml/modules/mappings/ISO20275_mapping.yaml
schemas/20251121/linkml/modules/slots/changes_or_changed_ownership_from.yaml
schemas/20251121/linkml/modules/slots/is_or_was_published_at.yaml
schemas/20251121/linkml/modules/slots/objective.yaml
schemas/20251121/linkml/modules/slots/partnership_model.yaml
schemas/20251121/linkml/modules/slots/has_or_had_author.yaml
schemas/20251121/linkml/modules/slots/name_validity_period.yaml
schemas/20251121/linkml/modules/slots/contact_point.yaml
schemas/20251121/linkml/modules/slots/participant_count.yaml
schemas/20251121/linkml/modules/slots/is_or_was_involved_in.yaml
schemas/20251121/linkml/modules/slots/is_or_was_used_in.yaml
schemas/20251121/linkml/modules/slots/stores_or_stored.yaml
schemas/20251121/linkml/modules/slots/has_or_had_thumbnail.yaml
schemas/20251121/linkml/modules/slots/requires_or_required.yaml
schemas/20251121/linkml/modules/slots/has_or_had_arrangement.yaml
schemas/20251121/linkml/modules/slots/is_or_was_superseded_by.yaml
schemas/20251121/linkml/modules/slots/loan_timespan.yaml
schemas/20251121/linkml/modules/slots/secularization_status.yaml
schemas/20251121/linkml/modules/slots/applies_or_applied_to.yaml
schemas/20251121/linkml/modules/slots/is_or_was_based_on.yaml
schemas/20251121/linkml/modules/slots/creator_role.yaml
schemas/20251121/linkml/modules/slots/regulatory_authority.yaml
schemas/20251121/linkml/modules/slots/is_or_was_required.yaml
schemas/20251121/linkml/modules/slots/is_or_was_approximate.yaml
schemas/20251121/linkml/modules/slots/has_or_had_level.yaml
schemas/20251121/linkml/modules/slots/is_or_was_used_by.yaml
schemas/20251121/linkml/modules/slots/is_or_was_appended_with.yaml
schemas/20251121/linkml/modules/slots/scope_exclude.yaml
schemas/20251121/linkml/modules/slots/part_of_custodian_collection.yaml
schemas/20251121/linkml/modules/slots/has_or_had_status.yaml
schemas/20251121/linkml/modules/slots/is_or_was_responsible_for.yaml
schemas/20251121/linkml/modules/slots/policy_authority.yaml
schemas/20251121/linkml/modules/slots/uses_or_used.yaml
schemas/20251121/linkml/modules/slots/refers_or_referred_to.yaml
schemas/20251121/linkml/modules/slots/legal_entity_type.yaml
schemas/20251121/linkml/modules/slots/organizational_principle_uri.yaml
schemas/20251121/linkml/modules/slots/content_hash.yaml
schemas/20251121/linkml/modules/slots/regulated_by_scheme.yaml
schemas/20251121/linkml/modules/slots/record_timespan.yaml
schemas/20251121/linkml/modules/slots/has_or_had_expense.yaml
schemas/20251121/linkml/modules/slots/has_or_had_activity.yaml
schemas/20251121/linkml/modules/slots/is_or_was_transferred_to.yaml
schemas/20251121/linkml/modules/slots/justification.yaml
schemas/20251121/linkml/modules/slots/religious_tradition.yaml
schemas/20251121/linkml/modules/slots/has_or_had_frequency.yaml
schemas/20251121/linkml/modules/slots/is_or_was_located_in.yaml
schemas/20251121/linkml/modules/slots/mixed_governance_structure.yaml
schemas/20251121/linkml/modules/slots/requires_appointment.yaml
schemas/20251121/linkml/modules/slots/legal_form.yaml
schemas/20251121/linkml/modules/slots/has_or_had_revenue.yaml
schemas/20251121/linkml/modules/slots/refers_to_person.yaml
schemas/20251121/linkml/modules/slots/serves_finding_aid.yaml
schemas/20251121/linkml/modules/slots/has_or_had_significance.yaml
schemas/20251121/linkml/modules/slots/temporal_extent.yaml
schemas/20251121/linkml/modules/slots/organizational_principle.yaml
schemas/20251121/linkml/modules/slots/is_or_was_created_by.yaml
schemas/20251121/linkml/modules/slots/has_or_had_equipment_type.yaml
schemas/20251121/linkml/modules/slots/has_or_had_technological_infrastructure.yaml
schemas/20251121/linkml/modules/slots/is_or_was_part_of_total.yaml
schemas/20251121/linkml/modules/slots/oversight_jurisdiction.yaml
schemas/20251121/linkml/modules/slots/is_approximate.yaml
schemas/20251121/linkml/modules/slots/is_or_was_succeeded_by.yaml
schemas/20251121/linkml/modules/slots/has_or_had_sensitivity_level.yaml
schemas/20251121/linkml/modules/slots/provides_or_provided_provenance_to.yaml
schemas/20251121/linkml/modules/slots/creation_timespan.yaml
schemas/20251121/linkml/modules/slots/has_supervised_handling.yaml
schemas/20251121/linkml/modules/slots/poses_or_posed_condition.yaml
schemas/20251121/linkml/modules/slots/has_or_had_qualifier.yaml
schemas/20251121/linkml/modules/slots/reservation_required.yaml

300
missing_terms_audit.txt Normal file
View file

@ -0,0 +1,300 @@
schemas/20251121/linkml/01_custodian_name_modular.yaml
schemas/20251121/linkml/archive/refactored/StaffRoles_monolithic_20260108.yaml
schemas/20251121/linkml/archive/refactored/ReadingRoom_monolithic_20260108.yaml
schemas/20251121/linkml/archive/refactored/LanguageProficiency_monolithic_20260108.yaml
schemas/20251121/linkml/archive/refactored/class_metadata_slots_monolithic_20260107.yaml
schemas/20251121/linkml/archive/refactored/CateringPlace_monolithic_20260108.yaml
schemas/20251121/linkml/archive/refactored/EncompassingBody_monolithic_20260108.yaml
schemas/20251121/linkml/archive/refactored/identifier_standards_schema_monolithic_20260108.yaml
schemas/20251121/linkml/archive/refactored/VideoChapter_monolithic_20260108.yaml
schemas/20251121/linkml/archive/refactored/FindingAidType_monolithic_20260108.yaml
schemas/20251121/linkml/archive/refactored/DataServiceEndpoint_monolithic_20260108.yaml
schemas/20251121/linkml/archive/slots/has_or_had_manages_collection.yaml
schemas/20251121/linkml/archive/slots/has_derived_observation.yaml
schemas/20251121/linkml/archive/slots/illustration.yaml
schemas/20251121/linkml/archive/slots/has_or_had_managed_collection.yaml
schemas/20251121/linkml/archive/slots/has_or_had_registration_number.yaml
schemas/20251121/linkml/archive/slots/has_or_had_administrative_expense_archived_20260114.yaml
schemas/20251121/linkml/examples/registration_info_examples.yaml
schemas/20251121/linkml/instances/enums/feature_type.yaml
schemas/20251121/linkml/instances/enums/encompassing_body_type.yaml
schemas/20251121/linkml/instances/enums/agent_type.yaml
schemas/20251121/linkml/instances/enums/source_document_type.yaml
schemas/20251121/linkml/instances/enums/entity_type.yaml
schemas/20251121/linkml/instances/enums/place_specificity.yaml
schemas/20251121/linkml/modules/classes/ExtractionSourceInfo.yaml
schemas/20251121/linkml/modules/classes/RegistrationAuthority.yaml
schemas/20251121/linkml/modules/classes/LegalEntityType.yaml
schemas/20251121/linkml/modules/classes/EnrichmentMethod.yaml
schemas/20251121/linkml/modules/classes/Arrangement.yaml
schemas/20251121/linkml/modules/classes/Methodology.yaml
schemas/20251121/linkml/modules/classes/Carrier.yaml
schemas/20251121/linkml/modules/classes/Agreement.yaml
schemas/20251121/linkml/modules/classes/WikidataArchitecture.yaml
schemas/20251121/linkml/modules/classes/WebObservation.yaml
schemas/20251121/linkml/modules/classes/Observation.yaml
schemas/20251121/linkml/modules/classes/CauseOfDeath.yaml
schemas/20251121/linkml/modules/classes/UpdateFrequency.yaml
schemas/20251121/linkml/modules/classes/Edition.yaml
schemas/20251121/linkml/modules/classes/Acquisition.yaml
schemas/20251121/linkml/modules/classes/EducationFacilityType.yaml
schemas/20251121/linkml/modules/classes/ApplicantRequirement.yaml
schemas/20251121/linkml/modules/classes/EncompassingBodyTypes.yaml
schemas/20251121/linkml/modules/classes/VideoTimeSegment.yaml
schemas/20251121/linkml/modules/classes/CarrierTypes.yaml
schemas/20251121/linkml/modules/classes/StorageCondition.yaml
schemas/20251121/linkml/modules/classes/AnnotationMotivationType.yaml
schemas/20251121/linkml/modules/classes/InternetOfThings.yaml
schemas/20251121/linkml/modules/classes/ApprovalTimeTypes.yaml
schemas/20251121/linkml/modules/classes/DataServiceEndpoint.yaml
schemas/20251121/linkml/modules/classes/WikidataCoordinates.yaml
schemas/20251121/linkml/modules/classes/RejectedGoogleMapsData.yaml
schemas/20251121/linkml/modules/classes/Warehouse.yaml
schemas/20251121/linkml/modules/classes/EBook.yaml
schemas/20251121/linkml/modules/classes/PrimaryDigitalPresenceAssertion.yaml
schemas/20251121/linkml/modules/classes/Item.yaml
schemas/20251121/linkml/modules/classes/Classroom.yaml
schemas/20251121/linkml/modules/classes/InformationCarrier.yaml
schemas/20251121/linkml/modules/classes/Custodian.yaml
schemas/20251121/linkml/modules/classes/EncompassingBody.yaml
schemas/20251121/linkml/modules/classes/ContactDetails.yaml
schemas/20251121/linkml/modules/classes/GoverningBody.yaml
schemas/20251121/linkml/modules/classes/LegalForm.yaml
schemas/20251121/linkml/modules/classes/CollectionType.yaml
schemas/20251121/linkml/modules/classes/WikidataContact.yaml
schemas/20251121/linkml/modules/classes/ExhibitedObject.yaml
schemas/20251121/linkml/modules/classes/DeceasedStatus.yaml
schemas/20251121/linkml/modules/classes/ReconstructionAgent.yaml
schemas/20251121/linkml/modules/classes/CustodianName.yaml
schemas/20251121/linkml/modules/classes/Coordinates.yaml
schemas/20251121/linkml/modules/classes/BirthDate.yaml
schemas/20251121/linkml/modules/classes/TransferPolicy.yaml
schemas/20251121/linkml/modules/classes/Person.yaml
schemas/20251121/linkml/modules/classes/Locker.yaml
schemas/20251121/linkml/modules/classes/SubGuideType.yaml
schemas/20251121/linkml/modules/classes/HistoricBuilding.yaml
schemas/20251121/linkml/modules/classes/HolySacredSiteType.yaml
schemas/20251121/linkml/modules/classes/Event.yaml
schemas/20251121/linkml/modules/classes/CollectionManagementSystem.yaml
schemas/20251121/linkml/modules/classes/ApplicantType.yaml
schemas/20251121/linkml/modules/classes/YoutubeProvenance.yaml
schemas/20251121/linkml/modules/classes/CollectionEvent.yaml
schemas/20251121/linkml/modules/classes/HeritageObject.yaml
schemas/20251121/linkml/modules/classes/ClimateControl.yaml
schemas/20251121/linkml/modules/classes/RequirementStatus.yaml
schemas/20251121/linkml/modules/classes/NormalizedLocation.yaml
schemas/20251121/linkml/modules/classes/LoadingDock.yaml
schemas/20251121/linkml/modules/classes/EducationProviderType.yaml
schemas/20251121/linkml/modules/classes/PlatformSourceReference.yaml
schemas/20251121/linkml/modules/classes/TechnologicalInfrastructureType.yaml
schemas/20251121/linkml/modules/classes/OrganizationalChangeEvent.yaml
schemas/20251121/linkml/modules/classes/Permission.yaml
schemas/20251121/linkml/modules/classes/SourceProvenance.yaml
schemas/20251121/linkml/modules/classes/WebEnrichment.yaml
schemas/20251121/linkml/modules/classes/ReadingRoom.yaml
schemas/20251121/linkml/modules/classes/TransferEvent.yaml
schemas/20251121/linkml/modules/classes/ConfidenceScore.yaml
schemas/20251121/linkml/modules/classes/WebArchiveFailure.yaml
schemas/20251121/linkml/modules/classes/Department.yaml
schemas/20251121/linkml/modules/classes/Administration.yaml
schemas/20251121/linkml/modules/classes/WikidataLocation.yaml
schemas/20251121/linkml/modules/classes/CoFunding.yaml
schemas/20251121/linkml/modules/classes/CatalogSystemType.yaml
schemas/20251121/linkml/modules/classes/AuxiliaryPlace.yaml
schemas/20251121/linkml/modules/classes/Video.yaml
schemas/20251121/linkml/modules/classes/LegalName.yaml
schemas/20251121/linkml/modules/classes/LocationResolution.yaml
schemas/20251121/linkml/modules/classes/OfficialInstitutionType.yaml
schemas/20251121/linkml/modules/classes/FumeHood.yaml
schemas/20251121/linkml/modules/classes/TimespanBlock.yaml
schemas/20251121/linkml/modules/classes/ConflictStatus.yaml
schemas/20251121/linkml/modules/classes/RawSource.yaml
schemas/20251121/linkml/modules/classes/InstitutionalFunction.yaml
schemas/20251121/linkml/modules/classes/AvailabilityStatus.yaml
schemas/20251121/linkml/modules/classes/NonProfitType.yaml
schemas/20251121/linkml/modules/classes/Address.yaml
schemas/20251121/linkml/modules/classes/MuseumRegisterProvenance.yaml
schemas/20251121/linkml/modules/classes/CertaintyLevel.yaml
schemas/20251121/linkml/modules/classes/TimeSpan.yaml
schemas/20251121/linkml/modules/classes/OriginalEntryLocation.yaml
schemas/20251121/linkml/modules/classes/TemporaryLocation.yaml
schemas/20251121/linkml/modules/classes/AddressComponent.yaml
schemas/20251121/linkml/modules/classes/PublicationEvent.yaml
schemas/20251121/linkml/modules/classes/AuctionHouse.yaml
schemas/20251121/linkml/modules/classes/AccessPolicy.yaml
schemas/20251121/linkml/modules/classes/CustodianLegalStatus.yaml
schemas/20251121/linkml/modules/classes/AudioEventSegment.yaml
schemas/20251121/linkml/modules/classes/BudgetStatus.yaml
schemas/20251121/linkml/modules/classes/PermissionType.yaml
schemas/20251121/linkml/modules/classes/DatePrecision.yaml
schemas/20251121/linkml/modules/classes/GeoSpatialPlace.yaml
schemas/20251121/linkml/modules/classes/ApproximationStatus.yaml
schemas/20251121/linkml/modules/classes/AddressType.yaml
schemas/20251121/linkml/modules/classes/TimeSpanTypes.yaml
schemas/20251121/linkml/modules/classes/Format.yaml
schemas/20251121/linkml/modules/classes/EquipmentType.yaml
schemas/20251121/linkml/modules/classes/ConfidenceLevel.yaml
schemas/20251121/linkml/modules/classes/HandsOnFacility.yaml
schemas/20251121/linkml/modules/classes/VideoChapter.yaml
schemas/20251121/linkml/modules/classes/EmailAddress.yaml
schemas/20251121/linkml/modules/classes/TreatmentType.yaml
schemas/20251121/linkml/modules/classes/TimeEntry.yaml
schemas/20251121/linkml/modules/classes/OriginalEntryCoordinates.yaml
schemas/20251121/linkml/modules/classes/AnnotationMotivationTypes.yaml
schemas/20251121/linkml/modules/classes/VideoTranscript.yaml
schemas/20251121/linkml/modules/classes/SourceCoordinates.yaml
schemas/20251121/linkml/modules/classes/Bookplate.yaml
schemas/20251121/linkml/modules/classes/ForkliftAccess.yaml
schemas/20251121/linkml/modules/classes/ChAnnotatorProvenance.yaml
schemas/20251121/linkml/modules/classes/Timestamp.yaml
schemas/20251121/linkml/modules/classes/Standard.yaml
schemas/20251121/linkml/modules/classes/BiologicalObject.yaml
schemas/20251121/linkml/modules/classes/DeviceTypes.yaml
schemas/20251121/linkml/modules/classes/TechnologicalInfrastructureTypes.yaml
schemas/20251121/linkml/modules/classes/YoutubeTranscript.yaml
schemas/20251121/linkml/modules/classes/Collection.yaml
schemas/20251121/linkml/modules/classes/CustodianAdministration.yaml
schemas/20251121/linkml/modules/classes/VideoTextContent.yaml
schemas/20251121/linkml/modules/classes/ConfidenceMeasure.yaml
schemas/20251121/linkml/modules/classes/EquipmentTypes.yaml
schemas/20251121/linkml/modules/classes/FieldOfStudy.yaml
schemas/20251121/linkml/modules/classes/archive/EducationCredential_archived_20260125.yaml
schemas/20251121/linkml/modules/enums/RoomUnitTypeEnum.yaml
schemas/20251121/linkml/modules/enums/EntityTypeEnum.yaml
schemas/20251121/linkml/modules/enums/ExhibitedObjectTypeEnum.yaml
schemas/20251121/linkml/modules/enums/AgentTypeEnum.yaml
schemas/20251121/linkml/modules/enums/EncompassingBodyTypeEnum.yaml
schemas/20251121/linkml/modules/enums/FeatureTypeEnum.yaml
schemas/20251121/linkml/modules/enums/DualClassPatternEnum.yaml
schemas/20251121/linkml/modules/enums/AuthorRoleEnum.yaml
schemas/20251121/linkml/modules/enums/LanguageProficiencyEnum.yaml
schemas/20251121/linkml/modules/enums/LoanStatusEnum.yaml
schemas/20251121/linkml/modules/enums/EventStatusEnum.yaml
schemas/20251121/linkml/modules/enums/QuantityTypeEnum.yaml
schemas/20251121/linkml/modules/enums/PlaceSpecificityEnum.yaml
schemas/20251121/linkml/modules/enums/EventTypeEnum.yaml
schemas/20251121/linkml/modules/enums/ConservationStatusEnum.yaml
schemas/20251121/linkml/modules/enums/DonationSchemeTypeEnum.yaml
schemas/20251121/linkml/modules/mappings/ISO20275_common.yaml
schemas/20251121/linkml/modules/mappings/ISO20275_mapping.yaml
schemas/20251121/linkml/modules/slots/changes_or_changed_ownership_from.yaml
schemas/20251121/linkml/modules/slots/is_or_was_published_at.yaml
schemas/20251121/linkml/modules/slots/objective.yaml
schemas/20251121/linkml/modules/slots/partnership_model.yaml
schemas/20251121/linkml/modules/slots/has_or_had_author.yaml
schemas/20251121/linkml/modules/slots/name_validity_period.yaml
schemas/20251121/linkml/modules/slots/contact_point.yaml
schemas/20251121/linkml/modules/slots/participant_count.yaml
schemas/20251121/linkml/modules/slots/is_or_was_involved_in.yaml
schemas/20251121/linkml/modules/slots/is_or_was_used_in.yaml
schemas/20251121/linkml/modules/slots/stores_or_stored.yaml
schemas/20251121/linkml/modules/slots/has_or_had_thumbnail.yaml
schemas/20251121/linkml/modules/slots/requires_or_required.yaml
schemas/20251121/linkml/modules/slots/has_or_had_arrangement.yaml
schemas/20251121/linkml/modules/slots/is_or_was_superseded_by.yaml
schemas/20251121/linkml/modules/slots/loan_timespan.yaml
schemas/20251121/linkml/modules/slots/secularization_status.yaml
schemas/20251121/linkml/modules/slots/applies_or_applied_to.yaml
schemas/20251121/linkml/modules/slots/is_or_was_based_on.yaml
schemas/20251121/linkml/modules/slots/creator_role.yaml
schemas/20251121/linkml/modules/slots/regulatory_authority.yaml
schemas/20251121/linkml/modules/slots/is_or_was_required.yaml
schemas/20251121/linkml/modules/slots/is_or_was_approximate.yaml
schemas/20251121/linkml/modules/slots/has_or_had_level.yaml
schemas/20251121/linkml/modules/slots/is_or_was_used_by.yaml
schemas/20251121/linkml/modules/slots/is_or_was_appended_with.yaml
schemas/20251121/linkml/modules/slots/scope_exclude.yaml
schemas/20251121/linkml/modules/slots/part_of_custodian_collection.yaml
schemas/20251121/linkml/modules/slots/has_or_had_status.yaml
schemas/20251121/linkml/modules/slots/is_or_was_responsible_for.yaml
schemas/20251121/linkml/modules/slots/policy_authority.yaml
schemas/20251121/linkml/modules/slots/uses_or_used.yaml
schemas/20251121/linkml/modules/slots/refers_or_referred_to.yaml
schemas/20251121/linkml/modules/slots/legal_entity_type.yaml
schemas/20251121/linkml/modules/slots/organizational_principle_uri.yaml
schemas/20251121/linkml/modules/slots/content_hash.yaml
schemas/20251121/linkml/modules/slots/regulated_by_scheme.yaml
schemas/20251121/linkml/modules/slots/record_timespan.yaml
schemas/20251121/linkml/modules/slots/has_or_had_expense.yaml
schemas/20251121/linkml/modules/slots/has_or_had_activity.yaml
schemas/20251121/linkml/modules/slots/is_or_was_transferred_to.yaml
schemas/20251121/linkml/modules/slots/justification.yaml
schemas/20251121/linkml/modules/slots/religious_tradition.yaml
schemas/20251121/linkml/modules/slots/has_or_had_frequency.yaml
schemas/20251121/linkml/modules/slots/is_or_was_located_in.yaml
schemas/20251121/linkml/modules/slots/mixed_governance_structure.yaml
schemas/20251121/linkml/modules/slots/requires_appointment.yaml
schemas/20251121/linkml/modules/slots/legal_form.yaml
schemas/20251121/linkml/modules/slots/has_or_had_revenue.yaml
schemas/20251121/linkml/modules/slots/refers_to_person.yaml
schemas/20251121/linkml/modules/slots/serves_finding_aid.yaml
schemas/20251121/linkml/modules/slots/has_or_had_significance.yaml
schemas/20251121/linkml/modules/slots/temporal_extent.yaml
schemas/20251121/linkml/modules/slots/organizational_principle.yaml
schemas/20251121/linkml/modules/slots/is_or_was_created_by.yaml
schemas/20251121/linkml/modules/slots/has_or_had_equipment_type.yaml
schemas/20251121/linkml/modules/slots/has_or_had_technological_infrastructure.yaml
schemas/20251121/linkml/modules/slots/is_or_was_part_of_total.yaml
schemas/20251121/linkml/modules/slots/oversight_jurisdiction.yaml
schemas/20251121/linkml/modules/slots/is_approximate.yaml
schemas/20251121/linkml/modules/slots/is_or_was_succeeded_by.yaml
schemas/20251121/linkml/modules/slots/has_or_had_sensitivity_level.yaml
schemas/20251121/linkml/modules/slots/provides_or_provided_provenance_to.yaml
schemas/20251121/linkml/modules/slots/creation_timespan.yaml
schemas/20251121/linkml/modules/slots/has_supervised_handling.yaml
schemas/20251121/linkml/modules/slots/poses_or_posed_condition.yaml
schemas/20251121/linkml/modules/slots/has_or_had_qualifier.yaml
schemas/20251121/linkml/modules/slots/reservation_required.yaml
schemas/20251121/linkml/modules/slots/archive/transfer_to_collection_date_archived_20260115.yaml
schemas/20251121/linkml/modules/slots/archive/time_of_destruction_archived_20260115.yaml
schemas/20251121/linkml/modules/slots/archive/has_or_had_requirement_status.yaml
schemas/20251121/linkml/modules/slots/archive/has_accession_number_archived_20260126.yaml
schemas/20251121/linkml/modules/slots/archive/cms_detected_archived_20260119.yaml
schemas/20251121/linkml/modules/slots/archive/has_articles_of_association.yaml
schemas/20251121/linkml/modules/slots/archive/has_acquisition_source_archived_20260126.yaml
schemas/20251121/linkml/modules/slots/archive/visitor_count_archived_20260115.yaml
schemas/20251121/linkml/modules/slots/archive/has_accession_date_archived_20260126.yaml
schemas/20251121/linkml/modules/slots/archive/documents_budget_archived_20260126.yaml
schemas/20251121/linkml/modules/slots/archive/confidence_score_archived_20260128.yaml
schemas/20251121/linkml/modules/slots/archive/has_or_had_affiliation.yaml
schemas/20251121/linkml/modules/slots/archive/exhibition_timespan_archived_20260126.yaml
schemas/20251121/linkml/modules/slots/archive/has_person_observation.yaml
schemas/20251121/linkml/modules/slots/archive/volunteer_program_archived_20260115.yaml
schemas/20251121/linkml/modules/slots/archive/documented_by_archived_20260126.yaml
schemas/20251121/linkml/modules/slots/archive/feeds_portal_archived_20260126.yaml
schemas/20251121/linkml/modules/slots/archive/funding_program_archived_20260126.yaml
schemas/20251121/linkml/modules/slots/archive/successor_collection_archived_20260115.yaml
schemas/20251121/linkml/modules/slots/archive/has_or_had_portal_data_source.yaml
schemas/20251121/linkml/modules/slots/archive/has_acquisition_date_archived_20260126.yaml
schemas/20251121/linkml/modules/slots/archive/has_address_archived_20260126.yaml
schemas/20251121/linkml/modules/slots/archive/event_date_archived_20260126.yaml
schemas/20251121/linkml/modules/slots/archive/change_rationale_archived_20260128.yaml
schemas/20251121/linkml/modules/slots/archive/has_or_had_access_right.yaml
schemas/20251121/linkml/modules/slots/archive/public_education.yaml
schemas/20251121/linkml/modules/slots/archive/type_scope_archived_20260115.yaml
schemas/20251121/linkml/modules/slots/archive/feature_name_archived_20260126.yaml
schemas/20251121/linkml/modules/slots/archive/funding_rate_archived_20260126.yaml
schemas/20251121/linkml/modules/slots/archive/has_timespan_archived_20260126.yaml
schemas/20251121/linkml/modules/slots/archive/event_timespan_archived_20260126.yaml
schemas/20251121/linkml/modules/slots/archive/storage_name_archived_20260115.yaml
schemas/20251121/linkml/modules/slots/archive/applies_or_applied_to_call_archived_20260117.yaml
schemas/20251121/linkml/modules/slots/archive/has_iso_3166_1_alpha_3_code_archived_20260116.yaml
schemas/20251121/linkml/modules/slots/archive/business_criticality_archived_20260117.yaml
schemas/20251121/linkml/modules/slots/archive/funding_scheme_archived_20260126.yaml
schemas/20251121/linkml/modules/slots/archive/has_or_had_curation_activity.yaml
schemas/20251121/linkml/modules/slots/archive/conflict_status_archived_20260122.yaml
schemas/20251121/linkml/modules/slots/archive/has_or_had_place_of_birth.yaml
schemas/20251121/linkml/modules/slots/archive/collections_under_responsibility_archived_20260119.yaml
schemas/20251121/linkml/modules/slots/archive/has_or_had_business_criticality.yaml
schemas/20251121/linkml/modules/slots/archive/has_or_had_alternative_observed_name_archived_20260127.yaml
schemas/20251121/linkml/modules/slots/archive/has_iso_3166_1_alpha_2_code_archived_20260116.yaml
schemas/20251121/linkml/modules/slots/archive/event_type_archived_20260126.yaml
schemas/20251121/linkml/modules/slots/archive/has_appointment_required_flag_archived_20260115.yaml
schemas/20251121/linkml/modules/slots/archive/has_or_had_access_trigger_event.yaml
schemas/20251121/linkml/modules/slots/archive/has_or_had_verification_status.yaml
schemas/20251121/linkml/modules/slots/archive/has_administrative_level_archived_20260127.yaml
schemas/20251121/linkml/modules/slots/archive/address_type_archived_20260114.yaml
schemas/20251121/linkml/modules/slots/archive/used_by_archived_20260115.yaml
schemas/20251121/linkml/modules/slots/archive/table_of_content_archived_20260116.yaml
schemas/20251121/linkml/modules/slots/archive/catalog_system_archived_20260124.yaml
schemas/20251121/linkml/modules/slots/archive/has_or_had_transmission_method.yaml

View file

@ -308,6 +308,10 @@ imports:
# Donation and giving schemes (NEW v0.9.11 - heritage institution funding)
- modules/classes/DonationScheme
# Tax schemes and deductibility (NEW v0.9.11 - donation support)
- modules/classes/TaxScheme
- modules/classes/TaxDeductibility
# Web portals for heritage metadata aggregation (NEW v0.9.5)
- modules/classes/WebPortal
@ -549,6 +553,9 @@ imports:
- modules/slots/has_or_had_portal_data_source
- modules/slots/exposed_via_portal
- modules/slots/operated_by
# NEW: Aggregation-related slots
- modules/slots/aggregates_or_aggregated_from
- modules/slots/is_or_was_aggregated_by
# Bidirectional/inverse property slots (NEW v0.9.7)
- modules/slots/has_or_had_suborganization

View file

@ -82,12 +82,12 @@ classes:
- `metrics_observed_at`: When metrics were recorded
- `retrieval_timestamp`: When API call was made
**RELATIONSHIP TO VideoPostType**:
**RELATIONSHIP TO VideoPost**:
- VideoPost is a **concrete post instance** with video content
- VideoPostType is a **type classification** for categorizing posts
- A VideoPost typically has `post_types: [VideoPostType]`
- But may also have multiple types: `[LiveStreamPostType, VideoPostType]`
- VideoPost is a **type classification** for categorizing posts
- A VideoPost typically has `post_types: [VideoPost]`
- But may also have multiple types: `[LiveStreamPost, VideoPost]`
**CAPTION AND SUBTITLE DISTINCTION**:

View file

@ -1,5 +1,5 @@
{
"generated": "2026-01-29T12:33:24.009Z",
"generated": "2026-01-29T16:10:26.031Z",
"schemaRoot": "/schemas/20251121/linkml",
"totalFiles": 3003,
"categoryCounts": {

View file

@ -53,7 +53,18 @@ classes:
UniversityAdministrativeFonds:
is_a: AcademicArchiveRecordSetType
class_uri: rico:RecordSetType
description: "A rico:RecordSetType for university administrative records organized as a fonds.\n\n**Definition**:\nRecords created or accumulated by a university's central administration in the \nexercise of governance, policy-making, and operational functions. Organized \naccording to archival principles of provenance (respect des fonds).\n\n**Typical Contents**:\n- Governance records (board minutes, resolutions, bylaws)\n- Committee records (senate, faculty councils, standing committees)\n- Policy records (institutional policies, procedures, guidelines)\n- Strategic planning documents\n- Accreditation and institutional assessment records\n- Executive correspondence\n\n**RiC-O Alignment**:\nThis class is a specialized rico:RecordSetType. Records classified with this\ntype follow the fonds organizational principle as defined by rico-rst:Fonds\n(respect des fonds / provenance-based organization from university central administration).\n"
description: "A rico:RecordSetType for university administrative records organized\
\ as a fonds.\n\n**Definition**:\nRecords created or accumulated by a university's\
\ central administration in the \nexercise of governance, policy-making, and\
\ operational functions. Organized \naccording to archival principles of provenance\
\ (respect des fonds).\n\n**Typical Contents**:\n- Governance records (board\
\ minutes, resolutions, bylaws)\n- Committee records (senate, faculty councils,\
\ standing committees)\n- Policy records (institutional policies, procedures,\
\ guidelines)\n- Strategic planning documents\n- Accreditation and institutional\
\ assessment records\n- Executive correspondence\n\n**RiC-O Alignment**:\nThis\
\ class is a specialized rico:RecordSetType. Records classified with this\n\
type follow the fonds organizational principle as defined by rico-rst:Fonds\n\
(respect des fonds / provenance-based organization from university central administration).\n"
structured_aliases:
- literal_form: Hochschulverwaltungsbestand
in_language: de
@ -82,6 +93,8 @@ classes:
- rico-rst:Fonds
broad_mappings:
- wd:Q1643722
- rico:RecordSetType
- skos:Concept
close_mappings:
- skos:Concept
see_also:
@ -108,20 +121,35 @@ classes:
organizational_principle_uri:
equals_string: https://www.ica.org/standards/RiC/vocabularies/recordSetTypes#Fonds
record_note:
equals_string: This RecordSetType classifies record sets following the fonds principle. The fonds structure reflects provenance from university central administration.
equals_string: This RecordSetType classifies record sets following the fonds
principle. The fonds structure reflects provenance from university central
administration.
scope_include:
equals_string: '["governance records", "committee records", "policy records", "strategic planning", "accreditation records"]'
equals_string: '["governance records", "committee records", "policy records",
"strategic planning", "accreditation records"]'
scope_exclude:
equals_string: '["student records", "faculty papers", "research data"]'
annotations:
specificity_score: 0.1
specificity_rationale: Generic utility class/slot created during migration
custodian_types: "['*']"
custodian_types: '[''*'']'
custodian_types_rationale: Universal utility concept
AcademicStudentRecordSeries:
is_a: AcademicArchiveRecordSetType
class_uri: rico:RecordSetType
description: "A rico:RecordSetType for student records organized as archival series.\n\n**Definition**:\nRecords documenting the academic careers and activities of students, typically \norganized as series within a larger university fonds. Subject to retention \nschedules and privacy regulations (FERPA in US, GDPR in EU, AVG in NL).\n\n**Typical Contents**:\n- Enrollment and registration records\n- Academic transcripts and grade records\n- Graduation records and diploma registers\n- Disciplinary records\n- Financial aid records\n- Student organization records\n\n**Privacy Considerations**:\nAccess restrictions typically apply due to personally identifiable information.\nHistorical student records (typically 75+ years) may have fewer restrictions.\n\n**RiC-O Alignment**:\nThis class is a specialized rico:RecordSetType. Records classified with this\ntype follow the series organizational principle as defined by rico-rst:Series\n(organizational level within the university fonds).\n"
description: "A rico:RecordSetType for student records organized as archival series.\n\
\n**Definition**:\nRecords documenting the academic careers and activities of\
\ students, typically \norganized as series within a larger university fonds.\
\ Subject to retention \nschedules and privacy regulations (FERPA in US, GDPR\
\ in EU, AVG in NL).\n\n**Typical Contents**:\n- Enrollment and registration\
\ records\n- Academic transcripts and grade records\n- Graduation records and\
\ diploma registers\n- Disciplinary records\n- Financial aid records\n- Student\
\ organization records\n\n**Privacy Considerations**:\nAccess restrictions typically\
\ apply due to personally identifiable information.\nHistorical student records\
\ (typically 75+ years) may have fewer restrictions.\n\n**RiC-O Alignment**:\n\
This class is a specialized rico:RecordSetType. Records classified with this\n\
type follow the series organizational principle as defined by rico-rst:Series\n\
(organizational level within the university fonds).\n"
structured_aliases:
- literal_form: Studentenaktenserie
in_language: de
@ -150,6 +178,8 @@ classes:
- rico-rst:Series
broad_mappings:
- wd:Q185583
- rico:RecordSetType
- skos:Concept
close_mappings:
- skos:Concept
see_also:
@ -178,17 +208,33 @@ classes:
organizational_principle_uri:
equals_string: https://www.ica.org/standards/RiC/vocabularies/recordSetTypes#Series
record_note:
equals_string: This RecordSetType classifies record sets following the series principle. Typically a series within the university administration fonds or registrar's office fonds.
equals_string: This RecordSetType classifies record sets following the series
principle. Typically a series within the university administration fonds
or registrar's office fonds.
scope_include:
equals_string: '["enrollment records", "academic transcripts", "graduation records", "disciplinary records", "financial aid records"]'
equals_string: '["enrollment records", "academic transcripts", "graduation
records", "disciplinary records", "financial aid records"]'
scope_exclude:
equals_string: '["faculty records", "research records", "administrative policy"]'
privacy_note:
equals_string: Subject to educational records privacy laws (FERPA, GDPR, AVG). Access restrictions typically apply for records less than 75 years old.
equals_string: Subject to educational records privacy laws (FERPA, GDPR, AVG). Access
restrictions typically apply for records less than 75 years old.
FacultyPaperCollection:
is_a: AcademicArchiveRecordSetType
class_uri: rico:RecordSetType
description: "A rico:RecordSetType for faculty papers and personal archives.\n\n**Definition**:\nPersonal papers of faculty members documenting their academic careers, research \nactivities, teaching, and professional service. These are typically acquired as \ndonations or bequests, distinct from official university records.\n\n**Typical Contents**:\n- Research documentation and notes\n- Correspondence (professional and personal)\n- Lecture notes and course materials\n- Manuscripts and drafts\n- Conference papers and presentations\n- Professional organization records\n- Photographs and audiovisual materials\n\n**Provenance**:\nUnlike administrative fonds, faculty papers are personal archives with the \nindividual faculty member as creator/accumulator. The university acquires \ncustody but respects original order where it exists.\n\n**RiC-O Alignment**:\nThis class is a specialized rico:RecordSetType. Records classified with this\ntype follow the fonds organizational principle as defined\
description: "A rico:RecordSetType for faculty papers and personal archives.\n\
\n**Definition**:\nPersonal papers of faculty members documenting their academic\
\ careers, research \nactivities, teaching, and professional service. These\
\ are typically acquired as \ndonations or bequests, distinct from official\
\ university records.\n\n**Typical Contents**:\n- Research documentation and\
\ notes\n- Correspondence (professional and personal)\n- Lecture notes and course\
\ materials\n- Manuscripts and drafts\n- Conference papers and presentations\n\
- Professional organization records\n- Photographs and audiovisual materials\n\
\n**Provenance**:\nUnlike administrative fonds, faculty papers are personal\
\ archives with the \nindividual faculty member as creator/accumulator. The\
\ university acquires \ncustody but respects original order where it exists.\n\
\n**RiC-O Alignment**:\nThis class is a specialized rico:RecordSetType. Records\
\ classified with this\ntype follow the fonds organizational principle as defined\
\ by rico-rst:Fonds\n(personal papers fonds with the faculty member as creator/accumulator).\n"
structured_aliases:
- literal_form: Professorennachlass
@ -219,6 +265,8 @@ classes:
- rico-rst:Fonds
broad_mappings:
- wd:Q22075301
- rico:RecordSetType
- skos:Concept
close_mappings:
- skos:Concept
- bf:Archival
@ -227,7 +275,8 @@ classes:
- rico:RecordSetType
- rico-rst:Fonds
annotations:
acquisition_note: Typically acquired through donation or bequest. May include restrictions on access or publication specified by donor agreement.
acquisition_note: Typically acquired through donation or bequest. May include
restrictions on access or publication specified by donor agreement.
slots:
- has_or_had_type
- specificity_annotation
@ -248,16 +297,32 @@ classes:
organizational_principle_uri:
equals_string: https://www.ica.org/standards/RiC/vocabularies/recordSetTypes#Fonds
record_note:
equals_string: This RecordSetType classifies record sets following the fonds principle. Personal archives with individual faculty member as creator/accumulator.
equals_string: This RecordSetType classifies record sets following the fonds
principle. Personal archives with individual faculty member as creator/accumulator.
scope_include:
equals_string: '["research documentation", "correspondence", "lecture notes", "manuscripts", "conference papers"]'
equals_string: '["research documentation", "correspondence", "lecture notes",
"manuscripts", "conference papers"]'
scope_exclude:
equals_string: '["official university records", "student records", "administrative files"]'
equals_string: '["official university records", "student records", "administrative
files"]'
CampusDocumentationCollection:
is_a: AcademicArchiveRecordSetType
class_uri: rico:RecordSetType
description: "A rico:RecordSetType for campus life and institutional documentation.\n\n**Definition**:\nMaterials documenting campus life, institutional identity, and university \nculture beyond formal administrative records. Often includes visual materials, \npublications, and ephemera that capture the lived experience of the institution.\n\n**Typical Contents**:\n- Campus photographs and audiovisual materials\n- University publications (yearbooks, newspapers, magazines)\n- Ephemera (programs, posters, invitations)\n- Memorabilia and artifacts\n- Oral histories\n- Event documentation\n- Building and facilities documentation\n\n**Collection Nature**:\nMay be assembled collections (artificial) rather than strictly provenance-based,\nespecially for ephemera and visual materials. Documentation value often takes\nprecedence over strict archival arrangement.\n\n**RiC-O Alignment**:\nThis class is a specialized rico:RecordSetType. Records classified with this\ntype follow the collection organizational\
\ principle as defined by rico-rst:Collection\n(assembled/artificial collection organized by subject or documentation purpose).\n"
description: "A rico:RecordSetType for campus life and institutional documentation.\n\
\n**Definition**:\nMaterials documenting campus life, institutional identity,\
\ and university \nculture beyond formal administrative records. Often includes\
\ visual materials, \npublications, and ephemera that capture the lived experience\
\ of the institution.\n\n**Typical Contents**:\n- Campus photographs and audiovisual\
\ materials\n- University publications (yearbooks, newspapers, magazines)\n\
- Ephemera (programs, posters, invitations)\n- Memorabilia and artifacts\n-\
\ Oral histories\n- Event documentation\n- Building and facilities documentation\n\
\n**Collection Nature**:\nMay be assembled collections (artificial) rather than\
\ strictly provenance-based,\nespecially for ephemera and visual materials.\
\ Documentation value often takes\nprecedence over strict archival arrangement.\n\
\n**RiC-O Alignment**:\nThis class is a specialized rico:RecordSetType. Records\
\ classified with this\ntype follow the collection organizational principle\
\ as defined by rico-rst:Collection\n(assembled/artificial collection organized\
\ by subject or documentation purpose).\n"
structured_aliases:
- literal_form: Campus-Dokumentationssammlung
in_language: de
@ -287,6 +352,8 @@ classes:
- rico-rst:Collection
broad_mappings:
- wd:Q9388534
- rico:RecordSetType
- skos:Concept
close_mappings:
- skos:Concept
- schema:Collection
@ -295,7 +362,8 @@ classes:
- rico:RecordSetType
- rico-rst:Collection
annotations:
collection_nature_note: Often includes artificial/assembled collections organized by subject, format, or documentation purpose rather than strict provenance.
collection_nature_note: Often includes artificial/assembled collections organized
by subject, format, or documentation purpose rather than strict provenance.
slots:
- has_or_had_type
- specificity_annotation
@ -316,8 +384,11 @@ classes:
organizational_principle_uri:
equals_string: https://www.ica.org/standards/RiC/vocabularies/recordSetTypes#Collection
record_note:
equals_string: This RecordSetType classifies record sets following the collection principle. May be assembled collection (artificial) organized by subject or documentation purpose.
equals_string: This RecordSetType classifies record sets following the collection
principle. May be assembled collection (artificial) organized by subject
or documentation purpose.
scope_include:
equals_string: '["photographs", "audiovisual materials", "publications", "ephemera", "oral histories", "memorabilia"]'
equals_string: '["photographs", "audiovisual materials", "publications", "ephemera",
"oral histories", "memorabilia"]'
scope_exclude:
equals_string: '["administrative records", "student records", "faculty papers"]'

View file

@ -1,26 +1,25 @@
id: https://nde.nl/ontology/hc/class/ActivityTypes
name: ActivityTypes
title: ActivityTypes
description: >-
Container for ActivityType instances.
description: Container for ActivityType instances.
prefixes:
linkml: https://w3id.org/linkml/
hc: https://nde.nl/ontology/hc/
default_prefix: hc
imports:
- linkml:types
- ./ActivityType
- linkml:types
- ./ActivityType
classes:
ActivityTypes:
class_uri: hc:ActivityTypes
description: Activity types container.
annotations:
specificity_score: 0.1
specificity_rationale: "Generic utility class created during migration"
custodian_types: ["*"]
custodian_types_rationale: "Universal utility concept"
specificity_rationale: Generic utility class created during migration
custodian_types:
- '*'
custodian_types_rationale: Universal utility concept
tree_root: true
broad_mappings:
- crm:E7_Activity
- schema:Action

View file

@ -15,7 +15,8 @@ classes:
HeadquartersAddress:
is_a: AddressType
class_uri: hc:HeadquartersAddress
description: 'Main organizational headquarters address where primary operations occur.
description: 'Main organizational headquarters address where primary operations
occur.
This is typically where leadership and central administration are located.
@ -30,7 +31,7 @@ classes:
annotations:
short_code: HEADQUARTERS
specificity_score: '0.25'
custodian_types: "['*']"
custodian_types: '[''*'']'
custodian_types_rationale: Universal utility concept
examples:
- value:
@ -39,6 +40,8 @@ classes:
- Headquarters@en
- Hoofdkantoor@nl
description: Rijksmuseum main headquarters
broad_mappings:
- skos:Concept
LegalAddress:
is_a: AddressType
class_uri: hc:LegalAddress
@ -70,6 +73,8 @@ classes:
- Juridisch adres@nl
- Statutaire zetel@nl
description: Registered legal address from KvK
broad_mappings:
- skos:Concept
VisitingAddress:
is_a: AddressType
class_uri: hc:VisitingAddress
@ -93,6 +98,8 @@ classes:
- Visiting Address@en
- Bezoekadres@nl
description: Public visitor entrance
broad_mappings:
- skos:Concept
MailingAddress:
is_a: AddressType
class_uri: hc:MailingAddress
@ -115,6 +122,8 @@ classes:
- Postadres@nl
- Correspondentieadres@nl
description: Postal correspondence address
broad_mappings:
- skos:Concept
StorageAddress:
is_a: AddressType
class_uri: hc:StorageAddress
@ -142,6 +151,8 @@ classes:
- Opslaglocatie@nl
- Depot@nl
description: Off-site collection depot
broad_mappings:
- skos:Concept
BranchAddress:
is_a: AddressType
class_uri: hc:BranchAddress
@ -166,6 +177,8 @@ classes:
- Vestiging@nl
- Filiaal@nl
description: Branch office location
broad_mappings:
- skos:Concept
ReadingRoomAddress:
is_a: AddressType
class_uri: hc:ReadingRoomAddress
@ -190,6 +203,8 @@ classes:
- Studiezaal@nl
- Leeszaal@nl
description: Archive/library reading room entrance
broad_mappings:
- skos:Concept
DeliveryAddress:
is_a: AddressType
class_uri: hc:DeliveryAddress
@ -212,6 +227,8 @@ classes:
- Afleveradres@nl
- Goederenontvangst@nl
description: Delivery receiving dock
broad_mappings:
- skos:Concept
ConservationLabAddress:
is_a: AddressType
class_uri: hc:ConservationLabAddress
@ -234,3 +251,5 @@ classes:
- Restauratieatelier@nl
- Conserveringslab@nl
description: Restoration workshop facility
broad_mappings:
- skos:Concept

View file

@ -46,7 +46,9 @@ classes:
RadioAdvertisementCollection:
is_a: AdvertisingRadioArchiveRecordSetType
class_uri: rico:RecordSetType
description: "A rico:RecordSetType for Radio commercial recordings.\n\n**RiC-O Alignment**:\nThis class is a specialized rico:RecordSetType following the collection \norganizational principle as defined by rico-rst:Collection.\n"
description: "A rico:RecordSetType for Radio commercial recordings.\n\n**RiC-O\
\ Alignment**:\nThis class is a specialized rico:RecordSetType following the\
\ collection \norganizational principle as defined by rico-rst:Collection.\n"
exact_mappings:
- rico:RecordSetType
related_mappings:
@ -77,16 +79,22 @@ classes:
record_holder:
equals_string: AdvertisingRadioArchive
record_holder_note:
equals_string: This RecordSetType is typically held by AdvertisingRadioArchive custodians. Inverse of rico:isOrWasHolderOf.
equals_string: This RecordSetType is typically held by AdvertisingRadioArchive
custodians. Inverse of rico:isOrWasHolderOf.
annotations:
specificity_score: 0.1
specificity_rationale: Generic utility class/slot created during migration
custodian_types: "['*']"
custodian_types: '[''*'']'
custodian_types_rationale: Universal utility concept
broad_mappings:
- rico:RecordSetType
- skos:Concept
CampaignDocumentationSeries:
is_a: AdvertisingRadioArchiveRecordSetType
class_uri: rico:RecordSetType
description: "A rico:RecordSetType for Advertising campaign records.\n\n**RiC-O Alignment**:\nThis class is a specialized rico:RecordSetType following the series \norganizational principle as defined by rico-rst:Series.\n"
description: "A rico:RecordSetType for Advertising campaign records.\n\n**RiC-O\
\ Alignment**:\nThis class is a specialized rico:RecordSetType following the\
\ series \norganizational principle as defined by rico-rst:Series.\n"
exact_mappings:
- rico:RecordSetType
related_mappings:
@ -117,4 +125,8 @@ classes:
record_holder:
equals_string: AdvertisingRadioArchive
record_holder_note:
equals_string: This RecordSetType is typically held by AdvertisingRadioArchive custodians. Inverse of rico:isOrWasHolderOf.
equals_string: This RecordSetType is typically held by AdvertisingRadioArchive
custodians. Inverse of rico:isOrWasHolderOf.
broad_mappings:
- rico:RecordSetType
- skos:Concept

View file

@ -14,24 +14,36 @@ prefixes:
hc: https://nde.nl/ontology/hc/
default_prefix: hc
classes:
PersonAgentType:
PersonAgent:
is_a: AgentType
class_uri: hc:PersonAgentType
class_uri: hc:PersonAgent
description: Agent type for natural persons.
annotations:
specificity_score: 0.1
specificity_rationale: Generic utility class/slot created during migration
custodian_types: "['*']"
custodian_types: '[''*'']'
custodian_types_rationale: Universal utility concept
OrganizationAgentType:
broad_mappings:
- crm:E39_Actor
- schema:Organization
OrganizationAgent:
is_a: AgentType
class_uri: hc:OrganizationAgentType
class_uri: hc:OrganizationAgent
description: Agent type for organizations.
SoftwareAgentType:
broad_mappings:
- crm:E39_Actor
- schema:Organization
SoftwareAgent:
is_a: AgentType
class_uri: hc:SoftwareAgentType
class_uri: hc:SoftwareAgent
description: Agent type for software agents or automated processes.
GroupAgentType:
broad_mappings:
- crm:E39_Actor
- schema:Organization
GroupAgent:
is_a: AgentType
class_uri: hc:GroupAgentType
class_uri: hc:GroupAgent
description: Agent type for informal groups or collectives.
broad_mappings:
- crm:E39_Actor
- schema:Organization

View file

@ -22,7 +22,7 @@ imports:
- ./TimeSpan
classes:
Agreement:
class_uri: schema:Agreement
class_uri: schema:Contract
description: 'A formal agreement, contract, or treaty between parties.
@ -37,7 +37,7 @@ classes:
**Ontological Alignment**:
- `schema:Agreement`: A generic agreement.
- `schema:Contract`: A generic agreement.
'
slots:

View file

@ -46,7 +46,9 @@ classes:
BioacousticRecordingCollection:
is_a: AnimalSoundArchiveRecordSetType
class_uri: rico:RecordSetType
description: "A rico:RecordSetType for Animal and nature sound recordings.\n\n**RiC-O Alignment**:\nThis class is a specialized rico:RecordSetType following the collection \norganizational principle as defined by rico-rst:Collection.\n"
description: "A rico:RecordSetType for Animal and nature sound recordings.\n\n\
**RiC-O Alignment**:\nThis class is a specialized rico:RecordSetType following\
\ the collection \norganizational principle as defined by rico-rst:Collection.\n"
exact_mappings:
- rico:RecordSetType
related_mappings:
@ -77,16 +79,22 @@ classes:
record_holder:
equals_string: AnimalSoundArchive
record_holder_note:
equals_string: This RecordSetType is typically held by AnimalSoundArchive custodians. Inverse of rico:isOrWasHolderOf.
equals_string: This RecordSetType is typically held by AnimalSoundArchive
custodians. Inverse of rico:isOrWasHolderOf.
annotations:
specificity_score: 0.1
specificity_rationale: Generic utility class/slot created during migration
custodian_types: "['*']"
custodian_types: '[''*'']'
custodian_types_rationale: Universal utility concept
broad_mappings:
- rico:RecordSetType
- skos:Concept
FieldRecordingSeries:
is_a: AnimalSoundArchiveRecordSetType
class_uri: rico:RecordSetType
description: "A rico:RecordSetType for Field research audio.\n\n**RiC-O Alignment**:\nThis class is a specialized rico:RecordSetType following the series \norganizational principle as defined by rico-rst:Series.\n"
description: "A rico:RecordSetType for Field research audio.\n\n**RiC-O Alignment**:\n\
This class is a specialized rico:RecordSetType following the series \norganizational\
\ principle as defined by rico-rst:Series.\n"
exact_mappings:
- rico:RecordSetType
related_mappings:
@ -117,4 +125,8 @@ classes:
record_holder:
equals_string: AnimalSoundArchive
record_holder_note:
equals_string: This RecordSetType is typically held by AnimalSoundArchive custodians. Inverse of rico:isOrWasHolderOf.
equals_string: This RecordSetType is typically held by AnimalSoundArchive
custodians. Inverse of rico:isOrWasHolderOf.
broad_mappings:
- rico:RecordSetType
- skos:Concept

View file

@ -101,8 +101,10 @@ classes:
annotations:
specificity_score: 0.1
specificity_rationale: Generic utility class/slot created during migration
custodian_types: "['*']"
custodian_types: '[''*'']'
custodian_types_rationale: Universal utility concept
broad_mappings:
- skos:Concept
DescribingMotivation:
is_a: AnnotationMotivationType
class_uri: oa:describing
@ -171,6 +173,8 @@ classes:
comments:
- W3C Web Annotation standard motivation
- Fundamental to heritage cataloging and accessibility
broad_mappings:
- skos:Concept
IdentifyingMotivation:
is_a: AnnotationMotivationType
class_uri: oa:identifying
@ -239,6 +243,8 @@ classes:
comments:
- W3C Web Annotation standard motivation
- Links content to identified entities
broad_mappings:
- skos:Concept
TaggingMotivation:
is_a: AnnotationMotivationType
class_uri: oa:tagging
@ -307,6 +313,8 @@ classes:
comments:
- W3C Web Annotation standard motivation
- User-generated content enrichment
broad_mappings:
- skos:Concept
LinkingMotivation:
is_a: AnnotationMotivationType
class_uri: oa:linking
@ -376,6 +384,8 @@ classes:
comments:
- W3C Web Annotation standard motivation
- Enables Linked Open Data connections
broad_mappings:
- skos:Concept
CommentingMotivation:
is_a: AnnotationMotivationType
class_uri: oa:commenting
@ -442,6 +452,8 @@ classes:
comments:
- W3C Web Annotation standard motivation
- User and scholarly engagement
broad_mappings:
- skos:Concept
AccessibilityMotivation:
is_a: AnnotationMotivationType
class_uri: hc:accessibilityMotivation
@ -525,6 +537,8 @@ classes:
- Heritage-specific extension beyond W3C standard
- Critical for inclusive heritage access
- Supports WCAG compliance
broad_mappings:
- skos:Concept
DiscoveryMotivation:
is_a: AnnotationMotivationType
class_uri: hc:discoveryMotivation
@ -606,6 +620,8 @@ classes:
- Heritage-specific extension beyond W3C standard
- Enables collection discoverability
- Supports aggregator integration
broad_mappings:
- skos:Concept
PreservationMotivation:
is_a: AnnotationMotivationType
class_uri: hc:preservationMotivation
@ -689,6 +705,8 @@ classes:
- Heritage-specific extension beyond W3C standard
- Critical for digital preservation
- Supports OAIS and PREMIS compliance
broad_mappings:
- skos:Concept
ResearchMotivation:
is_a: AnnotationMotivationType
class_uri: hc:researchMotivation
@ -770,3 +788,5 @@ classes:
- Heritage-specific extension beyond W3C standard
- Supports digital humanities and research
- Enables computational analysis documentation
broad_mappings:
- skos:Concept

View file

@ -21,17 +21,25 @@ classes:
annotations:
specificity_score: 0.1
specificity_rationale: Generic utility class/slot created during migration
custodian_types: "['*']"
custodian_types: '[''*'']'
custodian_types_rationale: Universal utility concept
broad_mappings:
- skos:Concept
Tag:
is_a: AnnotationType
class_uri: hc:Tag
description: A tag or keyword associated with a resource.
broad_mappings:
- skos:Concept
Highlight:
is_a: AnnotationType
class_uri: hc:Highlight
description: A highlighted segment of a resource.
broad_mappings:
- skos:Concept
Correction:
is_a: AnnotationType
class_uri: hc:Correction
description: A correction to a resource.
broad_mappings:
- skos:Concept

View file

@ -21,29 +21,44 @@ classes:
annotations:
specificity_score: 0.1
specificity_rationale: Generic utility class/slot created during migration
custodian_types: "['*']"
custodian_types: '[''*'']'
custodian_types_rationale: Universal utility concept
broad_mappings:
- crm:E52_Time-Span
- schema:Duration
FastApproval:
is_a: ApprovalTimeType
description: Fast approval (1-3 days)
annotations:
custodian_types: "['*']"
custodian_types: '[''*'']'
custodian_types_rationale: Universal utility concept
broad_mappings:
- crm:E52_Time-Span
- schema:Duration
StandardApproval:
is_a: ApprovalTimeType
description: Standard approval (1-2 weeks)
annotations:
custodian_types: "['*']"
custodian_types: '[''*'']'
custodian_types_rationale: Universal utility concept
broad_mappings:
- crm:E52_Time-Span
- schema:Duration
ExtendedApproval:
is_a: ApprovalTimeType
description: Extended approval (2-4 weeks)
annotations:
custodian_types: "['*']"
custodian_types: '[''*'']'
custodian_types_rationale: Universal utility concept
broad_mappings:
- crm:E52_Time-Span
- schema:Duration
LongApproval:
is_a: ApprovalTimeType
description: Long approval (1+ months)
annotations:
custodian_types: "['*']"
custodian_types: '[''*'']'
custodian_types_rationale: Universal utility concept
broad_mappings:
- crm:E52_Time-Span
- schema:Duration

View file

@ -52,7 +52,9 @@ classes:
ArchitecturalDrawingCollection:
is_a: ArchitecturalArchiveRecordSetType
class_uri: rico:RecordSetType
description: "A rico:RecordSetType for Architectural plans and drawings.\n\n**RiC-O Alignment**:\nThis class is a specialized rico:RecordSetType following the collection \norganizational principle as defined by rico-rst:Collection.\n"
description: "A rico:RecordSetType for Architectural plans and drawings.\n\n**RiC-O\
\ Alignment**:\nThis class is a specialized rico:RecordSetType following the\
\ collection \norganizational principle as defined by rico-rst:Collection.\n"
exact_mappings:
- rico:RecordSetType
related_mappings:
@ -83,16 +85,22 @@ classes:
record_holder:
equals_string: ArchitecturalArchive
record_holder_note:
equals_string: This RecordSetType is typically held by ArchitecturalArchive custodians. Inverse of rico:isOrWasHolderOf.
equals_string: This RecordSetType is typically held by ArchitecturalArchive
custodians. Inverse of rico:isOrWasHolderOf.
annotations:
specificity_score: 0.1
specificity_rationale: Generic utility class/slot created during migration
custodian_types: "['*']"
custodian_types: '[''*'']'
custodian_types_rationale: Universal utility concept
broad_mappings:
- rico:RecordSetType
- skos:Concept
ArchitectPapersCollection:
is_a: ArchitecturalArchiveRecordSetType
class_uri: rico:RecordSetType
description: "A rico:RecordSetType for Architect personal papers.\n\n**RiC-O Alignment**:\nThis class is a specialized rico:RecordSetType following the collection \norganizational principle as defined by rico-rst:Collection.\n"
description: "A rico:RecordSetType for Architect personal papers.\n\n**RiC-O Alignment**:\n\
This class is a specialized rico:RecordSetType following the collection \norganizational\
\ principle as defined by rico-rst:Collection.\n"
exact_mappings:
- rico:RecordSetType
related_mappings:
@ -123,14 +131,20 @@ classes:
record_holder:
equals_string: ArchitecturalArchive
record_holder_note:
equals_string: This RecordSetType is typically held by ArchitecturalArchive custodians. Inverse of rico:isOrWasHolderOf.
equals_string: This RecordSetType is typically held by ArchitecturalArchive
custodians. Inverse of rico:isOrWasHolderOf.
annotations:
custodian_types: "['*']"
custodian_types: '[''*'']'
custodian_types_rationale: Universal utility concept
broad_mappings:
- rico:RecordSetType
- skos:Concept
BuildingProjectFonds:
is_a: ArchitecturalArchiveRecordSetType
class_uri: rico:RecordSetType
description: "A rico:RecordSetType for Building project documentation.\n\n**RiC-O Alignment**:\nThis class is a specialized rico:RecordSetType following the fonds \norganizational principle as defined by rico-rst:Fonds.\n"
description: "A rico:RecordSetType for Building project documentation.\n\n**RiC-O\
\ Alignment**:\nThis class is a specialized rico:RecordSetType following the\
\ fonds \norganizational principle as defined by rico-rst:Fonds.\n"
exact_mappings:
- rico:RecordSetType
related_mappings:
@ -161,7 +175,11 @@ classes:
record_holder:
equals_string: ArchitecturalArchive
record_holder_note:
equals_string: This RecordSetType is typically held by ArchitecturalArchive custodians. Inverse of rico:isOrWasHolderOf.
equals_string: This RecordSetType is typically held by ArchitecturalArchive
custodians. Inverse of rico:isOrWasHolderOf.
annotations:
custodian_types: "['*']"
custodian_types: '[''*'']'
custodian_types_rationale: Universal utility concept
broad_mappings:
- rico:RecordSetType
- skos:Concept

View file

@ -46,7 +46,9 @@ classes:
InternationalOrgFonds:
is_a: ArchiveOfInternationalOrganizationRecordSetType
class_uri: rico:RecordSetType
description: "A rico:RecordSetType for International organization records.\n\n**RiC-O Alignment**:\nThis class is a specialized rico:RecordSetType following the fonds \norganizational principle as defined by rico-rst:Fonds.\n"
description: "A rico:RecordSetType for International organization records.\n\n\
**RiC-O Alignment**:\nThis class is a specialized rico:RecordSetType following\
\ the fonds \norganizational principle as defined by rico-rst:Fonds.\n"
exact_mappings:
- rico:RecordSetType
related_mappings:
@ -77,16 +79,22 @@ classes:
record_holder:
equals_string: ArchiveOfInternationalOrganization
record_holder_note:
equals_string: This RecordSetType is typically held by ArchiveOfInternationalOrganization custodians. Inverse of rico:isOrWasHolderOf.
equals_string: This RecordSetType is typically held by ArchiveOfInternationalOrganization
custodians. Inverse of rico:isOrWasHolderOf.
annotations:
specificity_score: 0.1
specificity_rationale: Generic utility class/slot created during migration
custodian_types: "['*']"
custodian_types: '[''*'']'
custodian_types_rationale: Universal utility concept
broad_mappings:
- rico:RecordSetType
- skos:Concept
TreatyCollection:
is_a: ArchiveOfInternationalOrganizationRecordSetType
class_uri: rico:RecordSetType
description: "A rico:RecordSetType for International agreements.\n\n**RiC-O Alignment**:\nThis class is a specialized rico:RecordSetType following the collection \norganizational principle as defined by rico-rst:Collection.\n"
description: "A rico:RecordSetType for International agreements.\n\n**RiC-O Alignment**:\n\
This class is a specialized rico:RecordSetType following the collection \norganizational\
\ principle as defined by rico-rst:Collection.\n"
exact_mappings:
- rico:RecordSetType
related_mappings:
@ -117,11 +125,17 @@ classes:
record_holder:
equals_string: ArchiveOfInternationalOrganization
record_holder_note:
equals_string: This RecordSetType is typically held by ArchiveOfInternationalOrganization custodians. Inverse of rico:isOrWasHolderOf.
equals_string: This RecordSetType is typically held by ArchiveOfInternationalOrganization
custodians. Inverse of rico:isOrWasHolderOf.
broad_mappings:
- rico:RecordSetType
- skos:Concept
ConferenceRecordSeries:
is_a: ArchiveOfInternationalOrganizationRecordSetType
class_uri: rico:RecordSetType
description: "A rico:RecordSetType for Conference proceedings.\n\n**RiC-O Alignment**:\nThis class is a specialized rico:RecordSetType following the series \norganizational principle as defined by rico-rst:Series.\n"
description: "A rico:RecordSetType for Conference proceedings.\n\n**RiC-O Alignment**:\n\
This class is a specialized rico:RecordSetType following the series \norganizational\
\ principle as defined by rico-rst:Series.\n"
exact_mappings:
- rico:RecordSetType
related_mappings:
@ -152,4 +166,8 @@ classes:
record_holder:
equals_string: ArchiveOfInternationalOrganization
record_holder_note:
equals_string: This RecordSetType is typically held by ArchiveOfInternationalOrganization custodians. Inverse of rico:isOrWasHolderOf.
equals_string: This RecordSetType is typically held by ArchiveOfInternationalOrganization
custodians. Inverse of rico:isOrWasHolderOf.
broad_mappings:
- rico:RecordSetType
- skos:Concept

View file

@ -148,10 +148,10 @@ classes:
- Access policies range from open (light archives) to restricted (dark archives)
examples:
- value:
type_id: https://nde.nl/ontology/hc/type/archive/Q1188452
glamorcubesfixphdnt_code: ARCHIVE
has_or_had_identifier: https://nde.nl/ontology/hc/type/archive/Q1188452
has_or_had_type_code: ARCHIVE
has_or_had_identifier: Q1188452
type_label:
has_or_had_label:
- National Archive@en
- nationaal archief@nl
- Nationalarchiv@de
@ -171,10 +171,10 @@ classes:
access_policy: mixed
description: National Archive classification with domain-specific metadata
- value:
type_id: https://nde.nl/ontology/hc/type/archive/Q10605195
glamorcubesfixphdnt_code: ARCHIVE
has_or_had_identifier: https://nde.nl/ontology/hc/type/archive/Q10605195
has_or_had_type_code: ARCHIVE
has_or_had_identifier: Q10605195
type_label:
has_or_had_label:
- Business Archive@en
- bedrijfsarchief@nl
has_or_had_description: organizational entity that keeps or archives fonds of a company

View file

@ -16,13 +16,10 @@ imports:
- linkml:types
- ./CollectionType
- ../slots/has_or_had_type
- ../slots/dual_class_link
- ../slots/specificity_annotation
- ../slots/has_or_had_score
- ../slots/has_or_had_scope
- ./Scope
- ./DualClassLink
- ../slots/dual_class_link
- ../slots/has_or_had_type
- ../slots/has_or_had_scope
- ../slots/specificity_annotation
@ -36,7 +33,6 @@ classes:
class_uri: rico:RecordSetType
slots:
- has_or_had_type
- dual_class_link
- specificity_annotation
- has_or_had_score
- has_or_had_scope
@ -46,9 +42,6 @@ classes:
slot_usage:
has_or_had_type:
equals_expression: '["hc:ArchiveOrganizationType"]'
dual_class_link:
range: DualClassLink
inlined: true
annotations:
specificity_score: 0.1
specificity_rationale: Generic utility class/slot created during migration

View file

@ -46,7 +46,9 @@ classes:
BuildingPermitSeries:
is_a: ArchivesForBuildingRecordsRecordSetType
class_uri: rico:RecordSetType
description: "A rico:RecordSetType for Building permit records.\n\n**RiC-O Alignment**:\nThis class is a specialized rico:RecordSetType following the series \norganizational principle as defined by rico-rst:Series.\n"
description: "A rico:RecordSetType for Building permit records.\n\n**RiC-O Alignment**:\n\
This class is a specialized rico:RecordSetType following the series \norganizational\
\ principle as defined by rico-rst:Series.\n"
exact_mappings:
- rico:RecordSetType
related_mappings:
@ -77,16 +79,22 @@ classes:
record_holder:
equals_string: ArchivesForBuildingRecords
record_holder_note:
equals_string: This RecordSetType is typically held by ArchivesForBuildingRecords custodians. Inverse of rico:isOrWasHolderOf.
equals_string: This RecordSetType is typically held by ArchivesForBuildingRecords
custodians. Inverse of rico:isOrWasHolderOf.
annotations:
specificity_score: 0.1
specificity_rationale: Generic utility class/slot created during migration
custodian_types: "['*']"
custodian_types: '[''*'']'
custodian_types_rationale: Universal utility concept
broad_mappings:
- rico:RecordSetType
- skos:Concept
ConstructionDocumentCollection:
is_a: ArchivesForBuildingRecordsRecordSetType
class_uri: rico:RecordSetType
description: "A rico:RecordSetType for Construction documentation.\n\n**RiC-O Alignment**:\nThis class is a specialized rico:RecordSetType following the collection \norganizational principle as defined by rico-rst:Collection.\n"
description: "A rico:RecordSetType for Construction documentation.\n\n**RiC-O\
\ Alignment**:\nThis class is a specialized rico:RecordSetType following the\
\ collection \norganizational principle as defined by rico-rst:Collection.\n"
exact_mappings:
- rico:RecordSetType
related_mappings:
@ -117,4 +125,8 @@ classes:
record_holder:
equals_string: ArchivesForBuildingRecords
record_holder_note:
equals_string: This RecordSetType is typically held by ArchivesForBuildingRecords custodians. Inverse of rico:isOrWasHolderOf.
equals_string: This RecordSetType is typically held by ArchivesForBuildingRecords
custodians. Inverse of rico:isOrWasHolderOf.
broad_mappings:
- rico:RecordSetType
- skos:Concept

View file

@ -46,7 +46,9 @@ classes:
RegionalAdministrationFonds:
is_a: ArchivesRegionalesRecordSetType
class_uri: rico:RecordSetType
description: "A rico:RecordSetType for Regional government records (France).\n\n**RiC-O Alignment**:\nThis class is a specialized rico:RecordSetType following the fonds \norganizational principle as defined by rico-rst:Fonds.\n"
description: "A rico:RecordSetType for Regional government records (France).\n\
\n**RiC-O Alignment**:\nThis class is a specialized rico:RecordSetType following\
\ the fonds \norganizational principle as defined by rico-rst:Fonds.\n"
exact_mappings:
- rico:RecordSetType
related_mappings:
@ -77,9 +79,13 @@ classes:
record_holder:
equals_string: ArchivesRegionales
record_holder_note:
equals_string: This RecordSetType is typically held by ArchivesRegionales custodians. Inverse of rico:isOrWasHolderOf.
equals_string: This RecordSetType is typically held by ArchivesRegionales
custodians. Inverse of rico:isOrWasHolderOf.
annotations:
specificity_score: 0.1
specificity_rationale: Generic utility class/slot created during migration
custodian_types: "['*']"
custodian_types: '[''*'']'
custodian_types_rationale: Universal utility concept
broad_mappings:
- rico:RecordSetType
- skos:Concept

View file

@ -1,6 +1,6 @@
classes:
Arrangement:
class_uri: rico:Arrangement
class_uri: rico:RecordSet
description: The arrangement of a collection.
slots:
- has_or_had_description

View file

@ -21,25 +21,37 @@ classes:
annotations:
specificity_score: 0.1
specificity_rationale: Generic utility class/slot created during migration
custodian_types: "['*']"
custodian_types: '[''*'']'
custodian_types_rationale: Universal utility concept
broad_mappings:
- skos:Concept
SubfondsLevel:
is_a: ArrangementLevel
class_uri: hc:SubfondsLevel
description: Subdivision of a fonds (Subfonds).
broad_mappings:
- skos:Concept
SeriesLevel:
is_a: ArrangementLevel
class_uri: hc:SeriesLevel
description: Series level (Series).
broad_mappings:
- skos:Concept
SubseriesLevel:
is_a: ArrangementLevel
class_uri: hc:SubseriesLevel
description: Subdivision of a series (Subseries).
broad_mappings:
- skos:Concept
FileLevel:
is_a: ArrangementLevel
class_uri: hc:FileLevel
description: File level (File).
broad_mappings:
- skos:Concept
ItemLevel:
is_a: ArrangementLevel
class_uri: hc:ItemLevel
description: Item level (Item).
broad_mappings:
- skos:Concept

View file

@ -21,21 +21,32 @@ classes:
annotations:
specificity_score: 0.1
specificity_rationale: Generic utility class/slot created during migration
custodian_types: "['*']"
custodian_types: '[''*'']'
custodian_types_rationale: Universal utility concept
broad_mappings:
- skos:Concept
ChronologicalArrangement:
is_a: ArrangementType
class_uri: hc:ChronologicalArrangement
description: Arranged chronologically by date.
broad_mappings:
- skos:Concept
NumericalArrangement:
is_a: ArrangementType
class_uri: hc:NumericalArrangement
description: Arranged numerically by index or reference code.
broad_mappings:
- skos:Concept
ProvenanceBasedArrangement:
is_a: ArrangementType
class_uri: hc:ProvenanceBasedArrangement
description: Arranged according to the provenance or original order (respect des fonds).
description: Arranged according to the provenance or original order (respect des
fonds).
broad_mappings:
- skos:Concept
SubjectBasedArrangement:
is_a: ArrangementType
class_uri: hc:SubjectBasedArrangement
description: Arranged by subject matter or topic.
broad_mappings:
- skos:Concept

View file

@ -46,7 +46,9 @@ classes:
ArtistPapersCollection:
is_a: ArtArchiveRecordSetType
class_uri: rico:RecordSetType
description: "A rico:RecordSetType for Artist personal papers and sketches.\n\n**RiC-O Alignment**:\nThis class is a specialized rico:RecordSetType following the collection \norganizational principle as defined by rico-rst:Collection.\n"
description: "A rico:RecordSetType for Artist personal papers and sketches.\n\n\
**RiC-O Alignment**:\nThis class is a specialized rico:RecordSetType following\
\ the collection \norganizational principle as defined by rico-rst:Collection.\n"
exact_mappings:
- rico:RecordSetType
related_mappings:
@ -77,16 +79,22 @@ classes:
record_holder:
equals_string: ArtArchive
record_holder_note:
equals_string: This RecordSetType is typically held by ArtArchive custodians. Inverse of rico:isOrWasHolderOf.
equals_string: This RecordSetType is typically held by ArtArchive custodians.
Inverse of rico:isOrWasHolderOf.
annotations:
specificity_score: 0.1
specificity_rationale: Generic utility class/slot created during migration
custodian_types: "['*']"
custodian_types: '[''*'']'
custodian_types_rationale: Universal utility concept
broad_mappings:
- rico:RecordSetType
- skos:Concept
GalleryRecordsFonds:
is_a: ArtArchiveRecordSetType
class_uri: rico:RecordSetType
description: "A rico:RecordSetType for Art gallery records.\n\n**RiC-O Alignment**:\nThis class is a specialized rico:RecordSetType following the fonds \norganizational principle as defined by rico-rst:Fonds.\n"
description: "A rico:RecordSetType for Art gallery records.\n\n**RiC-O Alignment**:\n\
This class is a specialized rico:RecordSetType following the fonds \norganizational\
\ principle as defined by rico-rst:Fonds.\n"
exact_mappings:
- rico:RecordSetType
related_mappings:
@ -117,11 +125,17 @@ classes:
record_holder:
equals_string: ArtArchive
record_holder_note:
equals_string: This RecordSetType is typically held by ArtArchive custodians. Inverse of rico:isOrWasHolderOf.
equals_string: This RecordSetType is typically held by ArtArchive custodians.
Inverse of rico:isOrWasHolderOf.
broad_mappings:
- rico:RecordSetType
- skos:Concept
ExhibitionDocumentationCollection:
is_a: ArtArchiveRecordSetType
class_uri: rico:RecordSetType
description: "A rico:RecordSetType for Exhibition records.\n\n**RiC-O Alignment**:\nThis class is a specialized rico:RecordSetType following the collection \norganizational principle as defined by rico-rst:Collection.\n"
description: "A rico:RecordSetType for Exhibition records.\n\n**RiC-O Alignment**:\n\
This class is a specialized rico:RecordSetType following the collection \norganizational\
\ principle as defined by rico-rst:Collection.\n"
exact_mappings:
- rico:RecordSetType
related_mappings:
@ -152,4 +166,8 @@ classes:
record_holder:
equals_string: ArtArchive
record_holder_note:
equals_string: This RecordSetType is typically held by ArtArchive custodians. Inverse of rico:isOrWasHolderOf.
equals_string: This RecordSetType is typically held by ArtArchive custodians.
Inverse of rico:isOrWasHolderOf.
broad_mappings:
- rico:RecordSetType
- skos:Concept

View file

@ -1,28 +1,28 @@
id: https://nde.nl/ontology/hc/class/AssessmentCategoryTypes
name: AssessmentCategoryTypes
title: AssessmentCategoryTypes
description: >-
Concrete assessment category types.
description: Concrete assessment category types.
prefixes:
linkml: https://w3id.org/linkml/
hc: https://nde.nl/ontology/hc/
default_prefix: hc
imports:
- linkml:types
- ./AssessmentCategoryType
- linkml:types
- ./AssessmentCategoryType
classes:
ConditionAssessmentCategory:
is_a: AssessmentCategoryType
description: Category for storage condition assessment (e.g. Good, Fair, Poor).
annotations:
custodian_types: ["*"]
custodian_types:
- '*'
broad_mappings:
- skos:Concept
RiskAssessmentCategory:
is_a: AssessmentCategoryType
description: Category for risk assessment.
annotations:
custodian_types: ["*"]
custodian_types:
- '*'
broad_mappings:
- skos:Concept

View file

@ -127,15 +127,32 @@ classes:
related_mappings:
- oa:FragmentSelector
slots:
- start_seconds
- has_or_had_time_interval
- start_time
- segment_index
- segment_text
- is_or_was_generated_by
- has_or_had_type
- specificity_annotation
- has_or_had_score
attributes:
start_seconds:
range: float
required: true
minimum_value: 0.0
description: Start time in seconds for this audio event segment. Defined as attribute.
examples:
- value: 0.0
description: Audio event starts at beginning
- value: 45.5
description: Audio event starts at 45.5 seconds
start_time:
range: string
required: false
pattern: ^PT(\d+H)?(\d+M)?(\d+(\.\d+)?S)?$
description: Start time in ISO 8601 duration format. Defined as attribute.
examples:
- value: PT0M30S
description: 30 seconds from start
slot_usage:
has_or_had_type:
range: AudioEventTypeEnum
@ -146,16 +163,6 @@ classes:
description: Speech detected in this segment
- value: MUSIC
description: Music detected in this segment
start_seconds:
range: float
required: true
minimum_value: 0.0
description: Start time in seconds for this audio event segment.
examples:
- value: 0.0
description: Audio event starts at beginning
- value: 45.5
description: Audio event starts at 45.5 seconds
has_or_had_time_interval:
range: TimeInterval
required: true
@ -165,14 +172,6 @@ classes:
- value:
duration_value: PT0M15S
description: 15 second duration
start_time:
range: string
required: false
pattern: ^PT(\d+H)?(\d+M)?(\d+(\.\d+)?S)?$
description: Start time in ISO 8601 duration format.
examples:
- value: PT0M30S
description: 30 seconds from start
segment_text:
range: string
required: false

View file

@ -21,10 +21,8 @@ imports:
- ../slots/has_or_had_scope
- ./Scope
- ../slots/has_or_had_type
- ../slots/dual_class_link
- ../slots/specificity_annotation
- ../slots/has_or_had_score
- ./DualClassLink
- ./SpecificityAnnotation
- ./TemplateSpecificityScore
- ./TemplateSpecificityType

View file

@ -46,7 +46,9 @@ classes:
AudiovisualRecordingCollection:
is_a: AudiovisualArchiveRecordSetType
class_uri: rico:RecordSetType
description: "A rico:RecordSetType for AV recordings.\n\n**RiC-O Alignment**:\nThis class is a specialized rico:RecordSetType following the collection \norganizational principle as defined by rico-rst:Collection.\n"
description: "A rico:RecordSetType for AV recordings.\n\n**RiC-O Alignment**:\n\
This class is a specialized rico:RecordSetType following the collection \norganizational\
\ principle as defined by rico-rst:Collection.\n"
exact_mappings:
- rico:RecordSetType
related_mappings:
@ -77,16 +79,22 @@ classes:
record_holder:
equals_string: AudiovisualArchive
record_holder_note:
equals_string: This RecordSetType is typically held by AudiovisualArchive custodians. Inverse of rico:isOrWasHolderOf.
equals_string: This RecordSetType is typically held by AudiovisualArchive
custodians. Inverse of rico:isOrWasHolderOf.
annotations:
specificity_score: 0.1
specificity_rationale: Generic utility class/slot created during migration
custodian_types: "['*']"
custodian_types: '[''*'']'
custodian_types_rationale: Universal utility concept
broad_mappings:
- rico:RecordSetType
- skos:Concept
AudiovisualProductionFonds:
is_a: AudiovisualArchiveRecordSetType
class_uri: rico:RecordSetType
description: "A rico:RecordSetType for Media production records.\n\n**RiC-O Alignment**:\nThis class is a specialized rico:RecordSetType following the fonds \norganizational principle as defined by rico-rst:Fonds.\n"
description: "A rico:RecordSetType for Media production records.\n\n**RiC-O Alignment**:\n\
This class is a specialized rico:RecordSetType following the fonds \norganizational\
\ principle as defined by rico-rst:Fonds.\n"
exact_mappings:
- rico:RecordSetType
related_mappings:
@ -117,4 +125,8 @@ classes:
record_holder:
equals_string: AudiovisualArchive
record_holder_note:
equals_string: This RecordSetType is typically held by AudiovisualArchive custodians. Inverse of rico:isOrWasHolderOf.
equals_string: This RecordSetType is typically held by AudiovisualArchive
custodians. Inverse of rico:isOrWasHolderOf.
broad_mappings:
- rico:RecordSetType
- skos:Concept

View file

@ -1,34 +1,36 @@
id: https://nde.nl/ontology/hc/class/AuditStatusTypes
name: AuditStatusTypes
title: AuditStatusTypes
description: >-
Concrete audit status types.
description: Concrete audit status types.
prefixes:
linkml: https://w3id.org/linkml/
hc: https://nde.nl/ontology/hc/
default_prefix: hc
imports:
- linkml:types
- ./AuditStatusType
- linkml:types
- ./AuditStatusType
classes:
AuditedStatus:
is_a: AuditStatusType
description: Financial statement has been audited.
annotations:
custodian_types: ["*"]
custodian_types:
- '*'
broad_mappings:
- skos:Concept
UnauditedStatus:
is_a: AuditStatusType
description: Financial statement has not been audited.
annotations:
custodian_types: ["*"]
custodian_types:
- '*'
broad_mappings:
- skos:Concept
ReviewStatus:
is_a: AuditStatusType
description: Financial statement has been reviewed but not fully audited.
annotations:
custodian_types: ["*"]
custodian_types:
- '*'
broad_mappings:
- skos:Concept

View file

@ -26,7 +26,7 @@ classes:
annotations:
short_code: DAILY_AUTOMATED
specificity_score: '0.65'
custodian_types: "['*']"
custodian_types: '[''*'']'
custodian_types_rationale: Universal utility concept
examples:
- value:
@ -35,6 +35,8 @@ classes:
- Daily automated backup@en
- Dagelijkse geautomatiseerde backup@nl
description: Standard daily backup configuration
broad_mappings:
- skos:Concept
WeeklyFullDailyIncremental:
is_a: BackupType
class_uri: hc:WeeklyFullDailyIncremental
@ -58,6 +60,8 @@ classes:
- Weekly full, daily incremental@en
- Wekelijks volledig, dagelijks incrementeel@nl
description: Enterprise backup strategy
broad_mappings:
- skos:Concept
ContinuousReplication:
is_a: BackupType
class_uri: hc:ContinuousReplication
@ -81,6 +85,8 @@ classes:
- Continuous replication@en
- Continue replicatie@nl
description: Real-time data protection
broad_mappings:
- skos:Concept
SecondarySiteReplication:
is_a: BackupType
class_uri: hc:SecondarySiteReplication
@ -102,6 +108,8 @@ classes:
- Secondary site replication@en
- Replicatie naar secundaire locatie@nl
description: Geographic redundancy
broad_mappings:
- skos:Concept
CloudBackupAzure:
is_a: BackupType
class_uri: hc:CloudBackupAzure
@ -125,6 +133,8 @@ classes:
- Cloud backup (Azure)@en
- Cloud backup (Azure)@nl
description: Azure cloud backup
broad_mappings:
- skos:Concept
CloudBackupAWS:
is_a: BackupType
class_uri: hc:CloudBackupAWS
@ -146,6 +156,8 @@ classes:
- Cloud backup (AWS)@en
- Cloud backup (AWS)@nl
description: AWS cloud backup
broad_mappings:
- skos:Concept
OnPremiseBackup:
is_a: BackupType
class_uri: hc:OnPremiseBackup
@ -167,6 +179,8 @@ classes:
- On-premise backup@en
- Lokale backup@nl
description: Local-only backup
broad_mappings:
- skos:Concept
NotBackedUp:
is_a: BackupType
class_uri: hc:NotBackedUp
@ -191,6 +205,8 @@ classes:
- NOT BACKED UP@en
- NIET GEBACK-UPT@nl
description: Critical - no backup in place
broad_mappings:
- skos:Concept
PaperOnlyNoDigital:
is_a: BackupType
class_uri: hc:PaperOnlyNoDigital
@ -214,6 +230,8 @@ classes:
- Paper only - no digital backup@en
- Alleen papier - geen digitale backup@nl
description: Non-digitized physical records
broad_mappings:
- skos:Concept
TapeBackup:
is_a: BackupType
class_uri: hc:TapeBackup
@ -235,6 +253,8 @@ classes:
- Tape backup@en
- Tape backup@nl
description: Magnetic tape storage
broad_mappings:
- skos:Concept
DiskBasedBackup:
is_a: BackupType
class_uri: hc:DiskBasedBackup
@ -256,6 +276,8 @@ classes:
- Disk-based backup@en
- Schijf-gebaseerde backup@nl
description: Disk array storage
broad_mappings:
- skos:Concept
HybridBackup:
is_a: BackupType
class_uri: hc:HybridBackup
@ -277,3 +299,5 @@ classes:
- Hybrid backup@en
- Hybride backup@nl
description: Multi-method backup strategy
broad_mappings:
- skos:Concept

View file

@ -16,13 +16,10 @@ imports:
- linkml:types
- ./CollectionType
- ../slots/has_or_had_type
- ../slots/dual_class_link
- ../slots/specificity_annotation
- ../slots/has_or_had_score
- ../slots/has_or_had_scope
- ./Scope
- ./DualClassLink
- ../slots/dual_class_link
- ../slots/has_or_had_type
- ../slots/has_or_had_scope
- ../slots/specificity_annotation
@ -36,7 +33,6 @@ classes:
class_uri: rico:RecordSetType
slots:
- has_or_had_type
- dual_class_link
- specificity_annotation
- has_or_had_score
- has_or_had_scope
@ -46,9 +42,6 @@ classes:
slot_usage:
has_or_had_type:
equals_expression: '["hc:ArchiveOrganizationType"]'
dual_class_link:
range: DualClassLink
inlined: true
annotations:
specificity_score: 0.1
specificity_rationale: Generic utility class/slot created during migration

View file

@ -46,7 +46,9 @@ classes:
BankingRecordsFonds:
is_a: BankArchiveRecordSetType
class_uri: rico:RecordSetType
description: "A rico:RecordSetType for Banking institution records.\n\n**RiC-O Alignment**:\nThis class is a specialized rico:RecordSetType following the fonds \norganizational principle as defined by rico-rst:Fonds.\n"
description: "A rico:RecordSetType for Banking institution records.\n\n**RiC-O\
\ Alignment**:\nThis class is a specialized rico:RecordSetType following the\
\ fonds \norganizational principle as defined by rico-rst:Fonds.\n"
exact_mappings:
- rico:RecordSetType
related_mappings:
@ -77,16 +79,22 @@ classes:
record_holder:
equals_string: BankArchive
record_holder_note:
equals_string: This RecordSetType is typically held by BankArchive custodians. Inverse of rico:isOrWasHolderOf.
equals_string: This RecordSetType is typically held by BankArchive custodians.
Inverse of rico:isOrWasHolderOf.
annotations:
specificity_score: 0.1
specificity_rationale: Generic utility class/slot created during migration
custodian_types: "['*']"
custodian_types: '[''*'']'
custodian_types_rationale: Universal utility concept
broad_mappings:
- rico:RecordSetType
- skos:Concept
FinancialTransactionSeries:
is_a: BankArchiveRecordSetType
class_uri: rico:RecordSetType
description: "A rico:RecordSetType for Financial records.\n\n**RiC-O Alignment**:\nThis class is a specialized rico:RecordSetType following the series \norganizational principle as defined by rico-rst:Series.\n"
description: "A rico:RecordSetType for Financial records.\n\n**RiC-O Alignment**:\n\
This class is a specialized rico:RecordSetType following the series \norganizational\
\ principle as defined by rico-rst:Series.\n"
exact_mappings:
- rico:RecordSetType
related_mappings:
@ -117,11 +125,17 @@ classes:
record_holder:
equals_string: BankArchive
record_holder_note:
equals_string: This RecordSetType is typically held by BankArchive custodians. Inverse of rico:isOrWasHolderOf.
equals_string: This RecordSetType is typically held by BankArchive custodians.
Inverse of rico:isOrWasHolderOf.
broad_mappings:
- rico:RecordSetType
- skos:Concept
CustomerAccountSeries:
is_a: BankArchiveRecordSetType
class_uri: rico:RecordSetType
description: "A rico:RecordSetType for Account records (historical).\n\n**RiC-O Alignment**:\nThis class is a specialized rico:RecordSetType following the series \norganizational principle as defined by rico-rst:Series.\n"
description: "A rico:RecordSetType for Account records (historical).\n\n**RiC-O\
\ Alignment**:\nThis class is a specialized rico:RecordSetType following the\
\ series \norganizational principle as defined by rico-rst:Series.\n"
exact_mappings:
- rico:RecordSetType
related_mappings:
@ -152,4 +166,8 @@ classes:
record_holder:
equals_string: BankArchive
record_holder_note:
equals_string: This RecordSetType is typically held by BankArchive custodians. Inverse of rico:isOrWasHolderOf.
equals_string: This RecordSetType is typically held by BankArchive custodians.
Inverse of rico:isOrWasHolderOf.
broad_mappings:
- rico:RecordSetType
- skos:Concept

View file

@ -33,7 +33,7 @@ classes:
annotations:
short_code: FULL_LEATHER
specificity_score: '0.75'
custodian_types: "['*']"
custodian_types: '[''*'']'
custodian_types_rationale: Universal utility concept
examples:
- value:
@ -42,6 +42,8 @@ classes:
- Full leather@en
- Volledige leren band@nl
description: Traditional fine binding
broad_mappings:
- skos:Concept
HalfLeatherBinding:
is_a: BindingType
class_uri: hc:HalfLeatherBinding
@ -65,6 +67,8 @@ classes:
- Half leather@en
- Halfleren band@nl
description: Common 19th century style
broad_mappings:
- skos:Concept
QuarterLeatherBinding:
is_a: BindingType
class_uri: hc:QuarterLeatherBinding
@ -86,6 +90,8 @@ classes:
- Quarter leather@en
- Kwartleren band@nl
description: Economical leather binding
broad_mappings:
- skos:Concept
ClothBinding:
is_a: BindingType
class_uri: hc:ClothBinding
@ -112,6 +118,8 @@ classes:
- Cloth@en
- Linnen band@nl
description: Standard cloth binding
broad_mappings:
- skos:Concept
PaperBoardsBinding:
is_a: BindingType
class_uri: hc:PaperBoardsBinding
@ -140,6 +148,8 @@ classes:
- Paper boards@en
- Papieren borden@nl
description: Paper-covered boards
broad_mappings:
- skos:Concept
LimpVellumBinding:
is_a: BindingType
class_uri: hc:LimpVellumBinding
@ -168,6 +178,8 @@ classes:
- Limp vellum@en
- Slappe perkamenten band@nl
description: Historical archival binding
broad_mappings:
- skos:Concept
CaseBinding:
is_a: BindingType
class_uri: hc:CaseBinding
@ -196,6 +208,8 @@ classes:
- Case binding@en
- Hardcover@nl
description: Modern hardcover
broad_mappings:
- skos:Concept
PamphletBinding:
is_a: BindingType
class_uri: hc:PamphletBinding
@ -222,3 +236,5 @@ classes:
- Pamphlet binding@en
- Brochureband@nl
description: Simple stitched pamphlet
broad_mappings:
- skos:Concept

View file

@ -25,7 +25,7 @@ classes:
annotations:
short_code: REGIONAL_OFFICE
specificity_score: '0.50'
custodian_types: "['*']"
custodian_types: '[''*'']'
custodian_types_rationale: Universal utility concept
examples:
- value:
@ -34,6 +34,8 @@ classes:
- Regional Office@en
- Regionaal kantoor@nl
description: Provincial heritage service branch
broad_mappings:
- skos:Concept
BranchLibraryUnit:
is_a: BranchType
class_uri: hc:BranchLibraryUnit
@ -55,6 +57,8 @@ classes:
- Branch Library@en
- Filiaalbibliotheek@nl
description: Neighborhood library branch
broad_mappings:
- skos:Concept
SatelliteGalleryUnit:
is_a: BranchType
class_uri: hc:SatelliteGalleryUnit
@ -76,6 +80,8 @@ classes:
- Satellite Gallery@en
- Satellietgalerij@nl
description: Off-site exhibition space
broad_mappings:
- skos:Concept
ConservationLabUnit:
is_a: BranchType
class_uri: hc:ConservationLabUnit
@ -97,6 +103,8 @@ classes:
- Conservation Laboratory@en
- Restauratieatelier@nl
description: Collection conservation facility
broad_mappings:
- skos:Concept
DigitizationCenterUnit:
is_a: BranchType
class_uri: hc:DigitizationCenterUnit
@ -118,6 +126,8 @@ classes:
- Digitization Center@en
- Digitaliseringscentrum@nl
description: Collection digitization facility
broad_mappings:
- skos:Concept
ResearchCenterUnit:
is_a: BranchType
class_uri: hc:ResearchCenterUnit
@ -139,6 +149,8 @@ classes:
- Research Center@en
- Onderzoekscentrum@nl
description: Academic research unit
broad_mappings:
- skos:Concept
EducationCenterUnit:
is_a: BranchType
class_uri: hc:EducationCenterUnit
@ -160,6 +172,8 @@ classes:
- Education Center@en
- Educatiecentrum@nl
description: Public education facility
broad_mappings:
- skos:Concept
AdministrativeOfficeUnit:
is_a: BranchType
class_uri: hc:AdministrativeOfficeUnit
@ -181,6 +195,8 @@ classes:
- Administrative Office@en
- Administratiekantoor@nl
description: Back-office administration
broad_mappings:
- skos:Concept
StorageManagementUnit:
is_a: BranchType
class_uri: hc:StorageManagementUnit
@ -202,6 +218,8 @@ classes:
- Storage Management@en
- Depotbeheer@nl
description: Off-site storage operations
broad_mappings:
- skos:Concept
ExhibitionSpaceUnit:
is_a: BranchType
class_uri: hc:ExhibitionSpaceUnit
@ -223,6 +241,8 @@ classes:
- Exhibition Space@en
- Tentoonstellingsruimte@nl
description: Secondary exhibition venue
broad_mappings:
- skos:Concept
ReadingRoomUnit:
is_a: BranchType
class_uri: hc:ReadingRoomUnit
@ -244,3 +264,5 @@ classes:
- Reading Room@en
- Studiezaal@nl
description: Research reading room
broad_mappings:
- skos:Concept

View file

@ -24,7 +24,7 @@ classes:
annotations:
short_code: OPERATING
specificity_score: '0.40'
custodian_types: "['*']"
custodian_types: '[''*'']'
custodian_types_rationale: Universal utility concept
examples:
- value:
@ -33,6 +33,8 @@ classes:
- Operating Budget@en
- Exploitatiebegroting@nl
description: Annual operating budget
broad_mappings:
- skos:Concept
CapitalBudget:
is_a: BudgetType
class_uri: hc:CapitalBudget
@ -56,6 +58,8 @@ classes:
- Capital Budget@en
- Investeringsbegroting@nl
description: Multi-year capital investment budget
broad_mappings:
- skos:Concept
ProjectBudget:
is_a: BudgetType
class_uri: hc:ProjectBudget
@ -77,6 +81,8 @@ classes:
- Project Budget@en
- Projectbegroting@nl
description: Grant-funded digitization project
broad_mappings:
- skos:Concept
MultiYearBudget:
is_a: BudgetType
class_uri: hc:MultiYearBudget
@ -98,6 +104,8 @@ classes:
- Multi-Year Budget@en
- Meerjarenbegroting@nl
description: Five-year strategic budget
broad_mappings:
- skos:Concept
ConsolidatedBudget:
is_a: BudgetType
class_uri: hc:ConsolidatedBudget
@ -119,6 +127,8 @@ classes:
- Consolidated Budget@en
- Geconsolideerde begroting@nl
description: Full institutional budget
broad_mappings:
- skos:Concept
DepartmentalBudget:
is_a: BudgetType
class_uri: hc:DepartmentalBudget
@ -140,6 +150,8 @@ classes:
- Departmental Budget@en
- Afdelingsbegroting@nl
description: Collection management department budget
broad_mappings:
- skos:Concept
AcquisitionBudget:
is_a: BudgetType
class_uri: hc:AcquisitionBudget
@ -161,6 +173,8 @@ classes:
- Acquisition Budget@en
- Aankoopbudget@nl
description: Annual collection acquisition budget
broad_mappings:
- skos:Concept
ConservationBudget:
is_a: BudgetType
class_uri: hc:ConservationBudget
@ -182,6 +196,8 @@ classes:
- Conservation Budget@en
- Conserveringsbudget@nl
description: Annual preservation budget
broad_mappings:
- skos:Concept
ExhibitionBudget:
is_a: BudgetType
class_uri: hc:ExhibitionBudget
@ -203,6 +219,8 @@ classes:
- Exhibition Budget@en
- Tentoonstellingsbudget@nl
description: Annual exhibition program budget
broad_mappings:
- skos:Concept
DigitizationBudget:
is_a: BudgetType
class_uri: hc:DigitizationBudget
@ -224,3 +242,5 @@ classes:
- Digitization Budget@en
- Digitaliseringsbudget@nl
description: Multi-year digitization initiative
broad_mappings:
- skos:Concept

View file

@ -52,14 +52,17 @@ classes:
primary_domain: museums
specificity_score: 0.1
specificity_rationale: Generic utility class/slot created during migration
custodian_types: "['*']"
custodian_types: '[''*'']'
custodian_types_rationale: Universal utility concept
examples:
- value:
has_or_had_label: MUSEUM_CMS
has_or_had_description:
description_text: Collection management systems designed for museum collections, including object cataloging, provenance tracking, and exhibition management.
description_text: Collection management systems designed for museum collections,
including object cataloging, provenance tracking, and exhibition management.
description: Museum CMS type
broad_mappings:
- skos:Concept
ArchiveCMS:
is_a: CMSType
class_uri: hc:ArchiveCMS
@ -99,8 +102,11 @@ classes:
- value:
has_or_had_label: ARCHIVE_CMS
has_or_had_description:
description_text: Archival description systems supporting hierarchical arrangement, ISAD(G) compliance, and EAD export.
description_text: Archival description systems supporting hierarchical arrangement,
ISAD(G) compliance, and EAD export.
description: Archive CMS type
broad_mappings:
- skos:Concept
LibraryCMS:
is_a: CMSType
class_uri: hc:LibraryCMS
@ -144,8 +150,11 @@ classes:
- value:
has_or_had_label: LIBRARY_CMS
has_or_had_description:
description_text: Integrated library systems supporting MARC21 cataloging, circulation, acquisitions, and OPAC functionality.
description_text: Integrated library systems supporting MARC21 cataloging,
circulation, acquisitions, and OPAC functionality.
description: Library CMS type
broad_mappings:
- skos:Concept
DigitalAssetManagement:
is_a: CMSType
class_uri: hc:DigitalAssetManagement
@ -187,8 +196,11 @@ classes:
- value:
has_or_had_label: DAM
has_or_had_description:
description_text: Digital asset management systems for organizing, storing, and distributing media files including images, video, and audio.
description_text: Digital asset management systems for organizing, storing,
and distributing media files including images, video, and audio.
description: DAM type
broad_mappings:
- skos:Concept
DigitalRepository:
is_a: CMSType
class_uri: hc:DigitalRepository
@ -230,8 +242,11 @@ classes:
- value:
has_or_had_label: REPOSITORY
has_or_had_description:
description_text: Digital repository systems for long-term preservation, OAI-PMH harvesting, and OAIS-compliant storage.
description_text: Digital repository systems for long-term preservation,
OAI-PMH harvesting, and OAIS-compliant storage.
description: Digital repository type
broad_mappings:
- skos:Concept
MixedCMS:
is_a: CMSType
class_uri: hc:MixedCMS
@ -267,8 +282,11 @@ classes:
- value:
has_or_had_label: MIXED
has_or_had_description:
description_text: Multi-domain collection management systems that can serve museums, archives, and/or libraries with flexible data models.
description_text: Multi-domain collection management systems that can serve
museums, archives, and/or libraries with flexible data models.
description: Mixed CMS type
broad_mappings:
- skos:Concept
CustomCMS:
is_a: CMSType
class_uri: hc:CustomCMS
@ -304,5 +322,8 @@ classes:
- value:
has_or_had_label: CUSTOM
has_or_had_description:
description_text: Institution-specific or custom-built collection management systems, often legacy or heavily customized.
description_text: Institution-specific or custom-built collection management
systems, often legacy or heavily customized.
description: Custom CMS type
broad_mappings:
- skos:Concept

View file

@ -46,7 +46,9 @@ classes:
CantonalGovernmentFonds:
is_a: CantonalArchiveRecordSetType
class_uri: rico:RecordSetType
description: "A rico:RecordSetType for Cantonal administrative records (Switzerland).\n\n**RiC-O Alignment**:\nThis class is a specialized rico:RecordSetType following the fonds \norganizational principle as defined by rico-rst:Fonds.\n"
description: "A rico:RecordSetType for Cantonal administrative records (Switzerland).\n\
\n**RiC-O Alignment**:\nThis class is a specialized rico:RecordSetType following\
\ the fonds \norganizational principle as defined by rico-rst:Fonds.\n"
exact_mappings:
- rico:RecordSetType
related_mappings:
@ -77,16 +79,22 @@ classes:
record_holder:
equals_string: CantonalArchive
record_holder_note:
equals_string: This RecordSetType is typically held by CantonalArchive custodians. Inverse of rico:isOrWasHolderOf.
equals_string: This RecordSetType is typically held by CantonalArchive custodians.
Inverse of rico:isOrWasHolderOf.
annotations:
specificity_score: 0.1
specificity_rationale: Generic utility class/slot created during migration
custodian_types: "['*']"
custodian_types: '[''*'']'
custodian_types_rationale: Universal utility concept
broad_mappings:
- rico:RecordSetType
- skos:Concept
CantonalLegislationCollection:
is_a: CantonalArchiveRecordSetType
class_uri: rico:RecordSetType
description: "A rico:RecordSetType for Cantonal laws and regulations.\n\n**RiC-O Alignment**:\nThis class is a specialized rico:RecordSetType following the collection \norganizational principle as defined by rico-rst:Collection.\n"
description: "A rico:RecordSetType for Cantonal laws and regulations.\n\n**RiC-O\
\ Alignment**:\nThis class is a specialized rico:RecordSetType following the\
\ collection \norganizational principle as defined by rico-rst:Collection.\n"
exact_mappings:
- rico:RecordSetType
related_mappings:
@ -117,4 +125,8 @@ classes:
record_holder:
equals_string: CantonalArchive
record_holder_note:
equals_string: This RecordSetType is typically held by CantonalArchive custodians. Inverse of rico:isOrWasHolderOf.
equals_string: This RecordSetType is typically held by CantonalArchive custodians.
Inverse of rico:isOrWasHolderOf.
broad_mappings:
- rico:RecordSetType
- skos:Concept

View file

@ -23,10 +23,13 @@ classes:
typical_units: "m\xB3, ft\xB3, liters"
specificity_score: 0.1
specificity_rationale: Generic utility class/slot created during migration
custodian_types: "['*']"
custodian_types: '[''*'']'
custodian_types_rationale: Universal utility concept
comments:
- Replaces CapacityTypeEnum.VOLUME
broad_mappings:
- crm:E54_Dimension
- schema:QuantitativeValue
ShelfLengthCapacity:
is_a: CapacityType
class_uri: hc:ShelfLengthCapacity
@ -41,6 +44,9 @@ classes:
comments:
- Replaces CapacityTypeEnum.SHELF_LENGTH
- Primary metric for archival storage
broad_mappings:
- crm:E54_Dimension
- schema:QuantitativeValue
FloorAreaCapacity:
is_a: CapacityType
class_uri: hc:FloorAreaCapacity
@ -54,6 +60,9 @@ classes:
typical_units: "m\xB2, ft\xB2"
comments:
- Replaces CapacityTypeEnum.FLOOR_AREA
broad_mappings:
- crm:E54_Dimension
- schema:QuantitativeValue
ItemCountCapacity:
is_a: CapacityType
class_uri: hc:ItemCountCapacity
@ -67,6 +76,9 @@ classes:
typical_units: boxes, folders, objects, items
comments:
- Replaces CapacityTypeEnum.ITEM_COUNT
broad_mappings:
- crm:E54_Dimension
- schema:QuantitativeValue
WeightCapacity:
is_a: CapacityType
class_uri: hc:WeightCapacity
@ -80,6 +92,9 @@ classes:
typical_units: kg, tons, lbs
comments:
- Replaces CapacityTypeEnum.WEIGHT
broad_mappings:
- crm:E54_Dimension
- schema:QuantitativeValue
SeatingCapacity:
is_a: CapacityType
class_uri: hc:SeatingCapacity
@ -93,6 +108,9 @@ classes:
typical_units: seats, persons
comments:
- Replaces CapacityTypeEnum.SEATING
broad_mappings:
- crm:E54_Dimension
- schema:QuantitativeValue
DisplayAreaCapacity:
is_a: CapacityType
class_uri: hc:DisplayAreaCapacity
@ -106,6 +124,9 @@ classes:
typical_units: "m\xB2, ft\xB2"
comments:
- Replaces CapacityTypeEnum.DISPLAY_AREA
broad_mappings:
- crm:E54_Dimension
- schema:QuantitativeValue
RackSlotCapacity:
is_a: CapacityType
class_uri: hc:RackSlotCapacity
@ -119,6 +140,9 @@ classes:
typical_units: slots, positions
comments:
- Replaces CapacityTypeEnum.RACK_SLOTS
broad_mappings:
- crm:E54_Dimension
- schema:QuantitativeValue
DrawerUnitCapacity:
is_a: CapacityType
class_uri: hc:DrawerUnitCapacity
@ -132,6 +156,9 @@ classes:
typical_units: drawers, units
comments:
- Replaces CapacityTypeEnum.DRAWER_UNITS
broad_mappings:
- crm:E54_Dimension
- schema:QuantitativeValue
CabinetUnitCapacity:
is_a: CapacityType
class_uri: hc:CabinetUnitCapacity
@ -145,3 +172,6 @@ classes:
typical_units: cabinets, units
comments:
- Replaces CapacityTypeEnum.CABINET_UNITS
broad_mappings:
- crm:E54_Dimension
- schema:QuantitativeValue

View file

@ -36,7 +36,7 @@ classes:
- bf:Carrier
- rda:Carrier
close_mappings:
- crm:E84_Information_Carrier
- crm:E22_Human-Made_Object
slots:
- has_or_had_type
- has_or_had_description

View file

@ -23,7 +23,8 @@ classes:
CodexCarrier:
is_a: CarrierType
class_uri: hc:CodexCarrier
description: A book consisting of stacked, bound leaves/pages. The dominant form for Western manuscripts and printed books since antiquity.
description: A book consisting of stacked, bound leaves/pages. The dominant form
for Western manuscripts and printed books since antiquity.
slot_usage:
has_or_had_code:
equals_string: CODEX
@ -32,8 +33,11 @@ classes:
annotations:
specificity_score: 0.1
specificity_rationale: Generic utility class/slot created during migration
custodian_types: "['*']"
custodian_types: '[''*'']'
custodian_types_rationale: Universal utility concept
broad_mappings:
- schema:Product
- crm:E22_Human-Made_Object
BoundVolumeCarrier:
is_a: CarrierType
class_uri: hc:BoundVolumeCarrier
@ -44,8 +48,11 @@ classes:
has_or_had_label:
equals_string: Bound Volume
annotations:
custodian_types: "['*']"
custodian_types: '[''*'']'
custodian_types_rationale: Universal utility concept
broad_mappings:
- schema:Product
- crm:E22_Human-Made_Object
PamphletCarrier:
is_a: CarrierType
class_uri: hc:PamphletCarrier
@ -56,8 +63,11 @@ classes:
has_or_had_label:
equals_string: Pamphlet
annotations:
custodian_types: "['*']"
custodian_types: '[''*'']'
custodian_types_rationale: Universal utility concept
broad_mappings:
- schema:Product
- crm:E22_Human-Made_Object
NotebookCarrier:
is_a: CarrierType
class_uri: hc:NotebookCarrier
@ -68,8 +78,11 @@ classes:
has_or_had_label:
equals_string: Notebook
annotations:
custodian_types: "['*']"
custodian_types: '[''*'']'
custodian_types_rationale: Universal utility concept
broad_mappings:
- schema:Product
- crm:E22_Human-Made_Object
SheetCarrier:
is_a: CarrierType
class_uri: hc:SheetCarrier
@ -80,8 +93,11 @@ classes:
has_or_had_label:
equals_string: Sheet
annotations:
custodian_types: "['*']"
custodian_types: '[''*'']'
custodian_types_rationale: Universal utility concept
broad_mappings:
- schema:Product
- crm:E22_Human-Made_Object
BroadsideCarrier:
is_a: CarrierType
class_uri: hc:BroadsideCarrier
@ -92,8 +108,11 @@ classes:
has_or_had_label:
equals_string: Broadside
annotations:
custodian_types: "['*']"
custodian_types: '[''*'']'
custodian_types_rationale: Universal utility concept
broad_mappings:
- schema:Product
- crm:E22_Human-Made_Object
MapSheetCarrier:
is_a: CarrierType
class_uri: hc:MapSheetCarrier
@ -104,8 +123,11 @@ classes:
has_or_had_label:
equals_string: Map Sheet
annotations:
custodian_types: "['*']"
custodian_types: '[''*'']'
custodian_types_rationale: Universal utility concept
broad_mappings:
- schema:Product
- crm:E22_Human-Made_Object
PhotographCarrier:
is_a: CarrierType
class_uri: hc:PhotographCarrier
@ -116,8 +138,11 @@ classes:
has_or_had_label:
equals_string: Photograph
annotations:
custodian_types: "['*']"
custodian_types: '[''*'']'
custodian_types_rationale: Universal utility concept
broad_mappings:
- schema:Product
- crm:E22_Human-Made_Object
ParchmentLeafCarrier:
is_a: CarrierType
class_uri: hc:ParchmentLeafCarrier
@ -128,8 +153,11 @@ classes:
has_or_had_label:
equals_string: Parchment Leaf
annotations:
custodian_types: "['*']"
custodian_types: '[''*'']'
custodian_types_rationale: Universal utility concept
broad_mappings:
- schema:Product
- crm:E22_Human-Made_Object
ScrollCarrier:
is_a: CarrierType
class_uri: hc:ScrollCarrier
@ -140,8 +168,11 @@ classes:
has_or_had_label:
equals_string: Scroll
annotations:
custodian_types: "['*']"
custodian_types: '[''*'']'
custodian_types_rationale: Universal utility concept
broad_mappings:
- schema:Product
- crm:E22_Human-Made_Object
PapyrusScrollCarrier:
is_a: CarrierType
class_uri: hc:PapyrusScrollCarrier
@ -152,8 +183,11 @@ classes:
has_or_had_label:
equals_string: Papyrus Scroll
annotations:
custodian_types: "['*']"
custodian_types: '[''*'']'
custodian_types_rationale: Universal utility concept
broad_mappings:
- schema:Product
- crm:E22_Human-Made_Object
ClayTabletCarrier:
is_a: CarrierType
class_uri: hc:ClayTabletCarrier
@ -164,8 +198,11 @@ classes:
has_or_had_label:
equals_string: Clay Tablet
annotations:
custodian_types: "['*']"
custodian_types: '[''*'']'
custodian_types_rationale: Universal utility concept
broad_mappings:
- schema:Product
- crm:E22_Human-Made_Object
WaxTabletCarrier:
is_a: CarrierType
class_uri: hc:WaxTabletCarrier
@ -176,8 +213,11 @@ classes:
has_or_had_label:
equals_string: Wax Tablet
annotations:
custodian_types: "['*']"
custodian_types: '[''*'']'
custodian_types_rationale: Universal utility concept
broad_mappings:
- schema:Product
- crm:E22_Human-Made_Object
InscriptionCarrier:
is_a: CarrierType
class_uri: hc:InscriptionCarrier
@ -188,8 +228,11 @@ classes:
has_or_had_label:
equals_string: Inscription
annotations:
custodian_types: "['*']"
custodian_types: '[''*'']'
custodian_types_rationale: Universal utility concept
broad_mappings:
- schema:Product
- crm:E22_Human-Made_Object
VinylDiscCarrier:
is_a: CarrierType
class_uri: hc:VinylDiscCarrier
@ -200,8 +243,11 @@ classes:
has_or_had_label:
equals_string: Vinyl Disc
annotations:
custodian_types: "['*']"
custodian_types: '[''*'']'
custodian_types_rationale: Universal utility concept
broad_mappings:
- schema:Product
- crm:E22_Human-Made_Object
AudioCassetteCarrier:
is_a: CarrierType
class_uri: hc:AudioCassetteCarrier
@ -212,8 +258,11 @@ classes:
has_or_had_label:
equals_string: Audio Cassette
annotations:
custodian_types: "['*']"
custodian_types: '[''*'']'
custodian_types_rationale: Universal utility concept
broad_mappings:
- schema:Product
- crm:E22_Human-Made_Object
CompactDiscCarrier:
is_a: CarrierType
class_uri: hc:CompactDiscCarrier
@ -224,8 +273,11 @@ classes:
has_or_had_label:
equals_string: Compact Disc
annotations:
custodian_types: "['*']"
custodian_types: '[''*'']'
custodian_types_rationale: Universal utility concept
broad_mappings:
- schema:Product
- crm:E22_Human-Made_Object
FilmReelCarrier:
is_a: CarrierType
class_uri: hc:FilmReelCarrier
@ -236,8 +288,11 @@ classes:
has_or_had_label:
equals_string: Film Reel
annotations:
custodian_types: "['*']"
custodian_types: '[''*'']'
custodian_types_rationale: Universal utility concept
broad_mappings:
- schema:Product
- crm:E22_Human-Made_Object
VideotapeCarrier:
is_a: CarrierType
class_uri: hc:VideotapeCarrier
@ -248,8 +303,11 @@ classes:
has_or_had_label:
equals_string: Videotape
annotations:
custodian_types: "['*']"
custodian_types: '[''*'']'
custodian_types_rationale: Universal utility concept
broad_mappings:
- schema:Product
- crm:E22_Human-Made_Object
MicrofilmCarrier:
is_a: CarrierType
class_uri: hc:MicrofilmCarrier
@ -260,8 +318,11 @@ classes:
has_or_had_label:
equals_string: Microfilm
annotations:
custodian_types: "['*']"
custodian_types: '[''*'']'
custodian_types_rationale: Universal utility concept
broad_mappings:
- schema:Product
- crm:E22_Human-Made_Object
MicroficheCarrier:
is_a: CarrierType
class_uri: hc:MicroficheCarrier
@ -272,8 +333,11 @@ classes:
has_or_had_label:
equals_string: Microfiche
annotations:
custodian_types: "['*']"
custodian_types: '[''*'']'
custodian_types_rationale: Universal utility concept
broad_mappings:
- schema:Product
- crm:E22_Human-Made_Object
FloppyDiskCarrier:
is_a: CarrierType
class_uri: hc:FloppyDiskCarrier
@ -284,8 +348,11 @@ classes:
has_or_had_label:
equals_string: Floppy Disk
annotations:
custodian_types: "['*']"
custodian_types: '[''*'']'
custodian_types_rationale: Universal utility concept
broad_mappings:
- schema:Product
- crm:E22_Human-Made_Object
OpticalDiscCarrier:
is_a: CarrierType
class_uri: hc:OpticalDiscCarrier
@ -296,8 +363,11 @@ classes:
has_or_had_label:
equals_string: Optical Disc
annotations:
custodian_types: "['*']"
custodian_types: '[''*'']'
custodian_types_rationale: Universal utility concept
broad_mappings:
- schema:Product
- crm:E22_Human-Made_Object
HardDriveCarrier:
is_a: CarrierType
class_uri: hc:HardDriveCarrier
@ -308,8 +378,11 @@ classes:
has_or_had_label:
equals_string: Hard Drive
annotations:
custodian_types: "['*']"
custodian_types: '[''*'']'
custodian_types_rationale: Universal utility concept
broad_mappings:
- schema:Product
- crm:E22_Human-Made_Object
USBDriveCarrier:
is_a: CarrierType
class_uri: hc:USBDriveCarrier
@ -320,8 +393,11 @@ classes:
has_or_had_label:
equals_string: USB Drive
annotations:
custodian_types: "['*']"
custodian_types: '[''*'']'
custodian_types_rationale: Universal utility concept
broad_mappings:
- schema:Product
- crm:E22_Human-Made_Object
MemoryCardCarrier:
is_a: CarrierType
class_uri: hc:MemoryCardCarrier
@ -332,5 +408,8 @@ classes:
has_or_had_label:
equals_string: Memory Card
annotations:
custodian_types: "['*']"
custodian_types: '[''*'']'
custodian_types_rationale: Universal utility concept
broad_mappings:
- schema:Product
- crm:E22_Human-Made_Object

View file

@ -1,7 +1,8 @@
id: https://nde.nl/ontology/hc/class/CatalogSystemTypes
name: CatalogSystemTypes
title: Catalog System Types (Concrete Subclasses)
description: 'Concrete subclasses of CatalogSystemType representing specific categories of
description: 'Concrete subclasses of CatalogSystemType representing specific categories
of
catalog and collection management systems used by heritage institutions.
@ -26,10 +27,11 @@ imports:
- ./CatalogSystemType
default_prefix: hc
classes:
IntegratedLibrarySystemType:
IntegratedLibrarySystem:
is_a: CatalogSystemType
class_uri: hc:IntegratedLibrarySystemType
description: 'Integrated Library System (ILS) - comprehensive software for library operations
class_uri: hc:IntegratedLibrarySystem
description: 'Integrated Library System (ILS) - comprehensive software for library
operations
including cataloging, circulation, acquisitions, and patron management.
@ -46,12 +48,15 @@ classes:
annotations:
specificity_score: 0.1
specificity_rationale: Generic utility class/slot created during migration
custodian_types: "['*']"
custodian_types: '[''*'']'
custodian_types_rationale: Universal utility concept
LibraryServicesPlattformType:
broad_mappings:
- skos:Concept
LibraryServicesPlattform:
is_a: CatalogSystemType
class_uri: hc:LibraryServicesPlatformType
description: 'Library Services Platform (LSP) - next-generation cloud-based library management
class_uri: hc:LibraryServicesPlatform
description: 'Library Services Platform (LSP) - next-generation cloud-based library
management
combining ILS functionality with electronic resource management.
@ -65,9 +70,11 @@ classes:
aliases:
- LSP
- Next-Generation ILS
DiscoverySystemType:
broad_mappings:
- skos:Concept
DiscoverySystem:
is_a: CatalogSystemType
class_uri: hc:DiscoverySystemType
class_uri: hc:DiscoverySystem
description: 'Discovery system or discovery layer providing unified search across
library catalogs, databases, and digital collections.
@ -83,9 +90,11 @@ classes:
- Discovery Layer
- Discovery Platform
- OPAC
CollectionManagementSystemType:
broad_mappings:
- skos:Concept
CollectionManagementSystem:
is_a: CatalogSystemType
class_uri: hc:CollectionManagementSystemType
class_uri: hc:CollectionManagementSystem
description: 'Collection Management System (CMS) for museums and cultural heritage
institutions to manage object records, provenance, exhibitions, and loans.
@ -101,9 +110,11 @@ classes:
- CMS
- Collections Database
- Museum Management System
DigitalAssetManagementType:
broad_mappings:
- skos:Concept
DigitalAssetManagement:
is_a: CatalogSystemType
class_uri: hc:DigitalAssetManagementType
class_uri: hc:DigitalAssetManagement
description: 'Digital Asset Management (DAM) system for organizing, storing, and
retrieving digital media files (images, video, audio, documents).
@ -119,9 +130,11 @@ classes:
- DAM
- Media Asset Management
- Digital Media Library
ArchivesManagementSystemType:
broad_mappings:
- skos:Concept
ArchivesManagementSystem:
is_a: CatalogSystemType
class_uri: hc:ArchivesManagementSystemType
class_uri: hc:ArchivesManagementSystem
description: 'Archives Management System for managing archival collections following
archival standards (ISAD(G), EAD, DACS).
@ -136,10 +149,13 @@ classes:
aliases:
- AMS
- Archival Management System
DigitalPreservationSystemType:
broad_mappings:
- skos:Concept
DigitalPreservationSystem:
is_a: CatalogSystemType
class_uri: hc:DigitalPreservationSystemType
description: 'Digital Preservation System for long-term preservation of digital objects
class_uri: hc:DigitalPreservationSystem
description: 'Digital Preservation System for long-term preservation of digital
objects
following standards like OAIS (Open Archival Information System).
@ -153,9 +169,11 @@ classes:
aliases:
- Preservation Repository
- OAIS Repository
InstitutionalRepositoryType:
broad_mappings:
- skos:Concept
InstitutionalRepository:
is_a: CatalogSystemType
class_uri: hc:InstitutionalRepositoryType
class_uri: hc:InstitutionalRepository
description: 'Institutional Repository for managing and providing access to scholarly
outputs, research data, and institutional publications.
@ -171,9 +189,11 @@ classes:
- IR
- Digital Repository
- Research Repository
ContentManagementSystemType:
broad_mappings:
- skos:Concept
ContentManagementSystem:
is_a: CatalogSystemType
class_uri: hc:ContentManagementSystemType
class_uri: hc:ContentManagementSystem
description: 'Content Management System for managing website content and digital
publishing, often integrated with collection systems.
@ -188,9 +208,11 @@ classes:
aliases:
- CMS
- Web CMS
LinkedDataPlatformType:
broad_mappings:
- skos:Concept
LinkedDataPlatform:
is_a: CatalogSystemType
class_uri: hc:LinkedDataPlatformType
class_uri: hc:LinkedDataPlatform
description: 'Linked Data Platform for publishing and managing linked open data
about collections, using semantic web technologies.
@ -205,9 +227,11 @@ classes:
aliases:
- Knowledge Graph Platform
- Semantic Platform
ExhibitionManagementSystemType:
broad_mappings:
- skos:Concept
ExhibitionManagementSystem:
is_a: CatalogSystemType
class_uri: hc:ExhibitionManagementSystemType
class_uri: hc:ExhibitionManagementSystem
description: 'Exhibition Management System for planning, organizing, and tracking
museum exhibitions, loans, and installation.
@ -222,9 +246,11 @@ classes:
aliases:
- EMS
- Gallery Management
RegistrationSystemType:
broad_mappings:
- skos:Concept
RegistrationSystem:
is_a: CatalogSystemType
class_uri: hc:RegistrationSystemType
class_uri: hc:RegistrationSystem
description: 'Registration System for tracking object movement, conditions,
and custody within a museum or archive.
@ -239,3 +265,5 @@ classes:
aliases:
- Object Tracking System
- Movement Control
broad_mappings:
- skos:Concept

View file

@ -1,7 +1,8 @@
id: https://nde.nl/ontology/hc/class/CateringTypes
name: CateringTypes
title: Catering Types (Concrete Subclasses)
description: 'Concrete subclasses of CateringType representing specific categories of
description: 'Concrete subclasses of CateringType representing specific categories
of
catering facilities at heritage venues.
@ -32,10 +33,11 @@ imports:
- ./CateringType
default_prefix: hc
classes:
CafeCateringType:
CafeCatering:
is_a: CateringType
class_uri: hc:CafeCateringType
description: "Casual caf\xE9 or coffee shop offering beverages, light snacks, and pastries.\nTypically self-service or counter-service with informal seating.\n"
class_uri: hc:CafeCatering
description: "Casual caf\xE9 or coffee shop offering beverages, light snacks,\
\ and pastries.\nTypically self-service or counter-service with informal seating.\n"
slot_usage:
has_or_had_name:
equals_string: "Caf\xE9"
@ -48,12 +50,15 @@ classes:
annotations:
specificity_score: 0.1
specificity_rationale: Generic utility class/slot created during migration
custodian_types: "['*']"
custodian_types: '[''*'']'
custodian_types_rationale: Universal utility concept
RestaurantCateringType:
broad_mappings:
- skos:Concept
RestaurantCatering:
is_a: CateringType
class_uri: hc:RestaurantCateringType
description: 'Full-service restaurant with table service, complete meals, and formal dining.
class_uri: hc:RestaurantCatering
description: 'Full-service restaurant with table service, complete meals, and
formal dining.
May range from casual dining to fine dining establishments.
@ -67,12 +72,15 @@ classes:
- Dining Room
- Eatery
annotations:
custodian_types: "['*']"
custodian_types: '[''*'']'
custodian_types_rationale: Universal utility concept
TeaRoomCateringType:
broad_mappings:
- skos:Concept
TeaRoomCatering:
is_a: CateringType
class_uri: hc:TeaRoomCateringType
description: 'Tea room or tea salon specializing in tea service, often with afternoon tea,
class_uri: hc:TeaRoomCatering
description: 'Tea room or tea salon specializing in tea service, often with afternoon
tea,
scones, sandwiches, and pastries.
@ -85,11 +93,13 @@ classes:
- Theehuis
- "Salon de Th\xE9"
annotations:
custodian_types: "['*']"
custodian_types: '[''*'']'
custodian_types_rationale: Universal utility concept
CanteenCateringType:
broad_mappings:
- skos:Concept
CanteenCatering:
is_a: CateringType
class_uri: hc:CanteenCateringType
class_uri: hc:CanteenCatering
description: 'Staff cafeteria or canteen primarily serving employees and staff.
May be open to visitors or restricted to staff only.
@ -103,12 +113,15 @@ classes:
- Staff Restaurant
- Kantine
annotations:
custodian_types: "['*']"
custodian_types: '[''*'']'
custodian_types_rationale: Universal utility concept
TerraceCateringType:
broad_mappings:
- skos:Concept
TerraceCatering:
is_a: CateringType
class_uri: hc:TerraceCateringType
description: "Outdoor or garden caf\xE9, typically seasonal, offering refreshments\nin a garden, courtyard, or terrace setting.\n"
class_uri: hc:TerraceCatering
description: "Outdoor or garden caf\xE9, typically seasonal, offering refreshments\n\
in a garden, courtyard, or terrace setting.\n"
slot_usage:
has_or_had_name:
equals_string: Terrace
@ -117,12 +130,16 @@ classes:
- "Outdoor Caf\xE9"
- Terras
annotations:
custodian_types: "['*']"
custodian_types: '[''*'']'
custodian_types_rationale: Universal utility concept
HistoricCafeCateringType:
broad_mappings:
- skos:Concept
HistoricCafeCatering:
is_a: CateringType
class_uri: hc:HistoricCafeCateringType
description: "Heritage caf\xE9 with cultural or historical significance.\nOften a protected monument or literary landmark in its own right.\nExamples: Caf\xE9 Americain, Caf\xE9 de Flore, Caf\xE9 Central.\n"
class_uri: hc:HistoricCafeCatering
description: "Heritage caf\xE9 with cultural or historical significance.\nOften\
\ a protected monument or literary landmark in its own right.\nExamples: Caf\xE9\
\ Americain, Caf\xE9 de Flore, Caf\xE9 Central.\n"
slot_usage:
has_or_had_name:
equals_string: "Historic Caf\xE9"
@ -131,11 +148,13 @@ classes:
- "Literary Caf\xE9"
- "Grand Caf\xE9"
annotations:
custodian_types: "['*']"
custodian_types: '[''*'']'
custodian_types_rationale: Universal utility concept
EventCateringType:
broad_mappings:
- skos:Concept
EventCatering:
is_a: CateringType
class_uri: hc:EventCateringType
class_uri: hc:EventCatering
description: 'Function and event catering space for private events, receptions,
corporate functions, and special occasions.
@ -149,5 +168,7 @@ classes:
- Banquet Hall
- Reception Venue
annotations:
custodian_types: "['*']"
custodian_types: '[''*'']'
custodian_types_rationale: Universal utility concept
broad_mappings:
- skos:Concept

View file

@ -46,7 +46,9 @@ classes:
ChapterRecordsFonds:
is_a: CathedralArchiveRecordSetType
class_uri: rico:RecordSetType
description: "A rico:RecordSetType for Cathedral chapter administrative records.\n\n**RiC-O Alignment**:\nThis class is a specialized rico:RecordSetType following the fonds \norganizational principle as defined by rico-rst:Fonds.\n"
description: "A rico:RecordSetType for Cathedral chapter administrative records.\n\
\n**RiC-O Alignment**:\nThis class is a specialized rico:RecordSetType following\
\ the fonds \norganizational principle as defined by rico-rst:Fonds.\n"
exact_mappings:
- rico:RecordSetType
related_mappings:
@ -77,16 +79,22 @@ classes:
record_holder:
equals_string: CathedralArchive
record_holder_note:
equals_string: This RecordSetType is typically held by CathedralArchive custodians. Inverse of rico:isOrWasHolderOf.
equals_string: This RecordSetType is typically held by CathedralArchive custodians.
Inverse of rico:isOrWasHolderOf.
annotations:
specificity_score: 0.1
specificity_rationale: Generic utility class/slot created during migration
custodian_types: "['*']"
custodian_types: '[''*'']'
custodian_types_rationale: Universal utility concept
broad_mappings:
- rico:RecordSetType
- skos:Concept
LiturgicalDocumentCollection:
is_a: CathedralArchiveRecordSetType
class_uri: rico:RecordSetType
description: "A rico:RecordSetType for Liturgical and ceremonial records.\n\n**RiC-O Alignment**:\nThis class is a specialized rico:RecordSetType following the collection \norganizational principle as defined by rico-rst:Collection.\n"
description: "A rico:RecordSetType for Liturgical and ceremonial records.\n\n\
**RiC-O Alignment**:\nThis class is a specialized rico:RecordSetType following\
\ the collection \norganizational principle as defined by rico-rst:Collection.\n"
exact_mappings:
- rico:RecordSetType
related_mappings:
@ -117,11 +125,17 @@ classes:
record_holder:
equals_string: CathedralArchive
record_holder_note:
equals_string: This RecordSetType is typically held by CathedralArchive custodians. Inverse of rico:isOrWasHolderOf.
equals_string: This RecordSetType is typically held by CathedralArchive custodians.
Inverse of rico:isOrWasHolderOf.
broad_mappings:
- rico:RecordSetType
- skos:Concept
FabricRecordsSeries:
is_a: CathedralArchiveRecordSetType
class_uri: rico:RecordSetType
description: "A rico:RecordSetType for Building and fabric maintenance records.\n\n**RiC-O Alignment**:\nThis class is a specialized rico:RecordSetType following the series \norganizational principle as defined by rico-rst:Series.\n"
description: "A rico:RecordSetType for Building and fabric maintenance records.\n\
\n**RiC-O Alignment**:\nThis class is a specialized rico:RecordSetType following\
\ the series \norganizational principle as defined by rico-rst:Series.\n"
exact_mappings:
- rico:RecordSetType
related_mappings:
@ -152,4 +166,8 @@ classes:
record_holder:
equals_string: CathedralArchive
record_holder_note:
equals_string: This RecordSetType is typically held by CathedralArchive custodians. Inverse of rico:isOrWasHolderOf.
equals_string: This RecordSetType is typically held by CathedralArchive custodians.
Inverse of rico:isOrWasHolderOf.
broad_mappings:
- rico:RecordSetType
- skos:Concept

View file

@ -55,8 +55,21 @@ classes:
ChurchGovernanceFonds:
is_a: ChurchArchiveRecordSetType
class_uri: rico:RecordSetType
description: "A rico:RecordSetType for church governance and administrative records organized as a fonds.\n\n**Definition**:\nRecords created by church governing bodies (synods, councils, consistories, \nkerkenraden) in the exercise of ecclesiastical governance and administration. \nOrganized according to archival principles of provenance.\n\n**Typical Contents**:\n- Synod/classis minutes and resolutions\n- Consistory/kerkenraad minutes\n- Church council decisions\n- Canonical visitation records\n- Correspondence with ecclesiastical authorities\n- Church law and regulations (kerkorde)\n- Disciplinary records\n- Membership rolls (lidmatenregisters)\n\n**Denominational Variations**:\n- Reformed: Kerkenraad, classis, synode\n- Roman Catholic: Parish council, diocese, bishops' conference\n- Lutheran: Kirchenvorstand, Synode\n- Other Protestant: Consistory, presbytery, conference\n\n**RiC-O Alignment**:\nThis class is a specialized rico:RecordSetType. Records classified with this\ntype follow\
\ the fonds organizational principle as defined by rico-rst:Fonds\n(provenance-based organization with governance records forming the core fonds).\n"
description: "A rico:RecordSetType for church governance and administrative records\
\ organized as a fonds.\n\n**Definition**:\nRecords created by church governing\
\ bodies (synods, councils, consistories, \nkerkenraden) in the exercise of\
\ ecclesiastical governance and administration. \nOrganized according to archival\
\ principles of provenance.\n\n**Typical Contents**:\n- Synod/classis minutes\
\ and resolutions\n- Consistory/kerkenraad minutes\n- Church council decisions\n\
- Canonical visitation records\n- Correspondence with ecclesiastical authorities\n\
- Church law and regulations (kerkorde)\n- Disciplinary records\n- Membership\
\ rolls (lidmatenregisters)\n\n**Denominational Variations**:\n- Reformed: Kerkenraad,\
\ classis, synode\n- Roman Catholic: Parish council, diocese, bishops' conference\n\
- Lutheran: Kirchenvorstand, Synode\n- Other Protestant: Consistory, presbytery,\
\ conference\n\n**RiC-O Alignment**:\nThis class is a specialized rico:RecordSetType.\
\ Records classified with this\ntype follow the fonds organizational principle\
\ as defined by rico-rst:Fonds\n(provenance-based organization with governance\
\ records forming the core fonds).\n"
structured_aliases:
- literal_form: Kirchenleitungsbestand
in_language: de
@ -86,6 +99,8 @@ classes:
- rico-rst:Fonds
broad_mappings:
- wd:Q1643722
- rico:RecordSetType
- skos:Concept
close_mappings:
- skos:Concept
see_also:
@ -114,21 +129,39 @@ classes:
organizational_principle_uri:
equals_string: https://www.ica.org/standards/RiC/vocabularies/recordSetTypes#Fonds
record_note:
equals_string: This RecordSetType classifies record sets following the fonds principle. Governance records form the core archival fonds of church archives.
equals_string: This RecordSetType classifies record sets following the fonds
principle. Governance records form the core archival fonds of church archives.
scope_include:
equals_string: '["synod minutes", "consistory records", "church council decisions", "visitation records", "membership rolls"]'
equals_string: '["synod minutes", "consistory records", "church council decisions",
"visitation records", "membership rolls"]'
scope_exclude:
equals_string: '["parish registers", "property records", "congregational societies"]'
annotations:
specificity_score: 0.1
specificity_rationale: Generic utility class/slot created during migration
custodian_types: "['*']"
custodian_types: '[''*'']'
custodian_types_rationale: Universal utility concept
ParishRegisterSeries:
is_a: ChurchArchiveRecordSetType
class_uri: rico:RecordSetType
description: "A rico:RecordSetType for parish registers (vital records) organized as archival series.\n\n**Definition**:\nRecords documenting sacramental events (baptisms, marriages, burials) and \nother vital events in the religious community. These are the ecclesiastical \nequivalent of civil registry records and predate civil registration in most \ncountries.\n\n**Typical Contents**:\n- Baptism registers (doopregisters)\n- Marriage registers (trouwregisters/huwelijksregisters)\n- Burial registers (begraafregisters)\n- Confirmation registers (belijdenisregisters)\n- Communion registers\n- Membership transfer records (attestaties)\n\n**Genealogical Value**:\nParish registers are PRIMARY sources for genealogical research, especially:\n- Pre-1811 (Netherlands): Before civil registration\n- All periods: Supplement civil records with religious context\n- Minority communities: Jewish, Catholic, Dissenter records\n\n**Privacy Considerations**:\nHistorical parish registers are generally accessible.\
\ However, more recent \nrecords may have restrictions. Many have been digitized and indexed by \ngenealogical organizations.\n\n**RiC-O Alignment**:\nThis class is a specialized rico:RecordSetType. Records classified with this\ntype follow the series organizational principle as defined by rico-rst:Series\n(chronological has_arrangement by event type: DTB doop, trouw, begraven).\n"
description: "A rico:RecordSetType for parish registers (vital records) organized\
\ as archival series.\n\n**Definition**:\nRecords documenting sacramental events\
\ (baptisms, marriages, burials) and \nother vital events in the religious community.\
\ These are the ecclesiastical \nequivalent of civil registry records and predate\
\ civil registration in most \ncountries.\n\n**Typical Contents**:\n- Baptism\
\ registers (doopregisters)\n- Marriage registers (trouwregisters/huwelijksregisters)\n\
- Burial registers (begraafregisters)\n- Confirmation registers (belijdenisregisters)\n\
- Communion registers\n- Membership transfer records (attestaties)\n\n**Genealogical\
\ Value**:\nParish registers are PRIMARY sources for genealogical research,\
\ especially:\n- Pre-1811 (Netherlands): Before civil registration\n- All periods:\
\ Supplement civil records with religious context\n- Minority communities: Jewish,\
\ Catholic, Dissenter records\n\n**Privacy Considerations**:\nHistorical parish\
\ registers are generally accessible. However, more recent \nrecords may have\
\ restrictions. Many have been digitized and indexed by \ngenealogical organizations.\n\
\n**RiC-O Alignment**:\nThis class is a specialized rico:RecordSetType. Records\
\ classified with this\ntype follow the series organizational principle as defined\
\ by rico-rst:Series\n(chronological has_arrangement by event type: DTB doop,\
\ trouw, begraven).\n"
structured_aliases:
- literal_form: "Kirchenb\xFCcher"
in_language: de
@ -160,6 +193,8 @@ classes:
- rico-rst:Series
broad_mappings:
- wd:Q185583
- rico:RecordSetType
- skos:Concept
close_mappings:
- skos:Concept
see_also:
@ -169,8 +204,12 @@ classes:
- ParishArchive
- CivilRegistrySeries
annotations:
genealogy_note: Primary source for genealogical research, especially pre-civil registration periods. Many digitized and indexed by organizations like FamilySearch, Alle Groningers, WieWasWie.
digitization_note: Extensive digitization efforts by genealogical societies and archives. Often available through portals like FamilySearch, Ancestry, WieWasWie.
genealogy_note: Primary source for genealogical research, especially pre-civil
registration periods. Many digitized and indexed by organizations like FamilySearch, Alle
Groningers, WieWasWie.
digitization_note: Extensive digitization efforts by genealogical societies
and archives. Often available through portals like FamilySearch, Ancestry,
WieWasWie.
slots:
- has_or_had_type
- specificity_annotation
@ -191,16 +230,34 @@ classes:
organizational_principle_uri:
equals_string: https://www.ica.org/standards/RiC/vocabularies/recordSetTypes#Series
record_note:
equals_string: 'This RecordSetType classifies record sets following the series principle. Registers arranged chronologically by event type (DTB: doop, trouw, begraven).'
equals_string: 'This RecordSetType classifies record sets following the series
principle. Registers arranged chronologically by event type (DTB: doop,
trouw, begraven).'
scope_include:
equals_string: '["baptism records", "marriage records", "burial records", "confirmation records", "membership transfers"]'
equals_string: '["baptism records", "marriage records", "burial records",
"confirmation records", "membership transfers"]'
scope_exclude:
equals_string: '["church governance", "property records", "correspondence"]'
PastoralCorrespondenceCollection:
is_a: ChurchArchiveRecordSetType
class_uri: rico:RecordSetType
description: "A rico:RecordSetType for pastoral correspondence and clergy records.\n\n**Definition**:\nRecords documenting the activities and correspondence of clergy members, \nincluding pastoral care, ecclesiastical correspondence, and personal papers \nof ministers, priests, and other religious leaders.\n\n**Typical Contents**:\n- Clergy correspondence (predikantenarchief)\n- Visitation reports\n- Sermon manuscripts\n- Pastoral care documentation\n- Letters to/from parishioners\n- Correspondence with church authorities\n- Personal papers of clergy\n- Theological writings and notes\n\n**Privacy Considerations**:\nPastoral correspondence may contain sensitive personal information about \nparishioners. Access restrictions may apply, especially for recent records.\nThe seal of confession (biechtgeheim) protects certain communications.\n\n**Historical Value**:\nClergy correspondence provides unique insights into:\n- Religious life and practices\n- Social conditions in communities\n- Theological\
\ controversies\n- Personal faith journeys\n\n**RiC-O Alignment**:\nThis class is a specialized rico:RecordSetType. Records classified with this\ntype may follow mixed organizational principles: both organic correspondence\nseries and personal papers fonds as defined by rico-rst:Series and rico-rst:Fonds.\n"
description: "A rico:RecordSetType for pastoral correspondence and clergy records.\n\
\n**Definition**:\nRecords documenting the activities and correspondence of\
\ clergy members, \nincluding pastoral care, ecclesiastical correspondence,\
\ and personal papers \nof ministers, priests, and other religious leaders.\n\
\n**Typical Contents**:\n- Clergy correspondence (predikantenarchief)\n- Visitation\
\ reports\n- Sermon manuscripts\n- Pastoral care documentation\n- Letters to/from\
\ parishioners\n- Correspondence with church authorities\n- Personal papers\
\ of clergy\n- Theological writings and notes\n\n**Privacy Considerations**:\n\
Pastoral correspondence may contain sensitive personal information about \n\
parishioners. Access restrictions may apply, especially for recent records.\n\
The seal of confession (biechtgeheim) protects certain communications.\n\n**Historical\
\ Value**:\nClergy correspondence provides unique insights into:\n- Religious\
\ life and practices\n- Social conditions in communities\n- Theological controversies\n\
- Personal faith journeys\n\n**RiC-O Alignment**:\nThis class is a specialized\
\ rico:RecordSetType. Records classified with this\ntype may follow mixed organizational\
\ principles: both organic correspondence\nseries and personal papers fonds\
\ as defined by rico-rst:Series and rico-rst:Fonds.\n"
structured_aliases:
- literal_form: Pfarrerkorrespondenz
in_language: de
@ -229,6 +286,8 @@ classes:
- rico-rst:Series
broad_mappings:
- wd:Q22075301
- rico:RecordSetType
- skos:Concept
close_mappings:
- skos:Concept
see_also:
@ -249,7 +308,8 @@ classes:
- scope_include
slot_usage:
has_or_had_type:
equals_expression: '["hc:ArchiveOrganizationType", "hc:HolySacredSiteType", "hc:LibraryType"]'
equals_expression: '["hc:ArchiveOrganizationType", "hc:HolySacredSiteType",
"hc:LibraryType"]'
record_set_type:
equals_string: PastoralCorrespondenceCollection
organizational_principle:
@ -257,18 +317,37 @@ classes:
organizational_principle_uri:
equals_string: https://www.ica.org/standards/RiC/vocabularies/recordSetTypes#Fonds
record_note:
equals_string: This RecordSetType may follow mixed organizational principles. Includes both organic correspondence series from church administration and personal papers of individual clergy members acquired as donations.
equals_string: This RecordSetType may follow mixed organizational principles.
Includes both organic correspondence series from church administration and
personal papers of individual clergy members acquired as donations.
scope_include:
equals_string: '["clergy correspondence", "sermon manuscripts", "visitation reports", "pastoral notes"]'
equals_string: '["clergy correspondence", "sermon manuscripts", "visitation
reports", "pastoral notes"]'
scope_exclude:
equals_string: '["parish registers", "governance records", "property records"]'
privacy_note:
equals_string: Pastoral correspondence may contain sensitive personal information. Access restrictions may apply, especially for recent records. Seal of confession (biechtgeheim) protects certain communications.
equals_string: Pastoral correspondence may contain sensitive personal information. Access
restrictions may apply, especially for recent records. Seal of confession
(biechtgeheim) protects certain communications.
ChurchPropertyFonds:
is_a: ChurchArchiveRecordSetType
class_uri: rico:RecordSetType
description: "A rico:RecordSetType for church property and financial records organized as a fonds.\n\n**Definition**:\nRecords documenting the temporal affairs of the church, including property \nownership, financial administration, building construction and maintenance, \nand endowments.\n\n**Typical Contents**:\n- Property deeds and titles (eigendomsakten)\n- Building construction records (bouwdossiers)\n- Maintenance and renovation records\n- Financial accounts (rekeningen)\n- Endowment records (legaten, stichtingen)\n- Rental and lease agreements\n- Insurance records\n- Cemetery administration\n\n**Historical Value**:\nChurch property records document:\n- Architectural history of church buildings\n- Economic history of communities\n- Landholding patterns\n- Charitable endowments and their administration\n\n**Legal Significance**:\nProperty records may still be legally significant for:\n- Ownership disputes\n- Restoration projects\n- Monument designation (monumentenzorg)\n- Cemetery\
\ rights\n\n**RiC-O Alignment**:\nThis class is a specialized rico:RecordSetType. Records classified with this\ntype follow the fonds organizational principle as defined by rico-rst:Fonds\n(property administration forming a distinct archival fonds).\n"
description: "A rico:RecordSetType for church property and financial records organized\
\ as a fonds.\n\n**Definition**:\nRecords documenting the temporal affairs of\
\ the church, including property \nownership, financial administration, building\
\ construction and maintenance, \nand endowments.\n\n**Typical Contents**:\n\
- Property deeds and titles (eigendomsakten)\n- Building construction records\
\ (bouwdossiers)\n- Maintenance and renovation records\n- Financial accounts\
\ (rekeningen)\n- Endowment records (legaten, stichtingen)\n- Rental and lease\
\ agreements\n- Insurance records\n- Cemetery administration\n\n**Historical\
\ Value**:\nChurch property records document:\n- Architectural history of church\
\ buildings\n- Economic history of communities\n- Landholding patterns\n- Charitable\
\ endowments and their administration\n\n**Legal Significance**:\nProperty records\
\ may still be legally significant for:\n- Ownership disputes\n- Restoration\
\ projects\n- Monument designation (monumentenzorg)\n- Cemetery rights\n\n**RiC-O\
\ Alignment**:\nThis class is a specialized rico:RecordSetType. Records classified\
\ with this\ntype follow the fonds organizational principle as defined by rico-rst:Fonds\n\
(property administration forming a distinct archival fonds).\n"
structured_aliases:
- literal_form: "Kirchenverm\xF6gensbestand"
in_language: de
@ -298,6 +377,8 @@ classes:
- rico-rst:Fonds
broad_mappings:
- wd:Q1643722
- rico:RecordSetType
- skos:Concept
close_mappings:
- skos:Concept
see_also:
@ -325,18 +406,36 @@ classes:
organizational_principle_uri:
equals_string: https://www.ica.org/standards/RiC/vocabularies/recordSetTypes#Fonds
record_note:
equals_string: This RecordSetType classifies record sets following the fonds principle. Property administration forms a distinct archival fonds, often managed separately from governance records.
equals_string: This RecordSetType classifies record sets following the fonds
principle. Property administration forms a distinct archival fonds, often
managed separately from governance records.
scope_include:
equals_string: '["property deeds", "building records", "financial accounts", "endowments", "cemetery records"]'
equals_string: '["property deeds", "building records", "financial accounts",
"endowments", "cemetery records"]'
scope_exclude:
equals_string: '["parish registers", "governance records", "clergy correspondence"]'
legal_note:
equals_string: Property records may retain legal significance for ownership, restoration projects, and monument designation. Original documents often retained for legal purposes.
equals_string: Property records may retain legal significance for ownership,
restoration projects, and monument designation. Original documents often
retained for legal purposes.
CongregationalLifeCollection:
is_a: ChurchArchiveRecordSetType
class_uri: rico:RecordSetType
description: "A rico:RecordSetType for congregational life and community documentation.\n\n**Definition**:\nMaterials documenting the life and activities of the religious community \nbeyond formal governance and sacramental records. Includes organizational \nrecords of church societies, visual materials, and ephemera.\n\n**Typical Contents**:\n- Church society records (vrouwenvereniging, jeugdvereniging)\n- Sunday school records\n- Choir and music records\n- Church publications (kerkbladen)\n- Photographs and audiovisual materials\n- Anniversary and commemorative materials\n- Mission society records\n- Charitable organization records (diaconie)\n- Event programs and ephemera\n\n**Community Value**:\nThese records capture the lived religious experience of communities:\n- Social networks and community bonds\n- Religious education practices\n- Charitable activities\n- Cultural and musical traditions\n- Women's and youth involvement\n\n**RiC-O Alignment**:\nThis is a specialized RecordSetType\
\ that typically includes assembled \ncollections organized by society or activity type, alongside organic \nrecords from church organizations.\n"
description: "A rico:RecordSetType for congregational life and community documentation.\n\
\n**Definition**:\nMaterials documenting the life and activities of the religious\
\ community \nbeyond formal governance and sacramental records. Includes organizational\
\ \nrecords of church societies, visual materials, and ephemera.\n\n**Typical\
\ Contents**:\n- Church society records (vrouwenvereniging, jeugdvereniging)\n\
- Sunday school records\n- Choir and music records\n- Church publications (kerkbladen)\n\
- Photographs and audiovisual materials\n- Anniversary and commemorative materials\n\
- Mission society records\n- Charitable organization records (diaconie)\n- Event\
\ programs and ephemera\n\n**Community Value**:\nThese records capture the lived\
\ religious experience of communities:\n- Social networks and community bonds\n\
- Religious education practices\n- Charitable activities\n- Cultural and musical\
\ traditions\n- Women's and youth involvement\n\n**RiC-O Alignment**:\nThis\
\ is a specialized RecordSetType that typically includes assembled \ncollections\
\ organized by society or activity type, alongside organic \nrecords from church\
\ organizations.\n"
structured_aliases:
- literal_form: Gemeindelebenssammlung
in_language: de
@ -368,6 +467,8 @@ classes:
- rico-rst:Collection
broad_mappings:
- wd:Q9388534
- rico:RecordSetType
- skos:Concept
close_mappings:
- skos:Concept
- schema:Collection
@ -377,7 +478,8 @@ classes:
- rico-rst:Collection
- CampusDocumentationCollection
annotations:
collection_nature_note: Often includes artificial/assembled collections. Materials reflect the lived religious experience of the community beyond formal administration.
collection_nature_note: Often includes artificial/assembled collections. Materials
reflect the lived religious experience of the community beyond formal administration.
slots:
- has_or_had_type
- specificity_annotation
@ -390,7 +492,8 @@ classes:
- scope_include
slot_usage:
has_or_had_type:
equals_expression: '["hc:ArchiveOrganizationType", "hc:HolySacredSiteType", "hc:HeritageSocietyType"]'
equals_expression: '["hc:ArchiveOrganizationType", "hc:HolySacredSiteType",
"hc:HeritageSocietyType"]'
record_set_type:
equals_string: CongregationalLifeCollection
organizational_principle:
@ -398,8 +501,12 @@ classes:
organizational_principle_uri:
equals_string: https://www.ica.org/standards/RiC/vocabularies/recordSetTypes#Collection
record_note:
equals_string: This RecordSetType classifies record sets following the collection principle as defined by rico-rst:Collection. Typically includes assembled collections organized by society or activity type. Documentation value prioritized for ephemera and visual materials.
equals_string: This RecordSetType classifies record sets following the collection
principle as defined by rico-rst:Collection. Typically includes assembled
collections organized by society or activity type. Documentation value
prioritized for ephemera and visual materials.
scope_include:
equals_string: '["society records", "sunday school records", "photographs", "publications", "mission records", "diaconal records"]'
equals_string: '["society records", "sunday school records", "photographs",
"publications", "mission records", "diaconal records"]'
scope_exclude:
equals_string: '["parish registers", "governance records", "property records"]'

View file

@ -46,7 +46,9 @@ classes:
SwedishParishRecordSeries:
is_a: ChurchArchiveSwedenRecordSetType
class_uri: rico:RecordSetType
description: "A rico:RecordSetType for Swedish parish records (kyrkoarkiv).\n\n**RiC-O Alignment**:\nThis class is a specialized rico:RecordSetType following the series \norganizational principle as defined by rico-rst:Series.\n"
description: "A rico:RecordSetType for Swedish parish records (kyrkoarkiv).\n\n\
**RiC-O Alignment**:\nThis class is a specialized rico:RecordSetType following\
\ the series \norganizational principle as defined by rico-rst:Series.\n"
exact_mappings:
- rico:RecordSetType
related_mappings:
@ -77,16 +79,24 @@ classes:
record_holder:
equals_string: ChurchArchiveSweden
record_holder_note:
equals_string: This RecordSetType is typically held by ChurchArchiveSweden custodians. Inverse of rico:isOrWasHolderOf.
equals_string: This RecordSetType is typically held by ChurchArchiveSweden
custodians. Inverse of rico:isOrWasHolderOf.
annotations:
specificity_score: 0.1
specificity_rationale: Generic utility class/slot created during migration
custodian_types: "['*']"
custodian_types: '[''*'']'
custodian_types_rationale: Universal utility concept
broad_mappings:
- rico:RecordSetType
- skos:Concept
SwedishChurchPropertyFonds:
is_a: ChurchArchiveSwedenRecordSetType
class_uri: rico:RecordSetType
description: "A rico:RecordSetType for Swedish Church property records.\n\n**RiC-O Alignment**:\nThis class is a specialized rico:RecordSetType following the fonds \norganizational principle as defined by rico-rst:Fonds.\n\n**Note**: This is a Swedish-specific variant. For the general church property fonds type, see ChurchPropertyFonds.\n"
description: "A rico:RecordSetType for Swedish Church property records.\n\n**RiC-O\
\ Alignment**:\nThis class is a specialized rico:RecordSetType following the\
\ fonds \norganizational principle as defined by rico-rst:Fonds.\n\n**Note**:\
\ This is a Swedish-specific variant. For the general church property fonds\
\ type, see ChurchPropertyFonds.\n"
exact_mappings:
- rico:RecordSetType
related_mappings:
@ -118,4 +128,8 @@ classes:
record_holder:
equals_string: ChurchArchiveSweden
record_holder_note:
equals_string: This RecordSetType is typically held by ChurchArchiveSweden custodians. Inverse of rico:isOrWasHolderOf.
equals_string: This RecordSetType is typically held by ChurchArchiveSweden
custodians. Inverse of rico:isOrWasHolderOf.
broad_mappings:
- rico:RecordSetType
- skos:Concept

View file

@ -11,9 +11,9 @@ imports:
- ./ClaimType
default_prefix: hc
classes:
IdentityClaimType:
IdentityClaim:
is_a: ClaimType
class_uri: hc:IdentityClaimType
class_uri: hc:IdentityClaim
description: 'Claim types for organization identity information.
Includes names, descriptions, and identity verification claims.
@ -24,57 +24,71 @@ classes:
annotations:
specificity_score: 0.1
specificity_rationale: Generic utility class/slot created during migration
custodian_types: "['*']"
custodian_types: '[''*'']'
custodian_types_rationale: Universal utility concept
broad_mappings:
- skos:Concept
FullNameClaim:
is_a: IdentityClaimType
is_a: IdentityClaim
class_uri: hc:FullNameClaim
description: 'Official full name of the organization.
Expected in: <title>, <h1>, logo text, meta og:title
'
broad_mappings:
- skos:Concept
ShortNameClaim:
is_a: IdentityClaimType
is_a: IdentityClaim
class_uri: hc:ShortNameClaim
description: 'Abbreviated or short name of the organization.
Expected in: <h1>, logo, header
'
broad_mappings:
- skos:Concept
DescriptionClaim:
is_a: IdentityClaimType
is_a: IdentityClaim
class_uri: hc:DescriptionClaim
description: 'Description or about text for the organization.
Expected in: <meta name=''description''>, about section
'
broad_mappings:
- skos:Concept
LegalNameClaim:
is_a: IdentityClaimType
is_a: IdentityClaim
class_uri: hc:LegalNameClaim
description: 'Full legal/registered name of the organization.
May differ from display name.
'
broad_mappings:
- skos:Concept
CustodianNameClaim:
is_a: IdentityClaimType
is_a: IdentityClaim
class_uri: hc:CustodianNameClaim
description: 'Official custodian name.
May differ from display name in heritage context.
'
broad_mappings:
- skos:Concept
NameVerifiedClaim:
is_a: IdentityClaimType
is_a: IdentityClaim
class_uri: hc:NameVerifiedClaim
description: 'Flag indicating name has been verified against authoritative source.
'
ContactClaimType:
broad_mappings:
- skos:Concept
ContactClaim:
is_a: ClaimType
class_uri: hc:ContactClaimType
class_uri: hc:ContactClaim
description: 'Claim types for contact information.
Includes email, phone, and general contact methods.
@ -82,79 +96,91 @@ classes:
'
comments:
- 'Expected locations: contact page, footer, structured data'
broad_mappings:
- skos:Concept
EmailClaim:
is_a: ContactClaimType
is_a: ContactClaim
class_uri: hc:EmailClaim
description: 'Contact email address.
Expected in: <a href=''mailto:...''>, contact page, footer
'
broad_mappings:
- skos:Concept
PhoneClaim:
is_a: ContactClaimType
is_a: ContactClaim
class_uri: hc:PhoneClaim
description: 'Contact phone number.
Expected in: <a href=''tel:...''>, contact page, footer
'
broad_mappings:
- skos:Concept
AddressClaim:
is_a: ContactClaimType
is_a: ContactClaim
class_uri: hc:AddressClaim
description: 'Physical address (complete).
Expected in: contact page, footer, structured data
'
broad_mappings:
- skos:Concept
WebsiteClaim:
is_a: ContactClaimType
is_a: ContactClaim
class_uri: hc:WebsiteClaim
description: 'Website URL (may differ from source_url).
Expected in: contact page, links
'
SocialMediaClaimType:
is_a: ClaimType
class_uri: hc:SocialMediaClaimType
description: 'Claim types for social media presence.
Includes platform-specific and general social links.
'
comments:
- 'Expected locations: footer, header, contact page'
broad_mappings:
- skos:Concept
SocialMediaClaim:
is_a: SocialMediaClaimType
is_a: SocialMediaClaim
class_uri: hc:SocialMediaClaim
description: 'General social media profile links.
Used when platform is not specified or for aggregate.
'
broad_mappings:
- skos:Concept
FacebookClaim:
is_a: SocialMediaClaimType
is_a: SocialMediaClaim
class_uri: hc:FacebookClaim
description: Facebook page URL.
broad_mappings:
- skos:Concept
TwitterClaim:
is_a: SocialMediaClaimType
is_a: SocialMediaClaim
class_uri: hc:TwitterClaim
description: Twitter/X profile URL.
broad_mappings:
- skos:Concept
InstagramClaim:
is_a: SocialMediaClaimType
is_a: SocialMediaClaim
class_uri: hc:InstagramClaim
description: Instagram profile URL.
broad_mappings:
- skos:Concept
LinkedInClaim:
is_a: SocialMediaClaimType
is_a: SocialMediaClaim
class_uri: hc:LinkedInClaim
description: LinkedIn page URL.
broad_mappings:
- skos:Concept
YouTubeClaim:
is_a: SocialMediaClaimType
is_a: SocialMediaClaim
class_uri: hc:YouTubeClaim
description: YouTube channel URL.
MediaClaimType:
broad_mappings:
- skos:Concept
MediaClaim:
is_a: ClaimType
class_uri: hc:MediaClaimType
class_uri: hc:MediaClaim
description: 'Claim types for media assets.
Includes logos, favicons, and social sharing images.
@ -162,8 +188,10 @@ classes:
'
comments:
- 'Expected locations: header, <link> tags, meta og: tags'
broad_mappings:
- skos:Concept
LogoUrlClaim:
is_a: MediaClaimType
is_a: MediaClaim
class_uri: hc:LogoUrlClaim
description: 'Organization logo image URL.
@ -174,8 +202,10 @@ classes:
Priority: SVG > PNG > JPG for quality.
'
broad_mappings:
- skos:Concept
FaviconUrlClaim:
is_a: MediaClaimType
is_a: MediaClaim
class_uri: hc:FaviconUrlClaim
description: 'Website favicon URL.
@ -184,8 +214,10 @@ classes:
Usually: /favicon.ico, /favicon.png
'
broad_mappings:
- skos:Concept
OgImageUrlClaim:
is_a: MediaClaimType
is_a: MediaClaim
class_uri: hc:OgImageUrlClaim
description: 'Open Graph image URL (social sharing image).
@ -194,9 +226,11 @@ classes:
Often the logo or a representative image.
'
OperationalClaimType:
broad_mappings:
- skos:Concept
OperationalClaim:
is_a: ClaimType
class_uri: hc:OperationalClaimType
class_uri: hc:OperationalClaim
description: 'Claim types for operational information.
Includes hours, admission, and accessibility.
@ -204,25 +238,33 @@ classes:
'
comments:
- 'Expected locations: visit page, contact page, structured data'
broad_mappings:
- skos:Concept
OpeningHoursClaim:
is_a: OperationalClaimType
is_a: OperationalClaim
class_uri: hc:OpeningHoursClaim
description: 'Opening hours / visiting times.
Expected in: visit page, contact page, structured data
'
broad_mappings:
- skos:Concept
AdmissionInfoClaim:
is_a: OperationalClaimType
is_a: OperationalClaim
class_uri: hc:AdmissionInfoClaim
description: Admission prices or policies.
broad_mappings:
- skos:Concept
AccessibilityInfoClaim:
is_a: OperationalClaimType
is_a: OperationalClaim
class_uri: hc:AccessibilityInfoClaim
description: Accessibility information for visitors.
CollectionClaimType:
broad_mappings:
- skos:Concept
CollectionClaim:
is_a: ClaimType
class_uri: hc:CollectionClaimType
class_uri: hc:CollectionClaim
description: 'Claim types for collection statistics and information.
Includes counts and descriptions of holdings.
@ -230,25 +272,35 @@ classes:
'
comments:
- 'Expected locations: collection pages, about sections'
broad_mappings:
- skos:Concept
CollectionCountClaim:
is_a: CollectionClaimType
is_a: CollectionClaim
class_uri: hc:CollectionCountClaim
description: Number of items in collection.
broad_mappings:
- skos:Concept
BeeldbankTotalPhotosClaim:
is_a: CollectionClaimType
is_a: CollectionClaim
class_uri: hc:BeeldbankTotalPhotosClaim
description: Total photos in image bank (beeldbank).
broad_mappings:
- skos:Concept
BeeldbankDescribedPhotosClaim:
is_a: CollectionClaimType
is_a: CollectionClaim
class_uri: hc:BeeldbankDescribedPhotosClaim
description: Number of described photos in image bank.
broad_mappings:
- skos:Concept
OldestMapClaim:
is_a: CollectionClaimType
is_a: CollectionClaim
class_uri: hc:OldestMapClaim
description: Reference to oldest map in collection.
OrganizationalClaimType:
broad_mappings:
- skos:Concept
OrganizationalClaim:
is_a: ClaimType
class_uri: hc:OrganizationalClaimType
class_uri: hc:OrganizationalClaim
description: 'Claim types for organizational structure and legal information.
Includes founding, identifiers, and legal form.
@ -256,36 +308,50 @@ classes:
'
comments:
- 'Expected locations: about page, footer, structured data'
broad_mappings:
- skos:Concept
FoundingDateClaim:
is_a: OrganizationalClaimType
is_a: OrganizationalClaim
class_uri: hc:FoundingDateClaim
description: When organization was founded.
broad_mappings:
- skos:Concept
FoundedClaim:
is_a: OrganizationalClaimType
is_a: OrganizationalClaim
class_uri: hc:FoundedClaim
description: 'Founding year or date.
Alternative format to founding_date.
'
broad_mappings:
- skos:Concept
KvkNumberClaim:
is_a: OrganizationalClaimType
is_a: OrganizationalClaim
class_uri: hc:KvkNumberClaim
description: Dutch Chamber of Commerce number.
broad_mappings:
- skos:Concept
IsilCodeClaim:
is_a: OrganizationalClaimType
is_a: OrganizationalClaim
class_uri: hc:IsilCodeClaim
description: ISIL identifier.
broad_mappings:
- skos:Concept
WikidataIdClaim:
is_a: OrganizationalClaimType
is_a: OrganizationalClaim
class_uri: hc:WikidataIdClaim
description: Wikidata Q-number.
broad_mappings:
- skos:Concept
ParentOrganizationClaim:
is_a: OrganizationalClaimType
is_a: OrganizationalClaim
class_uri: hc:ParentOrganizationClaim
description: Parent organization reference.
broad_mappings:
- skos:Concept
LegalFormClaim:
is_a: OrganizationalClaimType
is_a: OrganizationalClaim
class_uri: hc:LegalFormClaim
description: 'Legal form/structure of the organization.
@ -294,8 +360,10 @@ classes:
English: foundation, association, LLC, corporation.
'
broad_mappings:
- skos:Concept
GeographicScopeClaim:
is_a: OrganizationalClaimType
is_a: OrganizationalClaim
class_uri: hc:GeographicScopeClaim
description: 'Geographic area served by the organization.
@ -304,13 +372,17 @@ classes:
Specific areas: gemeente, provincie, regio.
'
broad_mappings:
- skos:Concept
CommitteeClaim:
is_a: OrganizationalClaimType
is_a: OrganizationalClaim
class_uri: hc:CommitteeClaim
description: Committee or board member information.
DocumentClaimType:
broad_mappings:
- skos:Concept
DocumentClaim:
is_a: ClaimType
class_uri: hc:DocumentClaimType
class_uri: hc:DocumentClaim
description: 'Claim types for organizational documents.
Includes reports, policies, and financial statements.
@ -318,8 +390,10 @@ classes:
'
comments:
- 'Expected locations: /over-ons/, /organisatie/, /documenten/'
broad_mappings:
- skos:Concept
AnnualReportUrlClaim:
is_a: DocumentClaimType
is_a: DocumentClaim
class_uri: hc:AnnualReportUrlClaim
description: 'Link to annual report PDF (jaarverslag).
@ -330,8 +404,10 @@ classes:
English: annual report.
'
broad_mappings:
- skos:Concept
FinancialStatementUrlClaim:
is_a: DocumentClaimType
is_a: DocumentClaim
class_uri: hc:FinancialStatementUrlClaim
description: 'Link to annual financial statement document (jaarstukken, jaarrekening).
@ -342,8 +418,10 @@ classes:
English: financial statements, annual accounts.
'
broad_mappings:
- skos:Concept
AnbiPublicationUrlClaim:
is_a: DocumentClaimType
is_a: DocumentClaim
class_uri: hc:AnbiPublicationUrlClaim
description: 'ANBI publication link (Dutch charity tax status requirement).
@ -354,8 +432,10 @@ classes:
Expected in: footer, /anbi/, /over-ons/.
'
broad_mappings:
- skos:Concept
PolicyDocumentUrlClaim:
is_a: DocumentClaimType
is_a: DocumentClaim
class_uri: hc:PolicyDocumentUrlClaim
description: 'Multi-year policy document link (meerjarenbeleid, beleidsplan).
@ -364,8 +444,10 @@ classes:
English: multi-year policy, strategic plan.
'
broad_mappings:
- skos:Concept
FinancialDocumentYearClaim:
is_a: DocumentClaimType
is_a: DocumentClaim
class_uri: hc:FinancialDocumentYearClaim
description: 'Fiscal year for a financial document (extracted from filename/context).
@ -374,21 +456,29 @@ classes:
Format: YYYY (e.g., 2024).
'
broad_mappings:
- skos:Concept
PublicationsUrlClaim:
is_a: DocumentClaimType
is_a: DocumentClaim
class_uri: hc:PublicationsUrlClaim
description: URL to publications page.
broad_mappings:
- skos:Concept
JournalNameClaim:
is_a: DocumentClaimType
is_a: DocumentClaim
class_uri: hc:JournalNameClaim
description: Name of journal or periodical published.
broad_mappings:
- skos:Concept
DonationUrlClaim:
is_a: DocumentClaimType
is_a: DocumentClaim
class_uri: hc:DonationUrlClaim
description: URL for donation/support page.
GeographicClaimType:
broad_mappings:
- skos:Concept
GeographicClaim:
is_a: ClaimType
class_uri: hc:GeographicClaimType
class_uri: hc:GeographicClaim
description: 'Claim types for geographic/address components.
More granular than AddressClaim.
@ -396,33 +486,45 @@ classes:
'
comments:
- 'Expected locations: contact page, footer, structured data'
broad_mappings:
- skos:Concept
StreetAddressClaim:
is_a: GeographicClaimType
is_a: GeographicClaim
class_uri: hc:StreetAddressClaim
description: Street address (straatnaam + huisnummer).
broad_mappings:
- skos:Concept
PostalCodeClaim:
is_a: GeographicClaimType
is_a: GeographicClaim
class_uri: hc:PostalCodeClaim
description: 'Postal/ZIP code.
Dutch: postcode (e.g., 1234 AB).
'
broad_mappings:
- skos:Concept
CityClaim:
is_a: GeographicClaimType
is_a: GeographicClaim
class_uri: hc:CityClaim
description: City or municipality name.
broad_mappings:
- skos:Concept
MunicipalityClaim:
is_a: GeographicClaimType
is_a: GeographicClaim
class_uri: hc:MunicipalityClaim
description: Municipality/gemeente name.
broad_mappings:
- skos:Concept
ProvinceClaim:
is_a: GeographicClaimType
is_a: GeographicClaim
class_uri: hc:ProvinceClaim
description: Province or state.
ArchivalClaimType:
broad_mappings:
- skos:Concept
ArchivalClaim:
is_a: ClaimType
class_uri: hc:ArchivalClaimType
class_uri: hc:ArchivalClaim
description: 'Claim types specific to archival holdings.
Includes archive and image bank (beeldbank) claims.
@ -430,31 +532,45 @@ classes:
'
comments:
- Dutch-specific archival terminology
broad_mappings:
- skos:Concept
ArchiefDescriptionClaim:
is_a: ArchivalClaimType
is_a: ArchivalClaim
class_uri: hc:ArchiefDescriptionClaim
description: Description of archive/archief holdings.
broad_mappings:
- skos:Concept
ArchiefUrlClaim:
is_a: ArchivalClaimType
is_a: ArchivalClaim
class_uri: hc:ArchiefUrlClaim
description: URL to archive/archief section.
broad_mappings:
- skos:Concept
BeeldbankDescriptionClaim:
is_a: ArchivalClaimType
is_a: ArchivalClaim
class_uri: hc:BeeldbankDescriptionClaim
description: Description of image bank/beeldbank.
broad_mappings:
- skos:Concept
BeeldbankUrlClaim:
is_a: ArchivalClaimType
is_a: ArchivalClaim
class_uri: hc:BeeldbankUrlClaim
description: URL to image bank/beeldbank section.
EventClaimType:
broad_mappings:
- skos:Concept
EventClaim:
is_a: ClaimType
class_uri: hc:EventClaimType
class_uri: hc:EventClaim
description: 'Claim types for event information.
Includes upcoming events and activities.
'
broad_mappings:
- skos:Concept
UpcomingEventClaim:
is_a: EventClaimType
is_a: EventClaim
class_uri: hc:UpcomingEventClaim
description: Information about upcoming event.
broad_mappings:
- skos:Concept

View file

@ -13,46 +13,64 @@ classes:
IndeterminateStatus:
is_a: ClassificationStatusType
class_uri: hc:IndeterminateStatus
description: Classification cannot be determined from available evidence. Used when research has been attempted but evidence is insufficient.
description: Classification cannot be determined from available evidence. Used
when research has been attempted but evidence is insufficient.
annotations:
skos:prefLabel: Indeterminate
skos:definition: Type cannot be determined from available evidence
specificity_score: 0.1
specificity_rationale: Generic utility class/slot created during migration
custodian_types: "['*']"
custodian_types: '[''*'']'
custodian_types_rationale: Universal utility concept
broad_mappings:
- skos:Concept
AmbiguousStatus:
is_a: ClassificationStatusType
class_uri: hc:AmbiguousStatus
description: Conflicting evidence about institutional function. Multiple sources describe the institution differently (e.g., museum vs archive).
description: Conflicting evidence about institutional function. Multiple sources
describe the institution differently (e.g., museum vs archive).
annotations:
skos:prefLabel: Ambiguous
skos:definition: Conflicting evidence about institutional function
broad_mappings:
- skos:Concept
TransitionalStatus:
is_a: ClassificationStatusType
class_uri: hc:TransitionalStatus
description: Institution is changing type, outcome not yet clear. Used during mergers, reorganizations, or transformations.
description: Institution is changing type, outcome not yet clear. Used during
mergers, reorganizations, or transformations.
annotations:
skos:prefLabel: Transitional
skos:definition: Institution changing type, outcome unclear
broad_mappings:
- skos:Concept
NovelStatus:
is_a: ClassificationStatusType
class_uri: hc:NovelStatus
description: Institution doesn't fit existing taxonomy categories. May represent new forms of heritage custodianship not yet modeled.
description: Institution doesn't fit existing taxonomy categories. May represent
new forms of heritage custodianship not yet modeled.
annotations:
skos:prefLabel: Novel
skos:definition: Does not fit existing taxonomy categories
broad_mappings:
- skos:Concept
UnderReviewStatus:
is_a: ClassificationStatusType
class_uri: hc:UnderReviewStatus
description: Classification is actively being researched. Expert review or additional research in progress.
description: Classification is actively being researched. Expert review or additional
research in progress.
annotations:
skos:prefLabel: Under Review
skos:definition: Classification being researched
broad_mappings:
- skos:Concept
PendingVerificationStatus:
is_a: ClassificationStatusType
class_uri: hc:PendingVerificationStatus
description: Type is suspected but needs confirmation. Initial assessment made but awaiting verification.
description: Type is suspected but needs confirmation. Initial assessment made
but awaiting verification.
annotations:
skos:prefLabel: Pending Verification
skos:definition: Type suspected but needs confirmation
broad_mappings:
- skos:Concept

View file

@ -46,7 +46,9 @@ classes:
ClimateDataCollection:
is_a: ClimateArchiveRecordSetType
class_uri: rico:RecordSetType
description: "A rico:RecordSetType for Historical climate records.\n\n**RiC-O Alignment**:\nThis class is a specialized rico:RecordSetType following the collection \norganizational principle as defined by rico-rst:Collection.\n"
description: "A rico:RecordSetType for Historical climate records.\n\n**RiC-O\
\ Alignment**:\nThis class is a specialized rico:RecordSetType following the\
\ collection \norganizational principle as defined by rico-rst:Collection.\n"
exact_mappings:
- rico:RecordSetType
related_mappings:
@ -77,16 +79,22 @@ classes:
record_holder:
equals_string: ClimateArchive
record_holder_note:
equals_string: This RecordSetType is typically held by ClimateArchive custodians. Inverse of rico:isOrWasHolderOf.
equals_string: This RecordSetType is typically held by ClimateArchive custodians.
Inverse of rico:isOrWasHolderOf.
annotations:
specificity_score: 0.1
specificity_rationale: Generic utility class/slot created during migration
custodian_types: "['*']"
custodian_types: '[''*'']'
custodian_types_rationale: Universal utility concept
broad_mappings:
- rico:RecordSetType
- skos:Concept
MeteorologicalObservationSeries:
is_a: ClimateArchiveRecordSetType
class_uri: rico:RecordSetType
description: "A rico:RecordSetType for Weather observation records.\n\n**RiC-O Alignment**:\nThis class is a specialized rico:RecordSetType following the series \norganizational principle as defined by rico-rst:Series.\n"
description: "A rico:RecordSetType for Weather observation records.\n\n**RiC-O\
\ Alignment**:\nThis class is a specialized rico:RecordSetType following the\
\ series \norganizational principle as defined by rico-rst:Series.\n"
exact_mappings:
- rico:RecordSetType
related_mappings:
@ -117,4 +125,8 @@ classes:
record_holder:
equals_string: ClimateArchive
record_holder_note:
equals_string: This RecordSetType is typically held by ClimateArchive custodians. Inverse of rico:isOrWasHolderOf.
equals_string: This RecordSetType is typically held by ClimateArchive custodians.
Inverse of rico:isOrWasHolderOf.
broad_mappings:
- rico:RecordSetType
- skos:Concept

View file

@ -14,24 +14,36 @@ classes:
HeatedClimateControl:
is_a: ClimateControlType
class_uri: hc:HeatedClimateControl
description: "Heating-only climate control - prevents freezing, no cooling or humidity control.\n\n**TYPICAL USE CASES**:\n- Warehouses in cold climates\n- Unheated outbuildings needing freeze protection\n- Basic storage areas without preservation requirements\n\n**CAPABILITIES**:\n- Temperature: Above freezing (typically 10-15\xB0C minimum)\n- Humidity: Uncontrolled\n- Air quality: Uncontrolled\n"
description: "Heating-only climate control - prevents freezing, no cooling or\
\ humidity control.\n\n**TYPICAL USE CASES**:\n- Warehouses in cold climates\n\
- Unheated outbuildings needing freeze protection\n- Basic storage areas without\
\ preservation requirements\n\n**CAPABILITIES**:\n- Temperature: Above freezing\
\ (typically 10-15\xB0C minimum)\n- Humidity: Uncontrolled\n- Air quality: Uncontrolled\n"
annotations:
climate_control_code: HEATED
preservation_suitability: Low - suitable for non-sensitive materials only
specificity_score: 0.1
specificity_rationale: Generic utility class/slot created during migration
custodian_types: "['*']"
custodian_types: '[''*'']'
custodian_types_rationale: Universal utility concept
examples:
- value:
has_or_had_label: HEATED
has_or_had_description:
description_text: Heating only to prevent freezing. No humidity or cooling control.
description_text: Heating only to prevent freezing. No humidity or cooling
control.
description: Basic heating type
broad_mappings:
- skos:Concept
HVACClimateControl:
is_a: ClimateControlType
class_uri: hc:HVACClimateControl
description: "Full HVAC - heating, ventilation, and air conditioning with temperature\nand typically humidity control.\n\n**TYPICAL USE CASES**:\n- Museum collection storage\n- Archive repositories\n- Special collections libraries\n- Conservation labs\n\n**CAPABILITIES**:\n- Temperature: Precise control (typically \xB11-2\xB0C)\n- Humidity: Controlled (typically \xB13-5% RH)\n- Air quality: Filtered, controlled air changes\n"
description: "Full HVAC - heating, ventilation, and air conditioning with temperature\n\
and typically humidity control.\n\n**TYPICAL USE CASES**:\n- Museum collection\
\ storage\n- Archive repositories\n- Special collections libraries\n- Conservation\
\ labs\n\n**CAPABILITIES**:\n- Temperature: Precise control (typically \xB1\
1-2\xB0C)\n- Humidity: Controlled (typically \xB13-5% RH)\n- Air quality: Filtered,\
\ controlled air changes\n"
annotations:
climate_control_code: HVAC
preservation_suitability: High - suitable for sensitive collections
@ -39,8 +51,11 @@ classes:
- value:
has_or_had_label: HVAC
has_or_had_description:
description_text: Full heating, ventilation, and air conditioning with temperature and humidity control.
description_text: Full heating, ventilation, and air conditioning with temperature
and humidity control.
description: Full HVAC type
broad_mappings:
- skos:Concept
DehumidifiedClimateControl:
is_a: ClimateControlType
class_uri: hc:DehumidifiedClimateControl
@ -76,6 +91,8 @@ classes:
has_or_had_description:
description_text: Humidity control only - maintains RH below target threshold.
description: Dehumidification type
broad_mappings:
- skos:Concept
CooledClimateControl:
is_a: ClimateControlType
class_uri: hc:CooledClimateControl
@ -107,8 +124,11 @@ classes:
- value:
has_or_had_label: COOLED
has_or_had_description:
description_text: Cooling only - maintains temperature below ambient in warm climates.
description_text: Cooling only - maintains temperature below ambient in
warm climates.
description: Cooling-only type
broad_mappings:
- skos:Concept
PassiveClimateControl:
is_a: ClimateControlType
class_uri: hc:PassiveClimateControl
@ -151,8 +171,11 @@ classes:
- value:
has_or_had_label: PASSIVE
has_or_had_description:
description_text: Passive environmental control through building design, thermal mass, and natural ventilation.
description_text: Passive environmental control through building design,
thermal mass, and natural ventilation.
description: Passive control type
broad_mappings:
- skos:Concept
NoClimateControl:
is_a: ClimateControlType
class_uri: hc:NoClimateControl
@ -189,5 +212,8 @@ classes:
- value:
has_or_had_label: NONE
has_or_had_description:
description_text: No climate control - ambient environmental conditions only.
description_text: No climate control - ambient environmental conditions
only.
description: No climate control type
broad_mappings:
- skos:Concept

View file

@ -46,7 +46,9 @@ classes:
CollectedMaterialsFonds:
is_a: CollectingArchivesRecordSetType
class_uri: rico:RecordSetType
description: "A rico:RecordSetType for Collected/acquired materials.\n\n**RiC-O Alignment**:\nThis class is a specialized rico:RecordSetType following the fonds \norganizational principle as defined by rico-rst:Fonds.\n"
description: "A rico:RecordSetType for Collected/acquired materials.\n\n**RiC-O\
\ Alignment**:\nThis class is a specialized rico:RecordSetType following the\
\ fonds \norganizational principle as defined by rico-rst:Fonds.\n"
exact_mappings:
- rico:RecordSetType
related_mappings:
@ -77,16 +79,22 @@ classes:
record_holder:
equals_string: CollectingArchives
record_holder_note:
equals_string: This RecordSetType is typically held by CollectingArchives custodians. Inverse of rico:isOrWasHolderOf.
equals_string: This RecordSetType is typically held by CollectingArchives
custodians. Inverse of rico:isOrWasHolderOf.
annotations:
specificity_score: 0.1
specificity_rationale: Generic utility class/slot created during migration
custodian_types: "['*']"
custodian_types: '[''*'']'
custodian_types_rationale: Universal utility concept
broad_mappings:
- rico:RecordSetType
- skos:Concept
DonatedPapersCollection:
is_a: CollectingArchivesRecordSetType
class_uri: rico:RecordSetType
description: "A rico:RecordSetType for Donated papers.\n\n**RiC-O Alignment**:\nThis class is a specialized rico:RecordSetType following the collection \norganizational principle as defined by rico-rst:Collection.\n"
description: "A rico:RecordSetType for Donated papers.\n\n**RiC-O Alignment**:\n\
This class is a specialized rico:RecordSetType following the collection \norganizational\
\ principle as defined by rico-rst:Collection.\n"
exact_mappings:
- rico:RecordSetType
related_mappings:
@ -117,4 +125,8 @@ classes:
record_holder:
equals_string: CollectingArchives
record_holder_note:
equals_string: This RecordSetType is typically held by CollectingArchives custodians. Inverse of rico:isOrWasHolderOf.
equals_string: This RecordSetType is typically held by CollectingArchives
custodians. Inverse of rico:isOrWasHolderOf.
broad_mappings:
- rico:RecordSetType
- skos:Concept

View file

@ -48,7 +48,7 @@ classes:
'
abstract: true
attributes:
type_label:
has_or_had_label:
range: string
required: true
slot_uri: skos:prefLabel

View file

@ -20,13 +20,15 @@ classes:
'
attributes:
type_label:
has_or_had_label:
ifabsent: string(Archival)
annotations:
specificity_score: 0.1
specificity_rationale: Generic utility class/slot created during migration
custodian_types: "['*']"
custodian_types: '[''*'']'
custodian_types_rationale: Universal utility concept
broad_mappings:
- skos:Concept
LibraryCollectionContent:
is_a: CollectionContentType
class_uri: hc:LibraryCollectionContent
@ -36,8 +38,10 @@ classes:
'
attributes:
type_label:
has_or_had_label:
ifabsent: string(Library)
broad_mappings:
- skos:Concept
LiturgicalCollectionContent:
is_a: CollectionContentType
class_uri: hc:LiturgicalCollectionContent
@ -47,8 +51,10 @@ classes:
'
attributes:
type_label:
has_or_had_label:
ifabsent: string(Liturgical)
broad_mappings:
- skos:Concept
ArtCollectionContent:
is_a: CollectionContentType
class_uri: hc:ArtCollectionContent
@ -58,8 +64,10 @@ classes:
'
attributes:
type_label:
has_or_had_label:
ifabsent: string(Art)
broad_mappings:
- skos:Concept
ArchitecturalCollectionContent:
is_a: CollectionContentType
class_uri: hc:ArchitecturalCollectionContent
@ -69,8 +77,10 @@ classes:
'
attributes:
type_label:
has_or_had_label:
ifabsent: string(Architectural)
broad_mappings:
- skos:Concept
RelicsCollectionContent:
is_a: CollectionContentType
class_uri: hc:RelicsCollectionContent
@ -80,8 +90,10 @@ classes:
'
attributes:
type_label:
has_or_had_label:
ifabsent: string(Relics)
broad_mappings:
- skos:Concept
MusicalCollectionContent:
is_a: CollectionContentType
class_uri: hc:MusicalCollectionContent
@ -91,8 +103,10 @@ classes:
'
attributes:
type_label:
has_or_had_label:
ifabsent: string(Musical)
broad_mappings:
- skos:Concept
EphemeraCollectionContent:
is_a: CollectionContentType
class_uri: hc:EphemeraCollectionContent
@ -102,8 +116,10 @@ classes:
'
attributes:
type_label:
has_or_had_label:
ifabsent: string(Ephemera)
broad_mappings:
- skos:Concept
PhotographicCollectionContent:
is_a: CollectionContentType
class_uri: hc:PhotographicCollectionContent
@ -113,8 +129,10 @@ classes:
'
attributes:
type_label:
has_or_had_label:
ifabsent: string(Photographic)
broad_mappings:
- skos:Concept
AudiovisualCollectionContent:
is_a: CollectionContentType
class_uri: hc:AudiovisualCollectionContent
@ -124,8 +142,10 @@ classes:
'
attributes:
type_label:
has_or_had_label:
ifabsent: string(Audiovisual)
broad_mappings:
- skos:Concept
TextileCollectionContent:
is_a: CollectionContentType
class_uri: hc:TextileCollectionContent
@ -135,8 +155,10 @@ classes:
'
attributes:
type_label:
has_or_had_label:
ifabsent: string(Textile)
broad_mappings:
- skos:Concept
NaturalHistoryCollectionContent:
is_a: CollectionContentType
class_uri: hc:NaturalHistoryCollectionContent
@ -146,8 +168,10 @@ classes:
'
attributes:
type_label:
has_or_had_label:
ifabsent: string(Natural History)
broad_mappings:
- skos:Concept
ScientificCollectionContent:
is_a: CollectionContentType
class_uri: hc:ScientificCollectionContent
@ -157,8 +181,10 @@ classes:
'
attributes:
type_label:
has_or_had_label:
ifabsent: string(Scientific)
broad_mappings:
- skos:Concept
DigitalCollectionContent:
is_a: CollectionContentType
class_uri: hc:DigitalCollectionContent
@ -168,8 +194,10 @@ classes:
'
attributes:
type_label:
has_or_had_label:
ifabsent: string(Digital)
broad_mappings:
- skos:Concept
comments:
- Created per slot_fixes.yaml migration (2026-01-19)
- 'RULE 0b: Concrete subclasses of CollectionContentType'

View file

@ -40,8 +40,8 @@ classes:
class_uri: rico:RecordSetType
description: "Classification type for specific Collection instances.\n\nProvides semantic classification distinguishing different kinds of heritage collections:\n- Archival record set types (fonds, series, file, item)\n- Library collection types (special collection, personal papers)\n- Museum collection types (named collection, bequest)\n\n1. **RiC-O (Records in Contexts)**:\n - `rico:RecordSetType` - \"A record set type categorizes record sets according\n to the way they were created, assembled, or used.\"\n - Standard values: Fonds, Series, File, Collection, Item\n\n2. **BIBFRAME**:\n - bf:Collection for library special collections\n - bf:Archival for archival materials\n\n3. **SKOS**:\n - skos:Concept for classification term\n - Hierarchical relationships via skos:broader/narrower\n\n**COLLECTION TYPE TAXONOMY**:\n\n```\nCollectionType (root)\n \u2502\n \u251C\u2500\u2500 ArchivalRecordSetType\n \u2502 \u251C\u2500\u2500 FONDS (Q1643722) - Provenance-based archival\
\ unit\n \u2502 \u251C\u2500\u2500 SERIES - Group within fonds\n \u2502 \u251C\u2500\u2500 SUB_SERIES - Subdivision of series\n \u2502 \u251C\u2500\u2500 FILE - Individual folder/dossier\n \u2502 \u2514\u2500\u2500 ITEM - Single document\n \u2502\n \u251C\u2500\u2500 LibraryCollectionType\n \u2502 \u251C\u2500\u2500 SPECIAL_COLLECTION - Named special collection\n \u2502 \u251C\u2500\u2500 PERSONAL_PAPERS - Papers of an individual\n \u2502 \u251C\u2500\u2500 INSTITUTIONAL_RECORDS - Organizational records\n \u2502 \u2514\u2500\u2500 REFERENCE_COLLECTION - Reference materials\n \u2502\n \u251C\u2500\u2500 MuseumCollectionType\n \u2502 \u251C\u2500\u2500 NAMED_COLLECTION - Named collection (donor, subject)\n \u2502 \u251C\u2500\u2500 STUDY_COLLECTION - Research/study materials\n \u2502 \u251C\u2500\u2500 PERMANENT_COLLECTION - Core permanent holdings\n \u2502 \u2514\u2500\u2500 LOAN_COLLECTION - Long-term loans\n \u2502\n\
\ \u2514\u2500\u2500 AssembledCollectionType\n \u251C\u2500\u2500 ARTIFICIAL_COLLECTION - Non-provenance assembled\n \u251C\u2500\u2500 THEMATIC_COLLECTION - Subject-based grouping\n \u2514\u2500\u2500 REFERENCE_COLLECTION - Reference aggregation\n```\n\n**RICO RECORD SET TYPE ALIGNMENT**:\n\n| CollectionType | RiC-O Type | Description |\n|----------------|------------|-------------|\n| FONDS | rico:Fonds | Provenance-based archival unit |\n| SERIES | rico:Series | Subdivision of fonds |\n| FILE | rico:File | Individual file/dossier |\n| ITEM | rico:Item | Single record |\n| ARTIFICIAL_COLLECTION | rico:Collection | Non-provenance assemblage |\n\n**USE CASES**:\n\n1. **Archival Classification**:\n ```yaml\n CollectionType:\n type_id: \"hc:collection-type/fonds\"\n type_name: \"Fonds\"\n record_equivalent: \"rico:Fonds\"\n description: \"Provenance-based archival unit\"\n ```\n\n2. **Library Special Collection**:\n ```yaml\n CollectionType:\n\
\ type_id: \"hc:collection-type/special-collection\"\n type_name: \"Special Collection\"\n # BIBFRAME mapping at class level via close_mappings: [bf:CollectionType]\n description: \"Named library special collection\"\n ```\n\n3. **Museum Named Collection**:\n ```yaml\n CollectionType:\n type_id: \"hc:collection-type/named-collection\"\n type_name: \"Named Collection\"\n description: \"Collection named for donor or subject\"\n ```\n"
\ \u2514\u2500\u2500 AssembledCollectionType\n \u251C\u2500\u2500 ARTIFICIAL_COLLECTION - Non-provenance assembled\n \u251C\u2500\u2500 THEMATIC_COLLECTION - Subject-based grouping\n \u2514\u2500\u2500 REFERENCE_COLLECTION - Reference aggregation\n```\n\n**RICO RECORD SET TYPE ALIGNMENT**:\n\n| CollectionType | RiC-O Type | Description |\n|----------------|------------|-------------|\n| FONDS | rico:Fonds | Provenance-based archival unit |\n| SERIES | rico:Series | Subdivision of fonds |\n| FILE | rico:File | Individual file/dossier |\n| ITEM | rico:Item | Single record |\n| ARTIFICIAL_COLLECTION | rico:Collection | Non-provenance assemblage |\n\n**USE CASES**:\n\n1. **Archival Classification**:\n ```yaml\n CollectionType:\n has_or_had_identifier: \"hc:collection-type/fonds\"\n type_name: \"Fonds\"\n record_equivalent: \"rico:Fonds\"\n description: \"Provenance-based archival unit\"\n ```\n\n2. **Library Special Collection**:\n ```yaml\n CollectionType:\n\
\ has_or_had_identifier: \"hc:collection-type/special-collection\"\n type_name: \"Special Collection\"\n # BIBFRAME mapping at class level via close_mappings: [bf:CollectionType]\n description: \"Named library special collection\"\n ```\n\n3. **Museum Named Collection**:\n ```yaml\n CollectionType:\n has_or_had_identifier: \"hc:collection-type/named-collection\"\n type_name: \"Named Collection\"\n description: \"Collection named for donor or subject\"\n ```\n"
exact_mappings:
- rico:RecordSetType
- skos:Concept

View file

@ -46,7 +46,9 @@ classes:
ComarcalAdministrationFonds:
is_a: ComarcalArchiveRecordSetType
class_uri: rico:RecordSetType
description: "A rico:RecordSetType for Comarca (county) administrative records (Spain).\n\n**RiC-O Alignment**:\nThis class is a specialized rico:RecordSetType following the fonds \norganizational principle as defined by rico-rst:Fonds.\n"
description: "A rico:RecordSetType for Comarca (county) administrative records\
\ (Spain).\n\n**RiC-O Alignment**:\nThis class is a specialized rico:RecordSetType\
\ following the fonds \norganizational principle as defined by rico-rst:Fonds.\n"
exact_mappings:
- rico:RecordSetType
related_mappings:
@ -77,16 +79,22 @@ classes:
record_holder:
equals_string: ComarcalArchive
record_holder_note:
equals_string: This RecordSetType is typically held by ComarcalArchive custodians. Inverse of rico:isOrWasHolderOf.
equals_string: This RecordSetType is typically held by ComarcalArchive custodians.
Inverse of rico:isOrWasHolderOf.
annotations:
specificity_score: 0.1
specificity_rationale: Generic utility class/slot created during migration
custodian_types: "['*']"
custodian_types: '[''*'']'
custodian_types_rationale: Universal utility concept
broad_mappings:
- rico:RecordSetType
- skos:Concept
ComarcalHistoryCollection:
is_a: ComarcalArchiveRecordSetType
class_uri: rico:RecordSetType
description: "A rico:RecordSetType for Regional historical documentation.\n\n**RiC-O Alignment**:\nThis class is a specialized rico:RecordSetType following the collection \norganizational principle as defined by rico-rst:Collection.\n"
description: "A rico:RecordSetType for Regional historical documentation.\n\n\
**RiC-O Alignment**:\nThis class is a specialized rico:RecordSetType following\
\ the collection \norganizational principle as defined by rico-rst:Collection.\n"
exact_mappings:
- rico:RecordSetType
related_mappings:
@ -117,4 +125,8 @@ classes:
record_holder:
equals_string: ComarcalArchive
record_holder_note:
equals_string: This RecordSetType is typically held by ComarcalArchive custodians. Inverse of rico:isOrWasHolderOf.
equals_string: This RecordSetType is typically held by ComarcalArchive custodians.
Inverse of rico:isOrWasHolderOf.
broad_mappings:
- rico:RecordSetType
- skos:Concept

View file

@ -1,160 +1,164 @@
# CommercialCustodianTypes class
# Type/Types naming pattern per Rule 0b
#
# Created per slot_fixes.yaml revision for: commercial_custodian_subtype
# Migration date: 2026-01-22
# Rule reference: Rule 53, Rule 0b
id: https://nde.nl/ontology/hc/class/CommercialCustodianTypes
name: commercial_custodian_types_class
title: Commercial Custodian Types Class
prefixes:
linkml: https://w3id.org/linkml/
hc: https://nde.nl/ontology/hc/
skos: http://www.w3.org/2004/02/skos/core#
schema: http://schema.org/
wd: http://www.wikidata.org/entity/
imports:
- linkml:types
- ../metadata
- ../slots/has_or_had_label
- ../slots/has_or_had_identifier
- ../enums/CommercialCustodianTypeEnum
- linkml:types
- ../metadata
- ../slots/has_or_had_label
- ../slots/has_or_had_identifier
- ../enums/CommercialCustodianTypeEnum
default_prefix: hc
classes:
CommercialCustodianTypes:
class_uri: skos:Collection
description: |
Collection of commercial custodian subtypes from the 295-type Wikidata taxonomy.
description: 'Collection of commercial custodian subtypes from the 295-type Wikidata
taxonomy.
**PURPOSE**:
Structured representation of commercial heritage custodian subtypes,
replacing the simple enum-valued slot with a class that can hold
multiple types with additional metadata.
**DESIGN RATIONALE** (Rule 0b):
Follows the Type/Types naming pattern:
- `CommercialCustodianType` (singular) - would be abstract base
- `CommercialCustodianTypes` (plural) - collection of concrete subtypes
Created per slot_fixes.yaml migration from `commercial_custodian_subtype`
enum slot to structured `includes_or_included` + `CommercialCustodianTypes`.
**COMMERCIAL CUSTODIAN CATEGORIES**:
| Category | Examples |
|----------|----------|
| Auction houses | Christie's, Sotheby's, Bonhams |
| Auction houses | Christie''s, Sotheby''s, Bonhams |
| Art dealers | Gagosian, David Zwirner |
| Corporate archives | Ford Motor Archives, IBM Archives |
| Brand museums | Heineken Experience, Guinness Storehouse |
| Company museums | Mercedes-Benz Museum, BMW Welt |
**WIKIDATA INTEGRATION**:
Each subtype links to a Wikidata Q-number describing the specific
commercial organization type, enabling Linked Open Data queries.
'
exact_mappings:
- skos:Collection
close_mappings:
- skos:ConceptScheme
slots:
- has_or_had_label
- has_or_had_identifier
attributes:
subtype_code:
description: |
Code for the commercial custodian subtype from CommercialCustodianTypeEnum.
description: 'Code for the commercial custodian subtype from CommercialCustodianTypeEnum.
'
range: CommercialCustodianTypeEnum
required: false
multivalued: true
examples:
- value: "AUCTION_HOUSE"
- value: "ART_DEALER"
- value: "CORPORATE_ARCHIVE"
- value: AUCTION_HOUSE
- value: ART_DEALER
- value: CORPORATE_ARCHIVE
wikidata_qid:
description: |
Wikidata Q-number for this commercial custodian type.
description: 'Wikidata Q-number for this commercial custodian type.
'
range: uriorcurie
required: false
examples:
- value: "wd:Q1078426"
- value: wd:Q1078426
description: Auction house (Q1078426)
- value: "wd:Q17537576"
- value: wd:Q17537576
description: Corporate archive (Q17537576)
subtype_label:
description: |
Human-readable label for this subtype.
description: 'Human-readable label for this subtype.
'
range: string
required: false
examples:
- value: "Auction House"
- value: "Corporate Archive"
- value: "Brand Heritage Center"
- value: Auction House
- value: Corporate Archive
- value: Brand Heritage Center
slot_usage:
has_or_had_label:
description: |
Display label for the commercial custodian type collection.
examples:
- value: "Auction Houses and Art Dealers"
description: 'Display label for the commercial custodian type collection.
'
examples:
- value: Auction Houses and Art Dealers
has_or_had_identifier:
description: |
Wikidata or other identifier for this type.
description: 'Wikidata or other identifier for this type.
'
examples:
- value:
identifier_scheme: wikidata
identifier_value: "Q1078426"
identifier_value: Q1078426
examples:
- value:
subtype_code:
- "AUCTION_HOUSE"
subtype_label: "Auction House"
wikidata_qid: "wd:Q1078426"
- AUCTION_HOUSE
subtype_label: Auction House
wikidata_qid: wd:Q1078426
description: Auction house type
- value:
subtype_code:
- "CORPORATE_ARCHIVE"
subtype_label: "Corporate Archive"
wikidata_qid: "wd:Q17537576"
- CORPORATE_ARCHIVE
subtype_label: Corporate Archive
wikidata_qid: wd:Q17537576
description: Corporate archive type
- value:
subtype_code:
- "ART_DEALER"
- "GALLERY"
subtype_label: "Art Dealer/Gallery"
- ART_DEALER
- GALLERY
subtype_label: Art Dealer/Gallery
description: Combined art dealer and gallery type
comments:
- Created 2026-01-22 from commercial_custodian_subtype migration (Rule 53)
- Follows Type/Types naming pattern (Rule 0b)
- Links to Wikidata taxonomy of 295 commercial custodian types
- Replaces simple enum slot with structured class
see_also:
- https://www.wikidata.org/wiki/Q1078426
- https://www.wikidata.org/wiki/Q17537576
annotations:
custodian_types: '["C"]'
custodian_types_rationale: >-
Specific to Commercial (C) custodian type classification.
specificity_score: "0.75"
specificity_rationale: >-
Fairly specific - applies only to commercial heritage contexts.
custodian_types_rationale: Specific to Commercial (C) custodian type classification.
specificity_score: '0.75'
specificity_rationale: Fairly specific - applies only to commercial heritage
contexts.
broad_mappings:
- skos:Concept

View file

@ -46,7 +46,9 @@ classes:
CommunityOrganizationFonds:
is_a: CommunityArchiveRecordSetType
class_uri: rico:RecordSetType
description: "A rico:RecordSetType for Community organization records.\n\n**RiC-O Alignment**:\nThis class is a specialized rico:RecordSetType following the fonds \norganizational principle as defined by rico-rst:Fonds.\n"
description: "A rico:RecordSetType for Community organization records.\n\n**RiC-O\
\ Alignment**:\nThis class is a specialized rico:RecordSetType following the\
\ fonds \norganizational principle as defined by rico-rst:Fonds.\n"
exact_mappings:
- rico:RecordSetType
related_mappings:
@ -77,16 +79,22 @@ classes:
record_holder:
equals_string: CommunityArchive
record_holder_note:
equals_string: This RecordSetType is typically held by CommunityArchive custodians. Inverse of rico:isOrWasHolderOf.
equals_string: This RecordSetType is typically held by CommunityArchive custodians.
Inverse of rico:isOrWasHolderOf.
annotations:
specificity_score: 0.1
specificity_rationale: Generic utility class/slot created during migration
custodian_types: "['*']"
custodian_types: '[''*'']'
custodian_types_rationale: Universal utility concept
broad_mappings:
- rico:RecordSetType
- skos:Concept
OralHistoryCollection:
is_a: CommunityArchiveRecordSetType
class_uri: rico:RecordSetType
description: "A rico:RecordSetType for Community oral histories.\n\n**RiC-O Alignment**:\nThis class is a specialized rico:RecordSetType following the collection \norganizational principle as defined by rico-rst:Collection.\n"
description: "A rico:RecordSetType for Community oral histories.\n\n**RiC-O Alignment**:\n\
This class is a specialized rico:RecordSetType following the collection \norganizational\
\ principle as defined by rico-rst:Collection.\n"
exact_mappings:
- rico:RecordSetType
related_mappings:
@ -117,11 +125,17 @@ classes:
record_holder:
equals_string: CommunityArchive
record_holder_note:
equals_string: This RecordSetType is typically held by CommunityArchive custodians. Inverse of rico:isOrWasHolderOf.
equals_string: This RecordSetType is typically held by CommunityArchive custodians.
Inverse of rico:isOrWasHolderOf.
broad_mappings:
- rico:RecordSetType
- skos:Concept
LocalEventDocumentation:
is_a: CommunityArchiveRecordSetType
class_uri: rico:RecordSetType
description: "A rico:RecordSetType for Local event documentation.\n\n**RiC-O Alignment**:\nThis class is a specialized rico:RecordSetType following the collection \norganizational principle as defined by rico-rst:Collection.\n"
description: "A rico:RecordSetType for Local event documentation.\n\n**RiC-O Alignment**:\n\
This class is a specialized rico:RecordSetType following the collection \norganizational\
\ principle as defined by rico-rst:Collection.\n"
exact_mappings:
- rico:RecordSetType
related_mappings:
@ -152,4 +166,8 @@ classes:
record_holder:
equals_string: CommunityArchive
record_holder_note:
equals_string: This RecordSetType is typically held by CommunityArchive custodians. Inverse of rico:isOrWasHolderOf.
equals_string: This RecordSetType is typically held by CommunityArchive custodians.
Inverse of rico:isOrWasHolderOf.
broad_mappings:
- rico:RecordSetType
- skos:Concept

View file

@ -56,8 +56,24 @@ classes:
CorporateGovernanceFonds:
is_a: CompanyArchiveRecordSetType
class_uri: rico:RecordSetType
description: "A rico:RecordSetType for corporate governance and executive records organized as a fonds.\n\n**Definition**:\nRecords created by corporate governing bodies (board of directors, shareholders, \nexecutive management) in the exercise of corporate governance and strategic \ndecision-making. Organized according to archival principles of provenance.\n\n**Typical Contents**:\n- Board of directors minutes and resolutions (Raad van Bestuur)\n- Supervisory board records (Raad van Commissarissen)\n- Shareholders meeting records (aandeelhoudersvergaderingen)\n- Executive committee records\n- Corporate strategy documents\n- Merger and acquisition records\n- Articles of incorporation and bylaws (statuten)\n- Stock certificates and ownership records\n\n**Legal Significance**:\nGovernance records have significant legal value for:\n- Corporate compliance\n- Due diligence in M&A\n- Shareholder disputes\n- Historical ownership verification\n\n**Retention Requirements**:\nMany governance records\
\ have mandatory retention periods (often 7+ years \nfor financial records, permanent for foundational documents).\n\n**RiC-O Alignment**:\nThis class is a specialized rico:RecordSetType. Records classified with this\ntype follow the fonds organizational principle as defined by rico-rst:Fonds\n(provenance-based organization with governance records forming the core fonds).\n"
description: "A rico:RecordSetType for corporate governance and executive records\
\ organized as a fonds.\n\n**Definition**:\nRecords created by corporate governing\
\ bodies (board of directors, shareholders, \nexecutive management) in the exercise\
\ of corporate governance and strategic \ndecision-making. Organized according\
\ to archival principles of provenance.\n\n**Typical Contents**:\n- Board of\
\ directors minutes and resolutions (Raad van Bestuur)\n- Supervisory board\
\ records (Raad van Commissarissen)\n- Shareholders meeting records (aandeelhoudersvergaderingen)\n\
- Executive committee records\n- Corporate strategy documents\n- Merger and\
\ acquisition records\n- Articles of incorporation and bylaws (statuten)\n-\
\ Stock certificates and ownership records\n\n**Legal Significance**:\nGovernance\
\ records have significant legal value for:\n- Corporate compliance\n- Due diligence\
\ in M&A\n- Shareholder disputes\n- Historical ownership verification\n\n**Retention\
\ Requirements**:\nMany governance records have mandatory retention periods\
\ (often 7+ years \nfor financial records, permanent for foundational documents).\n\
\n**RiC-O Alignment**:\nThis class is a specialized rico:RecordSetType. Records\
\ classified with this\ntype follow the fonds organizational principle as defined\
\ by rico-rst:Fonds\n(provenance-based organization with governance records\
\ forming the core fonds).\n"
structured_aliases:
- literal_form: "Unternehmensf\xFChrungsbestand"
in_language: de
@ -88,6 +104,8 @@ classes:
- rico-rst:Fonds
broad_mappings:
- wd:Q1643722
- rico:RecordSetType
- skos:Concept
close_mappings:
- skos:Concept
see_also:
@ -117,23 +135,43 @@ classes:
organizational_principle_uri:
equals_string: https://www.ica.org/standards/RiC/vocabularies/recordSetTypes#Fonds
record_note:
equals_string: This RecordSetType classifies record sets following the fonds principle as defined by rico-rst:Fonds. Governance records form the core archival fonds of company archives.
equals_string: This RecordSetType classifies record sets following the fonds
principle as defined by rico-rst:Fonds. Governance records form the core
archival fonds of company archives.
scope_include:
equals_string: '["board minutes", "shareholder records", "executive records", "M&A records", "corporate bylaws"]'
equals_string: '["board minutes", "shareholder records", "executive records",
"M&A records", "corporate bylaws"]'
scope_exclude:
equals_string: '["product development", "marketing materials", "personnel records"]'
equals_string: '["product development", "marketing materials", "personnel
records"]'
legal_note:
equals_string: Governance records have significant legal value. Many have mandatory retention periods. Original documents often retained for legal purposes.
equals_string: Governance records have significant legal value. Many have
mandatory retention periods. Original documents often retained for legal
purposes.
annotations:
specificity_score: 0.1
specificity_rationale: Generic utility class/slot created during migration
custodian_types: "['*']"
custodian_types: '[''*'']'
custodian_types_rationale: Universal utility concept
ProductDevelopmentCollection:
is_a: CompanyArchiveRecordSetType
class_uri: rico:RecordSetType
description: "A rico:RecordSetType for product development and technical records.\n\n**Definition**:\nRecords documenting the research, development, and design of products \nand services. Includes technical documentation, patents, prototypes, \nand R&D project files.\n\n**Typical Contents**:\n- Research and development files\n- Technical drawings and blueprints (technische tekeningen)\n- Patent applications and grants\n- Product specifications\n- Prototype documentation\n- Laboratory notebooks\n- Test reports and quality control\n- Design files (industrial design)\n- Engineering correspondence\n\n**Intellectual Property Value**:\nProduct development records are critical for:\n- Patent prosecution and defense\n- Trade secret documentation\n- Prior art evidence\n- Innovation history\n\n**Heritage Value**:\nTechnical archives document:\n- Evolution of products and technologies\n- Industrial design history\n- Engineering achievements\n- Corporate innovation culture\n\n**RiC-O Alignment**:\n\
This class is a specialized rico:RecordSetType. Records classified with this\ntype may follow mixed organizational principles: both organic R&D fonds \n(rico-rst:Fonds) and assembled collections (rico-rst:Collection) organized \nby product line or technology.\n"
description: "A rico:RecordSetType for product development and technical records.\n\
\n**Definition**:\nRecords documenting the research, development, and design\
\ of products \nand services. Includes technical documentation, patents, prototypes,\
\ \nand R&D project files.\n\n**Typical Contents**:\n- Research and development\
\ files\n- Technical drawings and blueprints (technische tekeningen)\n- Patent\
\ applications and grants\n- Product specifications\n- Prototype documentation\n\
- Laboratory notebooks\n- Test reports and quality control\n- Design files (industrial\
\ design)\n- Engineering correspondence\n\n**Intellectual Property Value**:\n\
Product development records are critical for:\n- Patent prosecution and defense\n\
- Trade secret documentation\n- Prior art evidence\n- Innovation history\n\n\
**Heritage Value**:\nTechnical archives document:\n- Evolution of products and\
\ technologies\n- Industrial design history\n- Engineering achievements\n- Corporate\
\ innovation culture\n\n**RiC-O Alignment**:\nThis class is a specialized rico:RecordSetType.\
\ Records classified with this\ntype may follow mixed organizational principles:\
\ both organic R&D fonds \n(rico-rst:Fonds) and assembled collections (rico-rst:Collection)\
\ organized \nby product line or technology.\n"
structured_aliases:
- literal_form: Produktentwicklungssammlung
in_language: de
@ -165,6 +203,8 @@ classes:
- rico-rst:Fonds
broad_mappings:
- wd:Q9388534
- rico:RecordSetType
- skos:Concept
close_mappings:
- skos:Concept
see_also:
@ -172,7 +212,8 @@ classes:
- rico:RecordSetType
- rico-rst:Collection
annotations:
ip_note: Product development records are critical for intellectual property protection. May contain trade secrets subject to access restrictions.
ip_note: Product development records are critical for intellectual property protection.
May contain trade secrets subject to access restrictions.
slots:
- has_or_had_type
- specificity_annotation
@ -185,7 +226,8 @@ classes:
- scope_include
slot_usage:
has_or_had_type:
equals_expression: '["hc:ArchiveOrganizationType", "hc:CommercialOrganizationType", "hc:ResearchOrganizationType"]'
equals_expression: '["hc:ArchiveOrganizationType", "hc:CommercialOrganizationType",
"hc:ResearchOrganizationType"]'
record_set_type:
equals_string: ProductDevelopmentCollection
organizational_principle:
@ -193,16 +235,34 @@ classes:
organizational_principle_uri:
equals_string: https://www.ica.org/standards/RiC/vocabularies/recordSetTypes#Collection
record_note:
equals_string: This RecordSetType may follow mixed organizational principles. May include both organic R&D fonds and assembled collections organized by product line, technology, or project.
equals_string: This RecordSetType may follow mixed organizational principles.
May include both organic R&D fonds and assembled collections organized by
product line, technology, or project.
scope_include:
equals_string: '["R&D files", "technical drawings", "patents", "prototypes", "test reports"]'
equals_string: '["R&D files", "technical drawings", "patents", "prototypes",
"test reports"]'
scope_exclude:
equals_string: '["governance records", "marketing materials", "personnel records"]'
MarketingArchiveCollection:
is_a: CompanyArchiveRecordSetType
class_uri: rico:RecordSetType
description: "A rico:RecordSetType for marketing, advertising, and brand heritage materials.\n\n**Definition**:\nMaterials documenting the company's marketing activities, advertising campaigns, \nbrand development, and public communications. Often includes rich visual \nmaterials and ephemera.\n\n**Typical Contents**:\n- Advertising campaigns (print, radio, television, digital)\n- Brand guidelines and style guides\n- Packaging designs\n- Promotional materials (brochures, catalogs, flyers)\n- Trade fair and exhibition materials\n- Press releases and media coverage\n- Sponsorship records\n- Market research reports\n- Customer communications\n\n**Brand Heritage Value**:\nMarketing archives are essential for:\n- Brand continuity and evolution\n- Anniversary and commemorative projects\n- Trademark protection (proof of use)\n- Nostalgic marketing campaigns\n- Corporate identity management\n\n**Visual Content**:\nMarketing archives typically contain rich visual materials:\n- Photography and\
\ film\n- Graphic design originals\n- Packaging samples\n- Point-of-sale materials\n\n**RiC-O Alignment**:\nThis class is a specialized rico:RecordSetType. Records classified with this\ntype follow the collection organizational principle as defined by rico-rst:Collection\n(assembled collections organized by campaign, product line, or media type).\n"
description: "A rico:RecordSetType for marketing, advertising, and brand heritage\
\ materials.\n\n**Definition**:\nMaterials documenting the company's marketing\
\ activities, advertising campaigns, \nbrand development, and public communications.\
\ Often includes rich visual \nmaterials and ephemera.\n\n**Typical Contents**:\n\
- Advertising campaigns (print, radio, television, digital)\n- Brand guidelines\
\ and style guides\n- Packaging designs\n- Promotional materials (brochures,\
\ catalogs, flyers)\n- Trade fair and exhibition materials\n- Press releases\
\ and media coverage\n- Sponsorship records\n- Market research reports\n- Customer\
\ communications\n\n**Brand Heritage Value**:\nMarketing archives are essential\
\ for:\n- Brand continuity and evolution\n- Anniversary and commemorative projects\n\
- Trademark protection (proof of use)\n- Nostalgic marketing campaigns\n- Corporate\
\ identity management\n\n**Visual Content**:\nMarketing archives typically contain\
\ rich visual materials:\n- Photography and film\n- Graphic design originals\n\
- Packaging samples\n- Point-of-sale materials\n\n**RiC-O Alignment**:\nThis\
\ class is a specialized rico:RecordSetType. Records classified with this\n\
type follow the collection organizational principle as defined by rico-rst:Collection\n\
(assembled collections organized by campaign, product line, or media type).\n"
structured_aliases:
- literal_form: Marketingarchivsammlung
in_language: de
@ -235,6 +295,8 @@ classes:
- rico-rst:Collection
broad_mappings:
- wd:Q9388534
- rico:RecordSetType
- skos:Concept
close_mappings:
- skos:Concept
- schema:Collection
@ -244,7 +306,8 @@ classes:
- rico-rst:Collection
- AdvertisingRadioArchive
annotations:
brand_heritage_note: Marketing archives are essential for brand continuity and trademark protection. Historical campaigns often reused for nostalgic marketing.
brand_heritage_note: Marketing archives are essential for brand continuity and
trademark protection. Historical campaigns often reused for nostalgic marketing.
slots:
- has_or_had_type
- specificity_annotation
@ -257,7 +320,8 @@ classes:
- scope_include
slot_usage:
has_or_had_type:
equals_expression: '["hc:ArchiveOrganizationType", "hc:CommercialOrganizationType", "hc:MuseumType"]'
equals_expression: '["hc:ArchiveOrganizationType", "hc:CommercialOrganizationType",
"hc:MuseumType"]'
record_set_type:
equals_string: MarketingArchiveCollection
organizational_principle:
@ -265,16 +329,36 @@ classes:
organizational_principle_uri:
equals_string: https://www.ica.org/standards/RiC/vocabularies/recordSetTypes#Collection
record_note:
equals_string: This RecordSetType classifies record sets following the collection principle as defined by rico-rst:Collection. Typically assembled collection organized by campaign, product line, or media type. Visual materials often predominate.
equals_string: This RecordSetType classifies record sets following the collection
principle as defined by rico-rst:Collection. Typically assembled collection
organized by campaign, product line, or media type. Visual materials often
predominate.
scope_include:
equals_string: '["advertising", "brand materials", "packaging", "promotional materials", "market research"]'
equals_string: '["advertising", "brand materials", "packaging", "promotional
materials", "market research"]'
scope_exclude:
equals_string: '["governance records", "technical documentation", "personnel records"]'
equals_string: '["governance records", "technical documentation", "personnel
records"]'
PersonnelRecordsSeries:
is_a: CompanyArchiveRecordSetType
class_uri: rico:RecordSetType
description: "A rico:RecordSetType for personnel and human resources records organized as series.\n\n**Definition**:\nRecords documenting the employment relationship between the company and its \nworkforce, including hiring, employment, training, and separation records.\n\n**Typical Contents**:\n- Personnel files (personeelsdossiers)\n- Employment contracts (arbeidsovereenkomsten)\n- Payroll records (salarisadministratie)\n- Training and development records\n- Performance evaluations\n- Disciplinary records\n- Pension administration\n- Works council records (ondernemingsraad)\n- Health and safety records\n\n**Privacy Considerations**:\nPersonnel records contain sensitive personal information subject to \nprivacy regulations (AVG/GDPR). Access restrictions apply, especially \nfor recent records. Typical retention: 7-10 years after employment ends.\n\n**Historical Personnel Records**:\nHistorical personnel records (typically 75+ years old) may have fewer \nrestrictions and are valuable\
\ for:\n- Social history research\n- Company history projects\n- Former employee inquiries\n\n**RiC-O Alignment**:\nThis class is a specialized rico:RecordSetType. Records classified with this\ntype follow the series organizational principle as defined by rico-rst:Series\n(personnel records typically arranged alphabetically by employee name within \ndate ranges).\n"
description: "A rico:RecordSetType for personnel and human resources records organized\
\ as series.\n\n**Definition**:\nRecords documenting the employment relationship\
\ between the company and its \nworkforce, including hiring, employment, training,\
\ and separation records.\n\n**Typical Contents**:\n- Personnel files (personeelsdossiers)\n\
- Employment contracts (arbeidsovereenkomsten)\n- Payroll records (salarisadministratie)\n\
- Training and development records\n- Performance evaluations\n- Disciplinary\
\ records\n- Pension administration\n- Works council records (ondernemingsraad)\n\
- Health and safety records\n\n**Privacy Considerations**:\nPersonnel records\
\ contain sensitive personal information subject to \nprivacy regulations (AVG/GDPR).\
\ Access restrictions apply, especially \nfor recent records. Typical retention:\
\ 7-10 years after employment ends.\n\n**Historical Personnel Records**:\nHistorical\
\ personnel records (typically 75+ years old) may have fewer \nrestrictions\
\ and are valuable for:\n- Social history research\n- Company history projects\n\
- Former employee inquiries\n\n**RiC-O Alignment**:\nThis class is a specialized\
\ rico:RecordSetType. Records classified with this\ntype follow the series organizational\
\ principle as defined by rico-rst:Series\n(personnel records typically arranged\
\ alphabetically by employee name within \ndate ranges).\n"
structured_aliases:
- literal_form: Personalakten
in_language: de
@ -305,6 +389,8 @@ classes:
- rico-rst:Series
broad_mappings:
- wd:Q185583
- rico:RecordSetType
- skos:Concept
close_mappings:
- skos:Concept
see_also:
@ -333,18 +419,36 @@ classes:
organizational_principle_uri:
equals_string: https://www.ica.org/standards/RiC/vocabularies/recordSetTypes#Series
record_note:
equals_string: This RecordSetType classifies record sets following the series principle as defined by rico-rst:Series. Personnel records typically arranged alphabetically by employee name within date ranges.
equals_string: This RecordSetType classifies record sets following the series
principle as defined by rico-rst:Series. Personnel records typically arranged alphabetically
by employee name within date ranges.
scope_include:
equals_string: '["personnel files", "employment contracts", "payroll records", "training records", "works council records"]'
equals_string: '["personnel files", "employment contracts", "payroll records",
"training records", "works council records"]'
scope_exclude:
equals_string: '["governance records", "product development", "marketing materials"]'
privacy_note:
equals_string: 'Subject to AVG/GDPR. Access restrictions apply for records less than 75 years old. Typical retention: 7-10 years after employment ends.'
equals_string: 'Subject to AVG/GDPR. Access restrictions apply for records
less than 75 years old. Typical retention: 7-10 years after employment
ends.'
CorporatePublicationsSeries:
is_a: CompanyArchiveRecordSetType
class_uri: rico:RecordSetType
description: "A rico:RecordSetType for corporate publications and internal communications.\n\n**Definition**:\nPublications produced by or for the company, including annual reports, \ninternal magazines, newsletters, and commemorative publications.\n\n**Typical Contents**:\n- Annual reports (jaarverslagen)\n- Corporate magazines/house organs (personeelsbladen)\n- Internal newsletters\n- Commemorative/anniversary publications\n- Technical bulletins\n- Customer magazines\n- Press releases\n- Corporate histories\n- Safety bulletins\n\n**Research Value**:\nCorporate publications document:\n- Financial history and performance\n- Corporate culture and values\n- Employee community and social activities\n- Product and service evolution\n- Company responses to external events\n\n**Bibliographic Nature**:\nMany corporate publications are serial publications that benefit from \nbibliographic treatment in addition to archival arrangement.\n\n**RiC-O Alignment**:\nThis class is a specialized rico:RecordSetType.\
\ Records classified with this\ntype follow the series organizational principle as defined by rico-rst:Series\n(publications arranged chronologically by title).\n"
description: "A rico:RecordSetType for corporate publications and internal communications.\n\
\n**Definition**:\nPublications produced by or for the company, including annual\
\ reports, \ninternal magazines, newsletters, and commemorative publications.\n\
\n**Typical Contents**:\n- Annual reports (jaarverslagen)\n- Corporate magazines/house\
\ organs (personeelsbladen)\n- Internal newsletters\n- Commemorative/anniversary\
\ publications\n- Technical bulletins\n- Customer magazines\n- Press releases\n\
- Corporate histories\n- Safety bulletins\n\n**Research Value**:\nCorporate\
\ publications document:\n- Financial history and performance\n- Corporate culture\
\ and values\n- Employee community and social activities\n- Product and service\
\ evolution\n- Company responses to external events\n\n**Bibliographic Nature**:\n\
Many corporate publications are serial publications that benefit from \nbibliographic\
\ treatment in addition to archival arrangement.\n\n**RiC-O Alignment**:\nThis\
\ class is a specialized rico:RecordSetType. Records classified with this\n\
type follow the series organizational principle as defined by rico-rst:Series\n\
(publications arranged chronologically by title).\n"
structured_aliases:
- literal_form: Unternehmenspublikationen
in_language: de
@ -374,6 +478,8 @@ classes:
- rico-rst:Series
broad_mappings:
- wd:Q5637226
- rico:RecordSetType
- skos:Concept
close_mappings:
- skos:Concept
- bf:Serial
@ -383,7 +489,9 @@ classes:
- rico-rst:Series
- PressArchive
annotations:
bibliographic_note: Many corporate publications are serial publications that benefit from bibliographic cataloging (ISSN, WorldCat) in addition to archival description.
bibliographic_note: Many corporate publications are serial publications that
benefit from bibliographic cataloging (ISSN, WorldCat) in addition to archival
description.
slots:
- has_or_had_type
- specificity_annotation
@ -396,7 +504,8 @@ classes:
- scope_include
slot_usage:
has_or_had_type:
equals_expression: '["hc:ArchiveOrganizationType", "hc:CommercialOrganizationType", "hc:LibraryType"]'
equals_expression: '["hc:ArchiveOrganizationType", "hc:CommercialOrganizationType",
"hc:LibraryType"]'
record_set_type:
equals_string: CorporatePublicationsSeries
organizational_principle:
@ -404,8 +513,12 @@ classes:
organizational_principle_uri:
equals_string: https://www.ica.org/standards/RiC/vocabularies/recordSetTypes#Series
record_note:
equals_string: This RecordSetType classifies record sets following the series principle as defined by rico-rst:Series. Publications arranged chronologically by title. May benefit from bibliographic treatment for serial publications.
equals_string: This RecordSetType classifies record sets following the series
principle as defined by rico-rst:Series. Publications arranged chronologically
by title. May benefit from bibliographic treatment for serial publications.
scope_include:
equals_string: '["annual reports", "house magazines", "newsletters", "commemorative publications", "press releases"]'
equals_string: '["annual reports", "house magazines", "newsletters", "commemorative
publications", "press releases"]'
scope_exclude:
equals_string: '["governance records", "technical documentation", "personnel records"]'
equals_string: '["governance records", "technical documentation", "personnel
records"]'

View file

@ -30,17 +30,23 @@ classes:
annotations:
specificity_score: 0.45
specificity_rationale: Address-specific component type.
custodian_types: "['*']"
custodian_types: '[''*'']'
custodian_types_rationale: Universal utility concept
broad_mappings:
- skos:Concept
Route:
is_a: ComponentType
class_uri: locn:thoroughfare
description: "Street or road name component.\n\n**LOCN Alignment**: `locn:thoroughfare`\n\n**Examples**: \"Museumstraat\", \"Baker Street\", \"Avenue des Champs-\xC9lys\xE9es\"\n"
description: "Street or road name component.\n\n**LOCN Alignment**: `locn:thoroughfare`\n\
\n**Examples**: \"Museumstraat\", \"Baker Street\", \"Avenue des Champs-\xC9\
lys\xE9es\"\n"
exact_mappings:
- locn:thoroughfare
annotations:
specificity_score: 0.45
specificity_rationale: Address-specific component type.
broad_mappings:
- skos:Concept
Locality:
is_a: ComponentType
class_uri: locn:postName
@ -58,6 +64,8 @@ classes:
annotations:
specificity_score: 0.4
specificity_rationale: Common geographic component type.
broad_mappings:
- skos:Concept
PostalCode:
is_a: ComponentType
class_uri: locn:postCode
@ -75,6 +83,8 @@ classes:
annotations:
specificity_score: 0.45
specificity_rationale: Address-specific component type.
broad_mappings:
- skos:Concept
Subregion:
is_a: ComponentType
class_uri: locn:adminUnitL2
@ -92,15 +102,21 @@ classes:
annotations:
specificity_score: 0.45
specificity_rationale: Administrative geography component.
broad_mappings:
- skos:Concept
Region:
is_a: ComponentType
class_uri: locn:adminUnitL1
description: "State, province, or first-level administrative division.\n\n**LOCN Alignment**: `locn:adminUnitL1`\n\n**Examples**: \"Noord-Holland\", \"California\", \"\xCEle-de-France\"\n"
description: "State, province, or first-level administrative division.\n\n**LOCN\
\ Alignment**: `locn:adminUnitL1`\n\n**Examples**: \"Noord-Holland\", \"California\"\
, \"\xCEle-de-France\"\n"
exact_mappings:
- locn:adminUnitL1
annotations:
specificity_score: 0.4
specificity_rationale: Common geographic component type.
broad_mappings:
- skos:Concept
Country:
is_a: ComponentType
class_uri: schema:Country
@ -118,6 +134,8 @@ classes:
annotations:
specificity_score: 0.35
specificity_rationale: Fundamental geographic component type.
broad_mappings:
- skos:Concept
Premise:
is_a: ComponentType
class_uri: hc:Premise
@ -130,6 +148,8 @@ classes:
annotations:
specificity_score: 0.5
specificity_rationale: Building-level component type.
broad_mappings:
- skos:Concept
Subpremise:
is_a: ComponentType
class_uri: hc:Subpremise
@ -147,3 +167,5 @@ classes:
annotations:
specificity_score: 0.55
specificity_rationale: Fine-grained location component type.
broad_mappings:
- skos:Concept

View file

@ -13,23 +13,37 @@ classes:
annotations:
specificity_score: 0.1
specificity_rationale: Generic utility class/slot created during migration
custodian_types: "['*']"
custodian_types: '[''*'']'
custodian_types_rationale: Universal utility concept
broad_mappings:
- crm:E3_Condition_State
GoodCondition:
is_a: ConditionType
description: Good physical condition with minor wear or aging
broad_mappings:
- crm:E3_Condition_State
FairCondition:
is_a: ConditionType
description: Fair physical condition with moderate deterioration
broad_mappings:
- crm:E3_Condition_State
PoorCondition:
is_a: ConditionType
description: Poor physical condition requiring conservation attention
broad_mappings:
- crm:E3_Condition_State
CriticalCondition:
is_a: ConditionType
description: Critical condition requiring immediate intervention
broad_mappings:
- crm:E3_Condition_State
AccessCondition:
is_a: ConditionType
description: "Condition or requirement for accessing materials.\nIncludes appointment requirements, reading room rules, \nregistration requirements, or other access stipulations.\n"
description: "Condition or requirement for accessing materials.\nIncludes appointment\
\ requirements, reading room rules, \nregistration requirements, or other access\
\ stipulations.\n"
broad_mappings:
- crm:E3_Condition_State
UseCondition:
is_a: ConditionType
description: 'Condition or restriction on how materials may be used.
@ -39,6 +53,8 @@ classes:
reproduction limitations, or citation requirements.
'
broad_mappings:
- crm:E3_Condition_State
ReproductionCondition:
is_a: ConditionType
description: 'Condition or restriction on reproducing materials.
@ -48,6 +64,8 @@ classes:
or attribution requirements for reproductions.
'
broad_mappings:
- crm:E3_Condition_State
LoanCondition:
is_a: ConditionType
description: 'Condition or requirement for borrowing/lending materials.
@ -57,6 +75,8 @@ classes:
courier requirements, or exhibition restrictions.
'
broad_mappings:
- crm:E3_Condition_State
DigitizationCondition:
is_a: ConditionType
description: 'Condition or requirement for digitizing materials.
@ -66,3 +86,5 @@ classes:
or restrictions on derivative works.
'
broad_mappings:
- crm:E3_Condition_State

View file

@ -25,8 +25,10 @@ classes:
examples: Gaza 2023-2024, Syria 2011-present, Iraq 2003-2011
specificity_score: 0.1
specificity_rationale: Generic utility class/slot created during migration
custodian_types: "['*']"
custodian_types: '[''*'']'
custodian_types_rationale: Universal utility concept
broad_mappings:
- skos:Concept
NaturalDisaster:
is_a: ConflictType
class_uri: hc:NaturalDisaster
@ -40,6 +42,8 @@ classes:
annotations:
wikidata: Q8065
examples: Nepal 2015, Haiti 2010, Katrina 2005
broad_mappings:
- skos:Concept
CivilUnrest:
is_a: ConflictType
class_uri: hc:CivilUnrest
@ -53,6 +57,8 @@ classes:
annotations:
wikidata: Q124757
examples: Minneapolis 2020, Cairo 2011
broad_mappings:
- skos:Concept
Terrorism:
is_a: ConflictType
class_uri: hc:Terrorism
@ -66,6 +72,8 @@ classes:
annotations:
wikidata: Q7283
examples: Palmyra 2015, Bamiyan 2001, Timbuktu 2012
broad_mappings:
- skos:Concept
Looting:
is_a: ConflictType
class_uri: hc:Looting
@ -79,6 +87,8 @@ classes:
annotations:
wikidata: Q844182
examples: Iraq Museum 2003, Afghan antiquities
broad_mappings:
- skos:Concept
Neglect:
is_a: ConflictType
class_uri: hc:Neglect
@ -89,6 +99,8 @@ classes:
'
annotations:
examples: Abandoned archives, unmaintained buildings
broad_mappings:
- skos:Concept
Occupation:
is_a: ConflictType
class_uri: hc:Occupation
@ -102,6 +114,8 @@ classes:
annotations:
wikidata: Q188686
examples: West Bank heritage sites, Crimea museums
broad_mappings:
- skos:Concept
Sanctions:
is_a: ConflictType
class_uri: hc:Sanctions
@ -112,3 +126,5 @@ classes:
'
annotations:
examples: Iran, North Korea, Syria - international isolation
broad_mappings:
- skos:Concept

View file

@ -29,11 +29,13 @@ classes:
degree_numeric: 1
specificity_score: 0.1
specificity_rationale: Generic utility class/slot created during migration
custodian_types: "['*']"
custodian_types: '[''*'']'
custodian_types_rationale: Universal utility concept
comments:
- Direct connection - mutual acceptance required
- Replaces ConnectionDegreeEnum.1st
broad_mappings:
- skos:Concept
SecondDegreeConnection:
is_a: ConnectionDegreeType
class_uri: hc:SecondDegreeConnection
@ -51,6 +53,8 @@ classes:
comments:
- One mutual connection between viewer and target
- Replaces ConnectionDegreeEnum.2nd
broad_mappings:
- skos:Concept
ThirdPlusDegreeConnection:
is_a: ConnectionDegreeType
class_uri: hc:ThirdPlusDegreeConnection
@ -68,3 +72,5 @@ classes:
comments:
- Two or more people between viewer and target
- Replaces ConnectionDegreeEnum.3rd+
broad_mappings:
- skos:Concept

View file

@ -27,7 +27,8 @@ imports:
- ./Description
- ../slots/safety_certification
- ../slots/specificity_annotation
- ../slots/staff_count
- ../slots/has_or_had_quantity
- ../classes/Quantity
- ../slots/has_or_had_score
- ../slots/is_or_was_derived_from
- ../slots/is_or_was_generated_by
@ -77,7 +78,7 @@ classes:
- has_or_had_description
- safety_certification
- specificity_annotation
- staff_count
- has_or_had_quantity
- has_or_had_score
- is_or_was_derived_from
- is_or_was_generated_by
@ -181,11 +182,10 @@ classes:
description: Dutch accreditation
- value: ICON - Institute of Conservation
description: UK accreditation
staff_count:
range: integer
examples:
- value: 8
description: Medium-sized conservation team
has_or_had_quantity:
range: Quantity
inlined: true
description: Quantity of staff members. MIGRATED from staff_count (2026-01-28).
accepts_or_accepted:
range: ExternalWork
inlined: true
@ -235,7 +235,10 @@ classes:
has_fume_hoods: true
is_accredited: true
accreditation_body: VeRes
staff_count: 12
has_or_had_quantity:
range: Quantity
inlined: true
description: Quantity of staff members. MIGRATED from staff_count (2026-01-28).
accepts_or_accepted: []
description: Major museum conservation studio
- value:
@ -257,7 +260,10 @@ classes:
has_climate_control: true
has_fume_hoods: true
has_deacidification_facility: true
staff_count: 6
has_or_had_quantity:
range: Quantity
inlined: true
description: Quantity of staff members. MIGRATED from staff_count (2026-01-28).
accepts_or_accepted:
- work_type: paper_conservation
description: Paper and parchment conservation commissions

View file

@ -22,8 +22,10 @@ classes:
annotations:
specificity_score: 0.1
specificity_rationale: Generic utility class/slot created during migration
custodian_types: "['*']"
custodian_types: '[''*'']'
custodian_types_rationale: Universal utility concept
broad_mappings:
- skos:Concept
LiteraryContent:
is_a: ContentType
class_uri: hc:LiteraryContent
@ -33,6 +35,8 @@ classes:
equals_string: LITERARY
has_or_had_label:
equals_string: Literary Content
broad_mappings:
- skos:Concept
ScientificContent:
is_a: ContentType
class_uri: hc:ScientificContent
@ -42,6 +46,8 @@ classes:
equals_string: SCIENTIFIC
has_or_had_label:
equals_string: Scientific Content
broad_mappings:
- skos:Concept
ReligiousContent:
is_a: ContentType
class_uri: hc:ReligiousContent
@ -51,6 +57,8 @@ classes:
equals_string: RELIGIOUS
has_or_had_label:
equals_string: Religious Content
broad_mappings:
- skos:Concept
LegalContent:
is_a: ContentType
class_uri: hc:LegalContent
@ -60,6 +68,8 @@ classes:
equals_string: LEGAL
has_or_had_label:
equals_string: Legal Content
broad_mappings:
- skos:Concept
AdministrativeContent:
is_a: ContentType
class_uri: hc:AdministrativeContent
@ -69,6 +79,8 @@ classes:
equals_string: ADMINISTRATIVE
has_or_had_label:
equals_string: Administrative Content
broad_mappings:
- skos:Concept
CorrespondenceContent:
is_a: ContentType
class_uri: hc:CorrespondenceContent
@ -78,6 +90,8 @@ classes:
equals_string: CORRESPONDENCE
has_or_had_label:
equals_string: Correspondence
broad_mappings:
- skos:Concept
VisualContent:
is_a: ContentType
class_uri: hc:VisualContent
@ -87,6 +101,8 @@ classes:
equals_string: VISUAL
has_or_had_label:
equals_string: Visual Content
broad_mappings:
- skos:Concept
PhotographicContent:
is_a: ContentType
class_uri: hc:PhotographicContent
@ -96,6 +112,8 @@ classes:
equals_string: PHOTOGRAPHIC
has_or_had_label:
equals_string: Photographic Content
broad_mappings:
- skos:Concept
CartographicContent:
is_a: ContentType
class_uri: hc:CartographicContent
@ -105,6 +123,8 @@ classes:
equals_string: CARTOGRAPHIC
has_or_had_label:
equals_string: Cartographic Content
broad_mappings:
- skos:Concept
ArtisticContent:
is_a: ContentType
class_uri: hc:ArtisticContent
@ -114,6 +134,8 @@ classes:
equals_string: ARTISTIC
has_or_had_label:
equals_string: Artistic Content
broad_mappings:
- skos:Concept
AudioContent:
is_a: ContentType
class_uri: hc:AudioContent
@ -123,6 +145,8 @@ classes:
equals_string: AUDIO
has_or_had_label:
equals_string: Audio Content
broad_mappings:
- skos:Concept
MusicContent:
is_a: ContentType
class_uri: hc:MusicContent
@ -132,6 +156,8 @@ classes:
equals_string: MUSIC
has_or_had_label:
equals_string: Music Content
broad_mappings:
- skos:Concept
SpokenWordContent:
is_a: ContentType
class_uri: hc:SpokenWordContent
@ -141,6 +167,8 @@ classes:
equals_string: SPOKEN_WORD
has_or_had_label:
equals_string: Spoken Word Content
broad_mappings:
- skos:Concept
AudiovisualContent:
is_a: ContentType
class_uri: hc:AudiovisualContent
@ -150,6 +178,8 @@ classes:
equals_string: AUDIOVISUAL
has_or_had_label:
equals_string: Audiovisual Content
broad_mappings:
- skos:Concept
FilmContent:
is_a: ContentType
class_uri: hc:FilmContent
@ -159,6 +189,8 @@ classes:
equals_string: FILM
has_or_had_label:
equals_string: Film Content
broad_mappings:
- skos:Concept
VideoContent:
is_a: ContentType
class_uri: hc:VideoContent
@ -168,6 +200,8 @@ classes:
equals_string: VIDEO
has_or_had_label:
equals_string: Video Content
broad_mappings:
- skos:Concept
DataContent:
is_a: ContentType
class_uri: hc:DataContent
@ -177,6 +211,8 @@ classes:
equals_string: DATA
has_or_had_label:
equals_string: Data Content
broad_mappings:
- skos:Concept
StatisticalContent:
is_a: ContentType
class_uri: hc:StatisticalContent
@ -186,6 +222,8 @@ classes:
equals_string: STATISTICAL
has_or_had_label:
equals_string: Statistical Content
broad_mappings:
- skos:Concept
MixedContent:
is_a: ContentType
class_uri: hc:MixedContent
@ -195,6 +233,8 @@ classes:
equals_string: MIXED
has_or_had_label:
equals_string: Mixed Content
broad_mappings:
- skos:Concept
MultimediaContent:
is_a: ContentType
class_uri: hc:MultimediaContent
@ -204,3 +244,5 @@ classes:
equals_string: MULTIMEDIA
has_or_had_label:
equals_string: Multimedia Content
broad_mappings:
- skos:Concept

View file

@ -124,7 +124,7 @@ classes:
examples:
- value: |
has_or_had_type:
type_label: "Visitor to Purchase"
has_or_had_label: "Visitor to Purchase"
source_population: "museum visitors"
target_action: "made gift shop purchase"
description: Visitor to purchase conversion type
@ -159,7 +159,7 @@ classes:
sample_size: 500000
converted_count: 175000
has_or_had_type:
type_label: "Visitor to Purchase"
has_or_had_label: "Visitor to Purchase"
temporal_extent:
begin_of_the_begin: "2024-01-01"
end_of_the_end: "2024-12-31"
@ -174,7 +174,7 @@ classes:
sample_size: 100000
converted_count: 5000
has_or_had_type:
type_label: "Visitor to Member"
has_or_had_label: "Visitor to Member"
temporal_extent:
begin_of_the_begin: "2024-06-01"
end_of_the_end: "2024-08-31"

View file

@ -13,7 +13,10 @@ default_range: string
classes:
VisitorToPurchaseConversion:
is_a: ConversionRateType
description: "Conversion rate measuring museum/archive visitors who make a gift shop purchase.\n**INDUSTRY BENCHMARKS**: - Average: 15-25% - High performers: 30-40% - Blockbuster exhibitions: 40-60%\n**CALCULATION**: (Purchasers / Total Visitors) \xD7 100"
description: "Conversion rate measuring museum/archive visitors who make a gift\
\ shop purchase.\n**INDUSTRY BENCHMARKS**: - Average: 15-25% - High performers:\
\ 30-40% - Blockbuster exhibitions: 40-60%\n**CALCULATION**: (Purchasers / Total\
\ Visitors) \xD7 100"
class_uri: hc:VisitorToPurchaseConversion
slot_usage:
conversion_type_label:
@ -29,11 +32,16 @@ classes:
annotations:
specificity_score: 0.1
specificity_rationale: Generic utility class/slot created during migration
custodian_types: "['*']"
custodian_types: '[''*'']'
custodian_types_rationale: Universal utility concept
broad_mappings:
- crm:E54_Dimension
- schema:QuantitativeValue
VisitorToMemberConversion:
is_a: ConversionRateType
description: "Conversion rate measuring visitors who become members/supporters.\n**INDUSTRY BENCHMARKS**: - Average: 1-3% - Strong programs: 5-8%\n**CALCULATION**: (New Members / Total Visitors) \xD7 100"
description: "Conversion rate measuring visitors who become members/supporters.\n\
**INDUSTRY BENCHMARKS**: - Average: 1-3% - Strong programs: 5-8%\n**CALCULATION**:\
\ (New Members / Total Visitors) \xD7 100"
class_uri: hc:VisitorToMemberConversion
slot_usage:
conversion_type_label:
@ -46,9 +54,15 @@ classes:
ifabsent: float(0.01)
industry_benchmark_high:
ifabsent: float(0.08)
broad_mappings:
- crm:E54_Dimension
- schema:QuantitativeValue
OnlineToPhysicalConversion:
is_a: ConversionRateType
description: "Conversion rate measuring website visitors who subsequently visit physically.\n**INDUSTRY BENCHMARKS**: - Average: 0.5-2% - Strong digital presence: 3-5%\n**CALCULATION**: (Physical Visits from Web / Website Visitors) \xD7 100"
description: "Conversion rate measuring website visitors who subsequently visit\
\ physically.\n**INDUSTRY BENCHMARKS**: - Average: 0.5-2% - Strong digital presence:\
\ 3-5%\n**CALCULATION**: (Physical Visits from Web / Website Visitors) \xD7\
\ 100"
class_uri: hc:OnlineToPhysicalConversion
slot_usage:
conversion_type_label:
@ -61,9 +75,14 @@ classes:
ifabsent: float(0.005)
industry_benchmark_high:
ifabsent: float(0.05)
broad_mappings:
- crm:E54_Dimension
- schema:QuantitativeValue
EmailToClickConversion:
is_a: ConversionRateType
description: "Conversion rate measuring email recipients who click through.\n**INDUSTRY BENCHMARKS** (Museum sector): - Average: 2-4% - Well-targeted: 5-10%\n**CALCULATION**: (Clicks / Emails Delivered) \xD7 100"
description: "Conversion rate measuring email recipients who click through.\n\
**INDUSTRY BENCHMARKS** (Museum sector): - Average: 2-4% - Well-targeted: 5-10%\n\
**CALCULATION**: (Clicks / Emails Delivered) \xD7 100"
class_uri: hc:EmailToClickConversion
slot_usage:
conversion_type_label:
@ -76,9 +95,14 @@ classes:
ifabsent: float(0.02)
industry_benchmark_high:
ifabsent: float(0.10)
broad_mappings:
- crm:E54_Dimension
- schema:QuantitativeValue
SocialToFollowerConversion:
is_a: ConversionRateType
description: "Conversion rate measuring social media viewers who become followers.\n**INDUSTRY BENCHMARKS**: - Average: 1-3% - Viral content: 5-15%\n**CALCULATION**: (New Followers / Content Views) \xD7 100"
description: "Conversion rate measuring social media viewers who become followers.\n\
**INDUSTRY BENCHMARKS**: - Average: 1-3% - Viral content: 5-15%\n**CALCULATION**:\
\ (New Followers / Content Views) \xD7 100"
class_uri: hc:SocialToFollowerConversion
slot_usage:
conversion_type_label:
@ -91,9 +115,14 @@ classes:
ifabsent: float(0.01)
industry_benchmark_high:
ifabsent: float(0.15)
broad_mappings:
- crm:E54_Dimension
- schema:QuantitativeValue
TicketToReturnConversion:
is_a: ConversionRateType
description: "Conversion rate measuring ticket buyers who return for another visit.\n**INDUSTRY BENCHMARKS**: - Average: 20-30% - Strong loyalty programs: 40-60%\n**CALCULATION**: (Return Visitors / Total Ticket Buyers) \xD7 100"
description: "Conversion rate measuring ticket buyers who return for another visit.\n\
**INDUSTRY BENCHMARKS**: - Average: 20-30% - Strong loyalty programs: 40-60%\n\
**CALCULATION**: (Return Visitors / Total Ticket Buyers) \xD7 100"
class_uri: hc:TicketToReturnConversion
slot_usage:
conversion_type_label:
@ -106,11 +135,18 @@ classes:
ifabsent: float(0.20)
industry_benchmark_high:
ifabsent: float(0.60)
broad_mappings:
- crm:E54_Dimension
- schema:QuantitativeValue
OtherConversion:
is_a: ConversionRateType
description: Custom or other conversion rate type not covered by standard types. Use this when tracking novel metrics or institution-specific conversions.
description: Custom or other conversion rate type not covered by standard types.
Use this when tracking novel metrics or institution-specific conversions.
class_uri: hc:OtherConversion
attributes:
custom_type_name:
range: string
description: Name of the custom conversion type.
broad_mappings:
- crm:E54_Dimension
- schema:QuantitativeValue

View file

@ -84,10 +84,10 @@ classes:
- https://www.ica.org/standards/RiC/ontology#RecordSet
examples:
- value:
type_id: https://nde.nl/ontology/hc/type/archive/Q11906844
glamorcubesfixphdnt_code: ARCHIVE
has_or_had_identifier: https://nde.nl/ontology/hc/type/archive/Q11906844
has_or_had_type_code: ARCHIVE
has_or_had_identifier: Q11906844
type_label:
has_or_had_label:
- Court Records Archive@en
- Justizarchiv@de
- archivo judicial@es

View file

@ -85,10 +85,10 @@ classes:
- https://www.wikidata.org/wiki/Q1030034
examples:
- value:
type_id: https://nde.nl/ontology/hc/type/cultural/Q3152824
glamorcubesfixphdnt_code: MIXED
has_or_had_identifier: https://nde.nl/ontology/hc/type/cultural/Q3152824
has_or_had_type_code: MIXED
has_or_had_identifier: Q3152824
type_label:
has_or_had_label:
- Cultural Institution@en
- kulturelle Organisation@de
- "instituci\xF3n cultural@es"

View file

@ -100,10 +100,10 @@ classes:
- https://www.iso.org/standard/62542.html
examples:
- value:
type_id: https://nde.nl/ontology/hc/type/archive/Q3621648
glamorcubesfixphdnt_code: ARCHIVE
has_or_had_identifier: https://nde.nl/ontology/hc/type/archive/Q3621648
has_or_had_type_code: ARCHIVE
has_or_had_identifier: Q3621648
type_label:
has_or_had_label:
- Current Archive@en
- archivo corriente@es
- archive courante@fr

View file

@ -52,7 +52,9 @@ classes:
ActiveRecordsFonds:
is_a: CurrentArchiveRecordSetType
class_uri: rico:RecordSetType
description: "A rico:RecordSetType for Current/active records.\n\n**RiC-O Alignment**:\nThis class is a specialized rico:RecordSetType following the fonds \norganizational principle as defined by rico-rst:Fonds.\n"
description: "A rico:RecordSetType for Current/active records.\n\n**RiC-O Alignment**:\n\
This class is a specialized rico:RecordSetType following the fonds \norganizational\
\ principle as defined by rico-rst:Fonds.\n"
exact_mappings:
- rico:RecordSetType
related_mappings:
@ -83,9 +85,13 @@ classes:
record_holder:
equals_string: CurrentArchive
record_holder_note:
equals_string: This RecordSetType is typically held by CurrentArchive custodians. Inverse of rico:isOrWasHolderOf.
equals_string: This RecordSetType is typically held by CurrentArchive custodians.
Inverse of rico:isOrWasHolderOf.
annotations:
specificity_score: 0.1
specificity_rationale: Generic utility class/slot created during migration
custodian_types: "['*']"
custodian_types: '[''*'']'
custodian_types_rationale: Universal utility concept
broad_mappings:
- rico:RecordSetType
- skos:Concept

View file

@ -46,7 +46,9 @@ classes:
CustodialRecordsFonds:
is_a: CustodianArchiveRecordSetType
class_uri: rico:RecordSetType
description: "A rico:RecordSetType for Records held in custody.\n\n**RiC-O Alignment**:\nThis class is a specialized rico:RecordSetType following the fonds \norganizational principle as defined by rico-rst:Fonds.\n"
description: "A rico:RecordSetType for Records held in custody.\n\n**RiC-O Alignment**:\n\
This class is a specialized rico:RecordSetType following the fonds \norganizational\
\ principle as defined by rico-rst:Fonds.\n"
exact_mappings:
- rico:RecordSetType
related_mappings:
@ -77,9 +79,13 @@ classes:
record_holder:
equals_string: CustodianArchive
record_holder_note:
equals_string: This RecordSetType is typically held by CustodianArchive custodians. Inverse of rico:isOrWasHolderOf.
equals_string: This RecordSetType is typically held by CustodianArchive custodians.
Inverse of rico:isOrWasHolderOf.
annotations:
specificity_score: 0.1
specificity_rationale: Generic utility class/slot created during migration
custodian_types: "['*']"
custodian_types: '[''*'']'
custodian_types_rationale: Universal utility concept
broad_mappings:
- rico:RecordSetType
- skos:Concept

View file

@ -92,19 +92,19 @@ classes:
Includes:
- Emic name (has_or_had_type: EmicLabelType) - MIGRATED from emic_name
- Emic name (has_or_had_type: EmicLabel) - MIGRATED from emic_name
- Alternative names (has_or_had_type: AlternativeNameType) - MIGRATED from has_or_had_alternative_name
- Alternative names (has_or_had_type: AlternativeName) - MIGRATED from has_or_had_alternative_name
'
examples:
- value:
has_or_had_label: Rijksmuseum
has_or_had_type: EmicLabelType
has_or_had_type: EmicLabel
description: Standardized emic name
- value:
has_or_had_label: State Museum
has_or_had_type: AlternativeNameType
has_or_had_type: AlternativeName
description: Alternative name
name_language:
range: string

View file

@ -84,19 +84,19 @@ classes:
MIGRATED from has_or_had_alternative_observed_name (Rule 53).
Use has_or_had_type: ObservedNameType for primary observed name.
Use has_or_had_type: ObservedName for primary observed name.
Use has_or_had_type: AlternativeNameType for variants.
Use has_or_had_type: AlternativeName for variants.
'
examples:
- value:
has_or_had_label: Rijksmuseum Amsterdam
has_or_had_type: ObservedNameType
has_or_had_type: ObservedName
description: Primary observed name
- value:
has_or_had_label: Het Rijks
has_or_had_type: AlternativeNameType
has_or_had_type: AlternativeName
description: Alternative observed name
observation_date:
range: date

View file

@ -19,23 +19,19 @@ imports:
- ./TemplateSpecificityScore
- ./TemplateSpecificityType
- ./TemplateSpecificityTypes
- ../enums/OrganizationalChangeEventTypeEnum
- ../enums/DatePrecisionEnum
- ../enums/TimelineExtractionMethodEnum
- ../slots/is_or_was_approximate
- ./ApproximationStatus
- ../slots/has_archive_path
- ../slots/has_or_had_file_path
- ../slots/has_or_had_level
- ./DataTierLevel
- ../slots/degree_of_certainty
- ./DatePrecision
- ../slots/has_or_had_description
- ../slots/temporal_extent
- ./TimeSpan
- ./Timestamp
- ../slots/has_or_had_type
- ../slots/extraction_method
- ../slots/extraction_note
- ../slots/has_or_had_method
- ../slots/has_or_had_note
- ../slots/is_or_was_retrieved_through
- ./RetrievalEvent
- ../slots/observation_ref
@ -64,8 +60,8 @@ classes:
- has_or_had_description
- temporal_extent
- has_or_had_type
- extraction_method
- extraction_note
- has_or_had_method
- has_or_had_note
- is_or_was_retrieved_through
- observation_ref
- source_url
@ -106,10 +102,10 @@ classes:
description: Whether the event date is approximate or uncertain. MIGRATED from approximate (Rule 53) - changed from boolean to ApproximationStatus class for structured uncertainty modeling.
examples:
- value:
approximation_level: EXACT
has_or_had_status: EXACT
description: Exact date known
- value:
approximation_level: APPROXIMATE
has_or_had_status: APPROXIMATE
has_or_had_label: circa 1880
has_or_had_description: Founding date known only to year
description: Approximate date with explanation
@ -117,7 +113,7 @@ classes:
required: true
source_url:
required: false
extraction_method:
has_or_had_method:
required: true
range: TimelineExtractionMethodEnum
is_or_was_retrieved_through:
@ -129,7 +125,7 @@ classes:
range: RetrievalEvent
inlined: true
required: true
extraction_note:
has_or_had_note:
required: false
has_archive_path:
required: false
@ -166,7 +162,6 @@ classes:
- Event types constrained to OrganizationalChangeEventTypeEnum
- Use CIDOC-CRM TimeSpan for fuzzy dates if needed
see_also:
- schemas/20251121/linkml/modules/enums/OrganizationalChangeEventTypeEnum.yaml
- schemas/20251121/linkml/modules/classes/WebObservation.yaml
- schemas/20251121/linkml/modules/classes/CustodianObservation.yaml
- schemas/20251121/linkml/modules/classes/TimeSpan.yaml
@ -181,11 +176,11 @@ classes:
has_or_had_code: DAY
has_or_had_description: Full date with day precision
is_or_was_approximate:
approximation_level: EXACT
has_or_had_status: EXACT
description: Het RHC Drents Archief werd opgericht op 30 april 2005.
source_url:
- https://nl.wikipedia.org/wiki/Drents_Archief
extraction_method: api_response_regex
has_or_had_method: api_response_regex
extraction_timestamp: '2025-12-16T10:00:00Z'
extraction_notes: 'Query: "Drents Archief" Assen opgericht OR gesticht API: Linkup. Archived at: web/0002/linkup/linkup_founding_20251215T160438Z.json'
archive_path: web/0002/linkup/linkup_founding_20251215T160438Z.json
@ -202,11 +197,11 @@ classes:
has_or_had_code: YEAR
has_or_had_description: Year-only precision
is_or_was_approximate:
approximation_level: EXACT
has_or_had_status: EXACT
description: In 2005 ging het Gemeentearchief Assen op in het Drents Archief.
source_url:
- https://nl.wikipedia.org/wiki/Drents_Archief
extraction_method: api_response_regex
has_or_had_method: api_response_regex
is_or_was_retrieved_through:
temporal_extent:
begin_of_the_begin: '2025-12-16T10:05:00Z'
@ -224,11 +219,11 @@ classes:
has_or_had_code: YEAR
has_or_had_description: Year-only precision
is_or_was_approximate:
approximation_level: EXACT
has_or_had_status: EXACT
description: The Rijksmuseum was founded in 1810 as the Royal Museum.
source_url:
- https://www.wikidata.org/wiki/Q190804
extraction_method: wikidata_sparql
has_or_had_method: wikidata_sparql
is_or_was_retrieved_through:
temporal_extent:
begin_of_the_begin: '2025-12-20T14:30:00Z'
@ -247,11 +242,10 @@ classes:
has_or_had_code: YEAR
has_or_had_description: Year-only precision
is_or_was_approximate:
approximation_level: EXACT
has_or_had_status: EXACT
description: The Rijksmuseum moved to its current building designed by Cuypers.
source_url:
- https://www.rijksmuseum.nl/en/about-us/what-we-do/history
extraction_method: web_scrape_xpath
has_or_had_method: web_scrape_xpath
is_or_was_retrieved_through:
temporal_extent:
begin_of_the_begin: '2025-12-20T15:00:00Z'
@ -271,11 +265,11 @@ classes:
has_or_had_code: YEAR
has_or_had_description: Year-only precision
is_or_was_approximate:
approximation_level: APPROXIMATE
has_or_had_status: APPROXIMATE
has_or_had_label: circa 1880
has_or_had_description: Founding date derived from secondary sources, exact year uncertain
description: Museum founded around 1880, exact date unknown.
extraction_method: manual_research
has_or_had_method: manual_research
is_or_was_retrieved_through:
temporal_extent:
begin_of_the_begin: '2025-12-20T16:00:00Z'

View file

@ -9,7 +9,7 @@ imports:
- ../slots/modified
- ../slots/has_or_had_identifier
- ./WikiDataIdentifier
- ../slots/glamorcubesfixphdnt_code
- ../slots/has_or_had_type_code
- ../slots/specificity_annotation
- ../slots/has_or_had_score
- ../slots/has_or_had_description
@ -45,7 +45,7 @@ classes:
- custodian_type_broader
- custodian_type_narrower
- custodian_type_related
- glamorcubesfixphdnt_code
- has_or_had_type_code
- modified
- specificity_annotation
- has_or_had_score
@ -53,7 +53,7 @@ classes:
- has_or_had_label
- has_or_had_identifier
slot_usage:
glamorcubesfixphdnt_code:
has_or_had_type_code:
range: string
required: false
pattern: ^[ABCDEFGHILMNOPRSTUX]$
@ -110,7 +110,7 @@ classes:
has_or_had_identifier:
- https://nde.nl/ontology/hc/type/museum/Q207694
- Q207694
glamorcubesfixphdnt_code: M
has_or_had_type_code: M
has_or_had_label:
- Art Museum@en
- kunstmuseum@nl

View file

@ -98,10 +98,10 @@ classes:
- http://www.loc.gov/premis/
examples:
- value:
type_id: https://nde.nl/ontology/hc/type/archive/Q112796578
glamorcubesfixphdnt_code: ARCHIVE
has_or_had_identifier: https://nde.nl/ontology/hc/type/archive/Q112796578
has_or_had_type_code: ARCHIVE
has_or_had_identifier: Q112796578
type_label:
has_or_had_label:
- Dark Archive@en
- Dark Archive@de
has_or_had_description: Collection preserved for future use with no current access
@ -115,10 +115,10 @@ classes:
restriction_reason: Disaster recovery copy - access on system failure only
description: Disaster recovery dark archive
- value:
type_id: https://nde.nl/ontology/hc/type/archive/Q112796578-embargo
glamorcubesfixphdnt_code: ARCHIVE
has_or_had_identifier: https://nde.nl/ontology/hc/type/archive/Q112796578-embargo
has_or_had_type_code: ARCHIVE
has_or_had_identifier: Q112796578
type_label:
has_or_had_label:
- Embargoed Dark Archive@en
has_or_had_description: Materials under embargo with future access date
preservation_purpose: donor_restriction

View file

@ -46,7 +46,9 @@ classes:
PreservationCopyCollection:
is_a: DarkArchiveRecordSetType
class_uri: rico:RecordSetType
description: "A rico:RecordSetType for Preservation copies.\n\n**RiC-O Alignment**:\nThis class is a specialized rico:RecordSetType following the collection \norganizational principle as defined by rico-rst:Collection.\n"
description: "A rico:RecordSetType for Preservation copies.\n\n**RiC-O Alignment**:\n\
This class is a specialized rico:RecordSetType following the collection \norganizational\
\ principle as defined by rico-rst:Collection.\n"
exact_mappings:
- rico:RecordSetType
related_mappings:
@ -77,16 +79,22 @@ classes:
record_holder:
equals_string: DarkArchive
record_holder_note:
equals_string: This RecordSetType is typically held by DarkArchive custodians. Inverse of rico:isOrWasHolderOf.
equals_string: This RecordSetType is typically held by DarkArchive custodians.
Inverse of rico:isOrWasHolderOf.
annotations:
specificity_score: 0.1
specificity_rationale: Generic utility class/slot created during migration
custodian_types: "['*']"
custodian_types: '[''*'']'
custodian_types_rationale: Universal utility concept
broad_mappings:
- rico:RecordSetType
- skos:Concept
DigitalPreservationFonds:
is_a: DarkArchiveRecordSetType
class_uri: rico:RecordSetType
description: "A rico:RecordSetType for Digital preservation records.\n\n**RiC-O Alignment**:\nThis class is a specialized rico:RecordSetType following the fonds \norganizational principle as defined by rico-rst:Fonds.\n"
description: "A rico:RecordSetType for Digital preservation records.\n\n**RiC-O\
\ Alignment**:\nThis class is a specialized rico:RecordSetType following the\
\ fonds \norganizational principle as defined by rico-rst:Fonds.\n"
exact_mappings:
- rico:RecordSetType
related_mappings:
@ -117,4 +125,8 @@ classes:
record_holder:
equals_string: DarkArchive
record_holder_note:
equals_string: This RecordSetType is typically held by DarkArchive custodians. Inverse of rico:isOrWasHolderOf.
equals_string: This RecordSetType is typically held by DarkArchive custodians.
Inverse of rico:isOrWasHolderOf.
broad_mappings:
- rico:RecordSetType
- skos:Concept

View file

@ -23,8 +23,10 @@ classes:
media_type: application/json
specificity_score: 0.1
specificity_rationale: Generic utility class/slot created during migration
custodian_types: "['*']"
custodian_types: '[''*'']'
custodian_types_rationale: Universal utility concept
broad_mappings:
- skos:Concept
XmlFormat:
is_a: DataFormatType
class_uri: hc:XmlFormat
@ -37,6 +39,8 @@ classes:
'
annotations:
media_type: application/xml
broad_mappings:
- skos:Concept
CsvFormat:
is_a: DataFormatType
class_uri: hc:CsvFormat
@ -49,6 +53,8 @@ classes:
'
annotations:
media_type: text/csv
broad_mappings:
- skos:Concept
RdfXmlFormat:
is_a: DataFormatType
class_uri: hc:RdfXmlFormat
@ -61,6 +67,8 @@ classes:
'
annotations:
media_type: application/rdf+xml
broad_mappings:
- skos:Concept
TurtleFormat:
is_a: DataFormatType
class_uri: hc:TurtleFormat
@ -73,6 +81,8 @@ classes:
'
annotations:
media_type: text/turtle
broad_mappings:
- skos:Concept
JsonLdFormat:
is_a: DataFormatType
class_uri: hc:JsonLdFormat
@ -85,6 +95,8 @@ classes:
'
annotations:
media_type: application/ld+json
broad_mappings:
- skos:Concept
NTriplesFormat:
is_a: DataFormatType
class_uri: hc:NTriplesFormat
@ -97,6 +109,8 @@ classes:
'
annotations:
media_type: application/n-triples
broad_mappings:
- skos:Concept
SensorMlFormat:
is_a: DataFormatType
class_uri: hc:SensorMlFormat
@ -108,6 +122,8 @@ classes:
annotations:
media_type: application/xml
standard: OGC SensorML
broad_mappings:
- skos:Concept
MqttPayloadFormat:
is_a: DataFormatType
class_uri: hc:MqttPayloadFormat
@ -120,6 +136,8 @@ classes:
'
annotations:
protocol: MQTT
broad_mappings:
- skos:Concept
EadFormat:
is_a: DataFormatType
class_uri: hc:EadFormat
@ -133,6 +151,8 @@ classes:
annotations:
media_type: application/xml
standard: EAD3
broad_mappings:
- skos:Concept
MarcXmlFormat:
is_a: DataFormatType
class_uri: hc:MarcXmlFormat
@ -146,6 +166,8 @@ classes:
annotations:
media_type: application/marcxml+xml
standard: MARC21
broad_mappings:
- skos:Concept
MetsFormat:
is_a: DataFormatType
class_uri: hc:MetsFormat
@ -159,6 +181,8 @@ classes:
annotations:
media_type: application/xml
standard: METS
broad_mappings:
- skos:Concept
LidoFormat:
is_a: DataFormatType
class_uri: hc:LidoFormat
@ -172,6 +196,8 @@ classes:
annotations:
media_type: application/xml
standard: LIDO
broad_mappings:
- skos:Concept
DublinCoreFormat:
is_a: DataFormatType
class_uri: hc:DublinCoreFormat
@ -185,6 +211,8 @@ classes:
annotations:
media_type: application/xml
standard: Dublin Core
broad_mappings:
- skos:Concept
PdfFormat:
is_a: DataFormatType
class_uri: hc:PdfFormat
@ -197,6 +225,8 @@ classes:
'
annotations:
media_type: application/pdf
broad_mappings:
- skos:Concept
HtmlFormat:
is_a: DataFormatType
class_uri: hc:HtmlFormat
@ -209,6 +239,8 @@ classes:
'
annotations:
media_type: text/html
broad_mappings:
- skos:Concept
PlainTextFormat:
is_a: DataFormatType
class_uri: hc:PlainTextFormat
@ -221,6 +253,8 @@ classes:
'
annotations:
media_type: text/plain
broad_mappings:
- skos:Concept
BinaryFormat:
is_a: DataFormatType
class_uri: hc:BinaryFormat
@ -233,3 +267,5 @@ classes:
'
annotations:
media_type: application/octet-stream
broad_mappings:
- skos:Concept

View file

@ -38,7 +38,7 @@ classes:
- dcterms:type
- dcat:DataService
attributes:
type_id:
has_or_had_identifier:
identifier: true
slot_uri: dcterms:identifier
description: 'Unique identifier for this endpoint type.

View file

@ -73,8 +73,10 @@ classes:
annotations:
specificity_score: 0.1
specificity_rationale: Generic utility class/slot created during migration
custodian_types: "['*']"
custodian_types: '[''*'']'
custodian_types_rationale: Universal utility concept
broad_mappings:
- skos:Concept
OpenSearch:
is_a: DataServiceEndpointType
class_uri: hc:OpenSearch
@ -110,7 +112,8 @@ classes:
ifabsent: uri(https://opensearch.org/)
has_or_had_format:
description: Typical response formats for OpenSearch endpoints
equals_expression: '["application/opensearchdescription+xml", "application/atom+xml", "application/rss+xml"]'
equals_expression: '["application/opensearchdescription+xml", "application/atom+xml",
"application/rss+xml"]'
has_or_had_method:
description: Typical HTTP method for OpenSearch endpoints
ifabsent: string(GET)
@ -119,6 +122,8 @@ classes:
slots:
- specificity_annotation
- has_or_had_score
broad_mappings:
- skos:Concept
IIIFImageAPI:
is_a: DataServiceEndpointType
class_uri: hc:IIIFImageAPI
@ -171,6 +176,8 @@ classes:
slots:
- specificity_annotation
- has_or_had_score
broad_mappings:
- skos:Concept
IIIFPresentationAPI:
is_a: DataServiceEndpointType
class_uri: hc:IIIFPresentationAPI
@ -221,6 +228,8 @@ classes:
slots:
- specificity_annotation
- has_or_had_score
broad_mappings:
- skos:Concept
SPARQLEndpoint:
is_a: DataServiceEndpointType
class_uri: hc:SPARQLEndpoint
@ -260,7 +269,8 @@ classes:
ifabsent: uri(https://www.w3.org/TR/sparql11-protocol/)
has_or_had_format:
description: Typical response formats for SPARQL endpoints
equals_expression: '["application/sparql-results+json", "application/sparql-results+xml", "text/turtle"]'
equals_expression: '["application/sparql-results+json", "application/sparql-results+xml",
"text/turtle"]'
has_or_had_method:
description: Typical HTTP methods for SPARQL endpoints
equals_expression: '["GET", "POST"]'
@ -270,6 +280,8 @@ classes:
slots:
- specificity_annotation
- has_or_had_score
broad_mappings:
- skos:Concept
GraphQLEndpoint:
is_a: DataServiceEndpointType
class_uri: hc:GraphQLEndpoint
@ -315,6 +327,8 @@ classes:
slots:
- specificity_annotation
- has_or_had_score
broad_mappings:
- skos:Concept
AtomFeed:
is_a: DataServiceEndpointType
class_uri: hc:AtomFeed
@ -359,6 +373,8 @@ classes:
slots:
- specificity_annotation
- has_or_had_score
broad_mappings:
- skos:Concept
RSSFeed:
is_a: DataServiceEndpointType
class_uri: hc:RSSFeed
@ -401,3 +417,5 @@ classes:
slots:
- specificity_annotation
- has_or_had_score
broad_mappings:
- skos:Concept

View file

@ -100,12 +100,12 @@ classes:
department_name:
description: 'DEPRECATED 2026-01-25: Migrated to has_or_had_label slot with Label class
using has_or_had_type: "DepartmentNameType" for type discrimination.
using has_or_had_type: "DepartmentName" for type discrimination.
See has_or_had_label slot_usage for current pattern.
'
deprecated: Use has_or_had_label with Label(has_or_had_type='DepartmentNameType')
deprecated: Use has_or_had_label with Label(has_or_had_type='DepartmentName')
has_or_had_label:
description: 'MIGRATED from department_code AND department_name per slot_fixes.yaml (Rule 53, 2026-01-25).
@ -114,9 +114,9 @@ classes:
Uses Label class with has_or_had_type for discrimination:
- has_or_had_type: "DepartmentCodeType" - Short code for department
- has_or_had_type: "DepartmentCode" - Short code for department
- has_or_had_type: "DepartmentNameType" - Official name of department
- has_or_had_type: "DepartmentName" - Official name of department
'
range: Label
@ -126,19 +126,19 @@ classes:
examples:
- value:
has_or_had_text: Colonial Records Department
has_or_had_type: DepartmentNameType
has_or_had_type: DepartmentName
description: Department name (migrated from department_name)
- value:
has_or_had_text: CRD
has_or_had_type: DepartmentCodeType
has_or_had_type: DepartmentCode
description: Department code (migrated from department_code)
- value:
has_or_had_text: Paintings Department
has_or_had_type: DepartmentNameType
has_or_had_type: DepartmentName
description: Department name
- value:
has_or_had_text: PNTG
has_or_had_type: DepartmentCodeType
has_or_had_type: DepartmentCode
description: Department code
has_or_had_type:
description: 'Type classification for labels (used with has_or_had_label).
@ -252,9 +252,9 @@ classes:
has_or_had_identifier: https://nde.nl/ontology/hc/dept/nationaal-archief-colonial-records
has_or_had_label:
- has_or_had_text: Colonial Records Department
has_or_had_type: DepartmentNameType
has_or_had_type: DepartmentName
- has_or_had_text: CRD
has_or_had_type: DepartmentCodeType
has_or_had_type: DepartmentCode
has_or_had_description:
has_or_had_text: Preserves and provides access to government records from the Dutch colonial period (1602-1949). Holdings include VOC archives, colonial administration files, and diplomatic correspondence.
mandate: Established by Royal Decree of 1891 to manage and preserve records of the Dutch East Indies administration.
@ -271,9 +271,9 @@ classes:
has_or_had_identifier: https://nde.nl/ontology/hc/dept/rijksmuseum-paintings
has_or_had_label:
- has_or_had_text: Paintings Department
has_or_had_type: DepartmentNameType
has_or_had_type: DepartmentName
- has_or_had_text: PNTG
has_or_had_type: DepartmentCodeType
has_or_had_type: DepartmentCode
has_or_had_description:
has_or_had_text: Responsible for the museum's collection of paintings from the Middle Ages to the 20th century. Includes Dutch Golden Age masterpieces, Flemish Baroque, and European paintings.
is_or_was_managed_by:

View file

@ -130,10 +130,10 @@ classes:
- https://francearchives.gouv.fr/
examples:
- value:
type_id: https://nde.nl/ontology/hc/type/archive/Q2860456
glamorcubesfixphdnt_code: ARCHIVE
has_or_had_identifier: https://nde.nl/ontology/hc/type/archive/Q2860456
has_or_had_type_code: ARCHIVE
has_or_had_identifier: Q2860456
type_label:
has_or_had_label:
- Departmental Archives@en
- "D\xE9partement-Archiv@de"
- archivos departamentales@es

View file

@ -46,7 +46,9 @@ classes:
DepartmentAdministrationFonds:
is_a: DepartmentalArchivesRecordSetType
class_uri: rico:RecordSetType
description: "A rico:RecordSetType for Departmental government records (France).\n\n**RiC-O Alignment**:\nThis class is a specialized rico:RecordSetType following the fonds \norganizational principle as defined by rico-rst:Fonds.\n"
description: "A rico:RecordSetType for Departmental government records (France).\n\
\n**RiC-O Alignment**:\nThis class is a specialized rico:RecordSetType following\
\ the fonds \norganizational principle as defined by rico-rst:Fonds.\n"
exact_mappings:
- rico:RecordSetType
related_mappings:
@ -77,16 +79,22 @@ classes:
record_holder:
equals_string: DepartmentalArchives
record_holder_note:
equals_string: This RecordSetType is typically held by DepartmentalArchives custodians. Inverse of rico:isOrWasHolderOf.
equals_string: This RecordSetType is typically held by DepartmentalArchives
custodians. Inverse of rico:isOrWasHolderOf.
annotations:
specificity_score: 0.1
specificity_rationale: Generic utility class/slot created during migration
custodian_types: "['*']"
custodian_types: '[''*'']'
custodian_types_rationale: Universal utility concept
broad_mappings:
- rico:RecordSetType
- skos:Concept
PrefectureSeries:
is_a: DepartmentalArchivesRecordSetType
class_uri: rico:RecordSetType
description: "A rico:RecordSetType for Prefecture administrative records.\n\n**RiC-O Alignment**:\nThis class is a specialized rico:RecordSetType following the series \norganizational principle as defined by rico-rst:Series.\n"
description: "A rico:RecordSetType for Prefecture administrative records.\n\n\
**RiC-O Alignment**:\nThis class is a specialized rico:RecordSetType following\
\ the series \norganizational principle as defined by rico-rst:Series.\n"
exact_mappings:
- rico:RecordSetType
related_mappings:
@ -117,4 +125,8 @@ classes:
record_holder:
equals_string: DepartmentalArchives
record_holder_note:
equals_string: This RecordSetType is typically held by DepartmentalArchives custodians. Inverse of rico:isOrWasHolderOf.
equals_string: This RecordSetType is typically held by DepartmentalArchives
custodians. Inverse of rico:isOrWasHolderOf.
broad_mappings:
- rico:RecordSetType
- skos:Concept

View file

@ -119,10 +119,10 @@ classes:
- https://www.iso.org/standard/62542.html
examples:
- value:
type_id: https://nde.nl/ontology/hc/type/archive/Q244904
glamorcubesfixphdnt_code: ARCHIVE
has_or_had_identifier: https://nde.nl/ontology/hc/type/archive/Q244904
has_or_had_type_code: ARCHIVE
has_or_had_identifier: Q244904
type_label:
has_or_had_label:
- Deposit Archive@en
- Zwischenarchiv@de
- "archivo de dep\xF3sito@es"

View file

@ -46,7 +46,9 @@ classes:
DepositedRecordsFonds:
is_a: DepositArchiveRecordSetType
class_uri: rico:RecordSetType
description: "A rico:RecordSetType for Records deposited by external bodies.\n\n**RiC-O Alignment**:\nThis class is a specialized rico:RecordSetType following the fonds \norganizational principle as defined by rico-rst:Fonds.\n"
description: "A rico:RecordSetType for Records deposited by external bodies.\n\
\n**RiC-O Alignment**:\nThis class is a specialized rico:RecordSetType following\
\ the fonds \norganizational principle as defined by rico-rst:Fonds.\n"
exact_mappings:
- rico:RecordSetType
related_mappings:
@ -77,9 +79,13 @@ classes:
record_holder:
equals_string: DepositArchive
record_holder_note:
equals_string: This RecordSetType is typically held by DepositArchive custodians. Inverse of rico:isOrWasHolderOf.
equals_string: This RecordSetType is typically held by DepositArchive custodians.
Inverse of rico:isOrWasHolderOf.
annotations:
specificity_score: 0.1
specificity_rationale: Generic utility class/slot created during migration
custodian_types: "['*']"
custodian_types: '[''*'']'
custodian_types_rationale: Universal utility concept
broad_mappings:
- rico:RecordSetType
- skos:Concept

View file

@ -13,7 +13,7 @@
# - zone_description
# - warehouse_description
# - unit_description
# - type_description
# - has_or_had_description
# - treatment_description (partial)
# - transfer_location_text (partial)
# - transfer_location (partial)

View file

@ -17,7 +17,6 @@ imports:
- ../slots/is_or_was_generated_by
- ./GenerationEvent
- ./ConfidenceScore
- ../slots/start_time
- ../slots/has_or_had_time_interval
- ./TimeInterval
- ../slots/has_or_had_geographic_extent
@ -41,9 +40,16 @@ classes:
- has_or_had_label
- has_or_had_type
- is_or_was_generated_by
- start_time
- has_or_had_time_interval
- has_or_had_geographic_extent
attributes:
start_time:
range: string
required: false
description: Start timestamp for temporal detections (ISO 8601 or HH:MM:SS format). Defined as attribute.
examples:
- value: 00:03:15
- value: PT3M15S
slot_usage:
has_or_had_identifier:
range: string
@ -86,13 +92,6 @@ classes:
has_or_had_score: 0.62
has_or_had_method: ocr_extraction
description: Moderate confidence, may need review
start_time:
range: string
required: false
description: Start timestamp for temporal detections (ISO 8601 or HH:MM:SS format)
examples:
- value: 00:03:15
- value: PT3M15S
has_or_had_time_interval:
range: TimeInterval
required: false

View file

@ -33,13 +33,15 @@ classes:
review_required: 'false'
specificity_score: 0.1
specificity_rationale: Generic utility class/slot created during migration
custodian_types: "['*']"
custodian_types: '[''*'']'
custodian_types_rationale: Universal utility concept
examples:
- value:
has_or_had_code: HIGH
has_or_had_label: High Confidence
has_or_had_description: Suitable for production display
broad_mappings:
- skos:Concept
MediumDetectionLevel:
is_a: DetectionLevelType
class_uri: hc:MediumDetectionLevel
@ -67,6 +69,8 @@ classes:
has_or_had_code: MEDIUM
has_or_had_label: Medium Confidence
has_or_had_description: Review recommended before production use
broad_mappings:
- skos:Concept
LowDetectionLevel:
is_a: DetectionLevelType
class_uri: hc:LowDetectionLevel
@ -96,6 +100,8 @@ classes:
has_or_had_code: LOW
has_or_had_label: Low Confidence
has_or_had_description: Requires human review before use
broad_mappings:
- skos:Concept
UncertainDetectionLevel:
is_a: DetectionLevelType
class_uri: hc:UncertainDetectionLevel
@ -125,6 +131,8 @@ classes:
has_or_had_code: UNCERTAIN
has_or_had_label: Uncertain
has_or_had_description: Manual verification required
broad_mappings:
- skos:Concept
VerifiedDetectionLevel:
is_a: DetectionLevelType
class_uri: hc:VerifiedDetectionLevel
@ -152,3 +160,5 @@ classes:
has_or_had_code: VERIFIED
has_or_had_label: Human Verified
has_or_had_description: Manually confirmed by curator
broad_mappings:
- skos:Concept

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