Matterhorn RDF
Introduction
Matterhorn RDF is the data/metadata model that docuteam uses for archival information packages (AIP) on its new platform based on Fedora 6. It follows similar concepts than Matterhorn METS, which is primarily used as SIP/DIP format.
Matterhorn RDF is primarily based on the following standards and technologies:
- RiC-O Records in Contexts ontology for structural and descriptive metadata
- PREMIS for technical and administrative metadata
Basic AIP structure
As a linked data plattform, Fedora 6 uses URIs to uniquely identify its resources (in addition to the PID used already in Fedora 3 or other persistent identifiers like DOI etc.). Each URI starts with the base URL of the Fedora repository server.
Example: 000repository-cosmos.docuteam.cloud/fcrepo
Namespaces
All resources in Fedora 6 are assigned to a namespace in order to differentiate between different sections or organisational units in Fedora. When ingesting SIPs, the namespace is assigned based on the respective submission agreement.
Example: 000repository-cosmos.docuteam.cloud/fcrepo/institution
RecordResource
The basic AIP in Fedora 6 is a rico:RecordResource
and its subordinate resources. For each file or folder in the SIP a rico:RecordResource
will be created and used to describes its intellectual content.
Example: 000repository-cosmos.docuteam.cloud/fcrepo/institution1/rr_20230314162820218
Separate resources with so-called hash URIs are created for the metadata elements of the RR and linked to the RR. If the rico:RecordResource
contains a title, a rico:Title
resource is created that contains the title string and the type of the title. The hash URI causes the title to be a stand-alone resource from SPARQL's point of view, but in Fedora 6 it is stored as part of the record resource.
Example: 000repository-cosmos.docuteam.cloud/fcrepo/institution1/rr_20230314162820218#unittitle_d123
Repeated metadata elements are stored as separate resources. The hash URI contains a randomly generated value in each case, the order of the elements is specified with the predicate schema:position
:
<http://example.com/base/rr_20230815160710362#unittitlevarying_d17e403> a <https://www.ica.org/standards/RiC/ontology#Title>;
<https://www.ica.org/standards/RiC/ontology#isOrWasTitleOf> <http://example.com/base/rr_20230815160710362>;
<https://www.ica.org/standards/RiC/ontology#hasOrHadCategory> <http://docuteam.ch/vocab/titlecategory/unittitlevarying>;
<https://www.ica.org/standards/RiC/ontology#textualValue> "Titelvarianten 1";
<http://schema.org/position> "1" .
<http://example.com/base/rr_20230815160710362#unittitlevarying_d17e406> a <https://www.ica.org/standards/RiC/ontology#Title>;
<https://www.ica.org/standards/RiC/ontology#isOrWasTitleOf> <http://example.com/base/rr_20230815160710362>;
<https://www.ica.org/standards/RiC/ontology#hasOrHadCategory> <http://docuteam.ch/vocab/titlecategory/unittitlevarying>;
<https://www.ica.org/standards/RiC/ontology#textualValue> "Titelavarianten 2";
<http://schema.org/position> "2" .
For a full list of metadata elements and their RDF mapping, see List of metadata elements.
In order to store the hierarchical structure of an SIP (and in order to rebuild it during DIP creation) rico:RecordResource
are linked together in two ways:
- Hierarchical relationship using the
rico:isOrWasIncluded
property: Points from a childrico:RecordResource
to its parentrico:RecordResource
. - Order relationship using the
rico:followsOrFollowed
property: Points from arico:RecordResource
to its preceeding sibling.
Deposition
Besides the rico:RecordResource
created for folders and files an additional rico:RecordResource
is created for the SIP as a whole. It has the type deposition
and has its own URI.
The rico:RecordResource
for the root folder or root file links to this deposition using rico:isOrWasIncluded
.
Example: 000repository-cosmos.docuteam.cloud/fcrepo/institution1/d_20230314162820219
The deposition links to the submission agreement of the SIP.
Example: 000repository-cosmos.docuteam.cloud/fcrepo/institution1/sa_ds01
Instantiation
Each rico:RecordResource
is linked to a rico:Instantiation
describing the digital instantiation of the intellectual concept. rico:Instantiation
are the same as premis:Representation
. rico:Instantiation
document technical metadata and exist both for folders and files.
rico:Instantiation
are linked to their parent rico:RecordResource
using the rico:isOrWasInstantiationOf
predicate.
A rico:RecordResource
may contain multiple instantiations. This will happen in the following cases:
- A file was replaced by another file in packer or during the ingest process
- A file was converted into another format in packer or during the ingest process
- A file was replaced by another file in Fedora 6 (Preservation Action)
In case of replacements or migration where the originals are not kept, the original file is not kept in AIP (though it is kept als an old version in the OCFC storage). However its metadata, i.e. the rico:Instantiation
is still present and can be consulted.
Example: 000repository-cosmos.docuteam.cloud/fcrepo/institution1/rr_20230314162820218/i_20230314162820200
The instantiation is also linked to premis:Events
:
Example: 000repository-cosmos.docuteam.cloud/fcrepo/institution1/rr_20230314162820218/i_20230314162820200#event_20230314162820400
The PID is also linked to the instantiation, so that the instantiation and its record resource are uniquely identified:
Example: 000repository-cosmos.docuteam.cloud/fcrepo/institution1/rr_20230314162820218/i_20230314162820200#pid_d123
Multiple Instantiations for the same RecordResource
In case of file format migrations, were the originals are kept (either in packer or in feeder) the original file in the Matterhorn METS SIP is replaced by a folder which contains the original files and the file in the new format. This structure is treated differenty.
As the two files are instantiations of the same intellectual entity, a rico:RecordResource
is only created for the folder and not for the two version of the file. Instead, the rico:RecordResource
contains multiple instantiations, for both of which a binary exists in the AIP.
- An instantiation for the folder (with rico:hasOrHadCategory = 'filemigrationfolder')
- The instantiation of the original file(with rico:hasOrHadCategory = 'file')
- The instantiation of the file in the new format (with rico:hasOrHadCategory = 'file')
All three instantiations have their own PID. In this way, DIPs can be created both with the PID of the folder (which contains both versions of the file) and with the PIDs of the files (if only one version of the file is needed). In both cases, the structure of the Matterhorn METS SIP is restored when the DIP is created.
Binaries
The premis:Binary
is the representation of the physical file. Each binary is linked to an rico:Instantiation
. In the current implementation of the repository stack, rico:Instantiation
are either linked to no binaries (in case of folder instantiations) or just to a single binary (in case of file instantiation). However the data model makes it possible to link multiple binaries to a single instantiation:
- RecordResource: Book
- Instantiation 1: Book as PDF
- Binary 1.1: file.pdf
- Instantiation 2: Book as TIFF
- Binary 2.1: page1.tiff
- Binary 2.2: page2.tiff
- Binary 2.3: page3.tiff
- Instantiation 1: Book as PDF
Like with rico:Instantiation
, premis:Binary
exist even if the file is not stored anymore in Fedora, in order to document technical metadata of the original files.
Example: 000repository-cosmos.docuteam.cloud/fcrepo/institution1/rr_20230314162820218/i_20230314162820200/b_20230314162820900
The binary contains a pointer (premis:storedAt
) to the Fedora content node where the fedora binary is kept. This predicate can be used to differentiate between real binaries (where the binary is kept in Fedora) and binaries for older versions.
Example: 000repository-cosmos.docuteam.cloud/fcrepo/institution1/rr_20230314162820218/i_20230314162820200/b_20230314162820900/content
For a full example, consult the Matterhorn RDF examples.
List of metadata elements
The following list documents the RDF triples generated for each accessorNameId
. Consult the list of Matterhorn METS metadata elements to see which EAD element is associated with the accessors.
"value" is used as a placeholder for the string.
otherLevelName
?rico:RecordResource rico:type "value" .
accessPolicy
?rico:RuleRelation rico:ruleRelationHasTarget ?rico:RecordResource .
?rico:Rule rico:ruleIsSourceOfRuleRelation ?rico:RuleRelation ;
rico:hasOrHadRuleType <http://docuteam.ch/vocab/ruletypes/accesspolicy> ;
rico:name "value" .
accessRestrictionClassification
?rico:RuleRelation rico:ruleRelationHasTarget ?rico:RecordResource .
?rico:Rule rico:ruleIsSourceOfRuleRelation ?rico:RuleRelation ;
rico:hasOrHadRuleType <http://docuteam.ch/vocab/ruletypes/accessrestrictionclassification> ;
rico:name "value" .
accessRestrictionClosureYear
?rico:RuleRelation rico:ruleRelationHasTarget ?rico:RecordResource .
?rico:Date rico:isDateAssociatedWith ?rico:RuleRelation ;
rico:hasOrHadCategory <http://docuteam.ch/vocab/datecategory/accessrestrictionclosureyear> ;
rico:normalizedDateValue "value" .
accessRestrictionExplanation
?rico:RuleRelation rico:ruleRelationHasTarget ?rico:RecordResource .
?rico:Rule rico:ruleIsSourceOfRuleRelation ?rico:RuleRelation ;
rico:hasOrHadRuleType <http://docuteam.ch/vocab/ruletypes/accessrestrictionexplanation> ;
rico:name "value" .
accessRestrictionIsMetadataPublic
?rico:RuleRelation rico:ruleRelationHasTarget ?rico:RecordResource .
?rico:Rule rico:ruleIsSourceOfRuleRelation ?rico:RuleRelation ;
rico:hasOrHadRuleType <http://docuteam.ch/vocab/ruletypes/accessrestrictionismetadatapublic> ;
rico:name "value" .
accessRestrictionIsPublic
?rico:RuleRelation rico:ruleRelationHasTarget ?rico:RecordResource .
?rico:Rule rico:ruleIsSourceOfRuleRelation ?rico:RuleRelation ;
rico:hasOrHadRuleType <http://docuteam.ch/vocab/ruletypes/accessrestrictionispublic> ;
rico:name "value" .
accessRestrictionPeriod
?rico:RuleRelation rico:ruleRelationHasTarget ?rico:RecordResource .
?rico:Rule rico:ruleIsSourceOfRuleRelation ?rico:RuleRelation ;
rico:hasOrHadRuleType <http://docuteam.ch/vocab/ruletypes/accessrestrictionperiod> ;
rico:name "value" .
accessRestrictionPeriodBaseYear
?rico:RuleRelation rico:ruleRelationHasTarget ?rico:RecordResource .
?rico:Date rico:isDateAssociatedWith ?rico:RuleRelation ;
rico:hasOrHadCategory <http://docuteam.ch/vocab/datecategory/accessrestrictionperiodbaseyear> ;
rico:normalizedDateValue "value" .
accessRestrictionPrivacy
?rico:RuleRelation rico:ruleRelationHasTarget ?rico:RecordResource .
?rico:Rule rico:ruleIsSourceOfRuleRelation ?rico:RuleRelation ;
rico:hasOrHadRuleType <http://docuteam.ch/vocab/ruletypes/accessrestrictionprivacy> ;
rico:name "value" .
accessRestrictionStatus
?rico:RuleRelation rico:ruleRelationHasTarget ?rico:RecordResource .
?rico:Rule rico:ruleIsSourceOfRuleRelation ?rico:RuleRelation ;
rico:hasOrHadRuleType <http://docuteam.ch/vocab/ruletypes/accessrestrictionstatus> ;
rico:name "value" .
accessRestrictionStatusExplanation
?rico:RuleRelation rico:ruleRelationHasTarget ?rico:RecordResource .
?rico:Rule rico:ruleIsSourceOfRuleRelation ?rico:RuleRelation ;
rico:hasOrHadRuleType <http://docuteam.ch/vocab/ruletypes/accessrestrictionstatusexplanation> ;
rico:name "value" .
retentionPeriodBaseYear
?rico:RuleRelation rico:ruleRelationHasTarget ?rico:RecordResource .
?rico:Date rico:isDateAssociatedWith ?rico:RuleRelation ;
rico:hasOrHadCategory <http://docuteam.ch/vocab/datecategory/retentionperiodbaseyear> ;
rico:normalizedDateValue "value" .
accessRestriction
?rico:RuleRelation rico:ruleRelationHasTarget ?rico:RecordResource .
?rico:Rule rico:ruleIsSourceOfRuleRelation ?rico:RuleRelation ;
rico:hasOrHadRuleType <http://docuteam.ch/vocab/ruletypes/accessrestriction> ;
rico:name "value" .
retentionPeriod
?rico:RuleRelation rico:ruleRelationHasTarget ?rico:RecordResource .
?rico:Rule rico:ruleIsSourceOfRuleRelation ?rico:RuleRelation ;
rico:hasOrHadRuleType <http://docuteam.ch/vocab/ruletypes/retentionperiod> ;
rico:name "value" .
retentionPolicy
?rico:RuleRelation rico:ruleRelationHasTarget ?rico:RecordResource .
?rico:Rule rico:ruleIsSourceOfRuleRelation ?rico:RuleRelation ;
rico:hasOrHadRuleType <http://docuteam.ch/vocab/ruletypes/retentionpolicy> ;
rico:name "value" .
usagePermission
?rico:RuleRelation rico:ruleRelationHasTarget ?rico:RecordResource .
?rico:Rule rico:ruleIsSourceOfRuleRelation ?rico:RuleRelation ;
rico:hasOrHadRuleType <http://docuteam.ch/vocab/ruletypes/usagepermission> ;
rico:name "value" .
usagePermissionExpiringDate
?rico:RuleRelation rico:ruleRelationHasTarget ?rico:RecordResource .
?rico:Date rico:isDateAssociatedWith ?rico:RuleRelation ;
rico:hasOrHadCategory <http://docuteam.ch/vocab/datetypes/usagepermissionexpiringdate> ;
rico.normalizedDateValue "value" .
accruals
?rico:Appellation rico:isOrWasAppellationOf ?rico:RecordResource ;
rico:hasOrHadCategory <http://docuteam.ch/vocab/appellationcategory/accruals> ;
rico:textualValue "value" .
accessNr
?rico:Event rico:isEventAssociatedWith ?rico:RecordResource ;
rico:hasEventType <http://docuteam.ch/vocab/eventtypes/acqinfo> .
?rico:Appellation rico:isOrWasAppellationOf ?rico:Event ;
rico:hasOrHadCategory <http://docuteam.ch/vocab/appellationcategory/accessnr> ;
rico:textualValue "value" .
reproductions
?rico:Appellation rico:isOrWasAppellationOf ?rico:RecordResource ;
rico:hasOrHadCategory <http://docuteam.ch/vocab/appellationcategory/reproductions> ;
rico:textualValue "value" .
appraisalDateDisposed
?rico:Event rico:isEventAssociatedWith ?rico:RecordResource ;
rico:hasEventType <http://docuteam.ch/vocab/eventtypes/appraisal> .
?rico:Date rico:isDateAssociatedWith ?rico:Event ;
rico:hasOrHadCategory <http://docuteam.ch/vocab/datecategory/appraisaldatedisposed> ;
rico:normalizedDateValue "value" .
appraisalHoldRule
?rico:Event rico:isEventAssociatedWith ?rico:RecordResource ;
rico:hasEventType <http://docuteam.ch/vocab/eventtypes/appraisal> .
?rico:Rule rico:regulatesOrRegulated ?rico:Event ;
rico:hasOrHadRuleType <http://docuteam.ch/vocab/ruletypes/appraisalholdrule> ;
rico:name "value" .
appraisalHoldOwner
?rico:Event rico:isEventAssociatedWith ?rico:RecordResource ;
rico:hasEventType <http://docuteam.ch/vocab/eventtypes/appraisal> .
?rico:RuleRelation rico:ruleRelationHasSource ?rico:Event ;
rico:hasOrHadCategory <http://docuteam.ch/vocab/agentcategory/appraisalholdowner> .
?rico:Agent rico:thingIsTargetOfRuleRelation ?rico:RuleRelation ;
rico:name "value" .
appraisalHoldReason
?rico:Event rico:isEventAssociatedWith ?rico:RecordResource ;
rico:hasEventType <http://docuteam.ch/vocab/eventtypes/appraisal> .
?rico:Rule rico:regulatesOrRegulated ?rico:Event ;
rico:hasOrHadRuleType <http://docuteam.ch/vocab/ruletypes/appraisalholdrule> ;
rico:name "value" .
appraisalHoldStartDate
?rico:Event rico:isEventAssociatedWith ?rico:RecordResource ;
rico:hasEventType <http://docuteam.ch/vocab/eventtypes/appraisal> .
?rico:Date rico:isBeginningDateOf ?rico:Event ;
rico:hasOrHadCategory <http://docuteam.ch/vocab/datecategory/appraisalholdstartdate> ;
rico:normalizedDateValue "value" .
appraisalHoldEndDate
?rico:Event rico:isEventAssociatedWith ?rico:RecordResource ;
rico:hasEventType <http://docuteam.ch/vocab/eventtypes/appraisal> .
?rico:Date rico:isEndDateOf ?rico:Event ;
rico:hasOrHadCategory <http://docuteam.ch/vocab/datecategory/appraisalholdenddate> ;
rico:normalizedDateValue "value" .
appraisalHoldReassessingDate
?rico:Event rico:isEventAssociatedWith ?rico:RecordResource ;
rico:hasEventType <http://docuteam.ch/vocab/eventtypes/appraisal> .
?rico:Date rico:isDateAssociatedWith ?rico:Event ;
rico:hasOrHadCategory <http://docuteam.ch/vocab/datecategory/appraisalholdreassessingdate> ;
rico:normalizedDateValue "value" .
appraisalIsOnHold
?rico:Event rico:isEventAssociatedWith ?rico:RecordResource ;
rico:hasEventType <http://docuteam.ch/vocab/eventtypes/appraisal> .
?rico:Rule rico:regulatesOrRegulated ?rico:Event ;
rico:hasOrHadRuleType <http://docuteam.ch/vocab/ruletypes/appraisalisonhold> ;
rico:name "value" .
appraisalRetentionPeriod
?rico:Event rico:isEventAssociatedWith ?rico:RecordResource ;
rico:hasEventType <http://docuteam.ch/vocab/eventtypes/appraisal> .
?rico:Rule rico:regulatesOrRegulated ?rico:Event ;
rico:hasOrHadRuleType <http://docuteam.ch/vocab/ruletypes/appraisalretentionperiod> ;
rico:name "value" .
appraisalAndDestruction
?rico:Event rico:isEventAssociatedWith ?rico:RecordResource ;
rico:hasEventType <http://docuteam.ch/vocab/eventtypes/appraisal> .
?rico:Rule rico:regulatesOrRegulated ?rico:Event ;
rico:hasOrHadRuleType <http://docuteam.ch/vocab/ruletypes/appraisalandestruction> ;
rico:name "value" .
arrangement
?rico:Appellation rico:isOrWasAppellationOf ?rico:RecordResource ;
rico:hasOrHadCategory <http://docuteam.ch/vocab/appellationcategory/arrangement> ;
rico:textualValue "value" .
bibliography
?rico:Appellation rico:isOrWasAppellationOf ?rico:RecordResource ;
rico:hasOrHadCategory <http://docuteam.ch/vocab/appellationcategory/bibliography> ;
rico:textualValue "value" .
dateOfBirth
?rico:Appellation rico:isOrWasAppellationOf ?rico:RecordResource ;
rico:hasOrHadCategory <http://docuteam.ch/vocab/appellationcategory/dateofbirth> ;
rico:normalizedDateValue "value" .
firstname
?rico:Appellation rico:isOrWasAppellationOf ?rico:RecordResource ;
rico:hasOrHadCategory <http://docuteam.ch/vocab/appellationcategory/firstname> ;
rico:textualValue "value" .
lastname
?rico:Appellation rico:isOrWasAppellationOf ?rico:RecordResource ;
rico:hasOrHadCategory <http://docuteam.ch/vocab/appellationcategory/lastname> ;
rico:textualValue "value" .
nationality
?rico:Appellation rico:isOrWasAppellationOf ?rico:RecordResource ;
rico:hasOrHadCategory <http://docuteam.ch/vocab/appellationcategory/nationality> ;
rico:textualValue "value" .
sex
?rico:Appellation rico:isOrWasAppellationOf ?rico:RecordResource ;
rico:hasOrHadCategory <http://docuteam.ch/vocab/appellationcategory/sex> ;
rico:textualValue "value" .
deathOfAuthor
?rico:Appellation rico:isOrWasAppellationOf ?rico:RecordResource ;
rico:hasOrHadCategory <http://docuteam.ch/vocab/appellationcategory/deathofauthor> ;
rico:textualValue "value" .
biographicalHistory
?rico:Appellation rico:isOrWasAppellationOf ?rico:RecordResource ;
rico:hasOrHadCategory <http://docuteam.ch/vocab/appellationcategory/biographicalhistory> ;
rico:textualValue "value" .
institutionCreator
?rico:AgentOriginationRelation rico:agentOriginationRelationHasSource ?rico:RecordResource ;
rico:hasOrHadCategory <http://docuteam.ch/vocab/agentcategory/institutioncreator> .
?rico:Agent rico:agentIsTargetOfAgentOriginationRelation ?rico:AgentOriginationRelation ;
rico:name "value" .
institutionInvolved
?rico:AgentOriginationRelation rico:agentOriginationRelationHasSource ?rico:RecordResource ;
rico:hasOrHadCategory <http://docuteam.ch/vocab/agentcategory/institutioncreator> .
?rico:Agent rico:agentIsTargetOfAgentOriginationRelation ?rico:AgentOriginationRelation ;
rico:name "value" .
institution
?rico:AgentOriginationRelation rico:agentOriginationRelationHasSource ?rico:RecordResource ;
rico:hasOrHadCategory <http://docuteam.ch/vocab/agentcategory/institutioninvolved> .
?rico:Agent rico:agentIsTargetOfAgentOriginationRelation ?rico:AgentOriginationRelation ;
rico:name "value" .
familyName
?rico:AgentOriginationRelation rico:agentOriginationRelationHasSource ?rico:RecordResource ;
rico:hasOrHadCategory <http://docuteam.ch/vocab/agentcategory/familyname> .
?rico:Agent rico:agentIsTargetOfAgentOriginationRelation ?rico:AgentOriginationRelation ;
rico:name "value" .
function
?rico:AppellationRelation rico:appellationRelationHasTarget ?rico:RecordResource ;
rico:hasOrHadCategory <http://docuteam.ch/vocab/appellationcategory/function> .
?rico:Appellation rico:appellationIsSourceOfAppellationRelation ?rico:AppellationRelation ;
rico:name "value" .
objectType
?rico:DocumentaryFormType rico:isDocumentaryFormTypeOf ?rico:RecordResource ;
rico:hasOrHadCategory <http://docuteam.ch/vocab/documentaryformtypes/objecttype> ;
rico:name "value" .
geogName
?rico:PlaceRelation rico:placeRelationHasTarget ?rico:RecordResource ;
rico:hasOrHadCategory <http://docuteam.ch/vocab/placetypes/geogname> .
?rico:Place rico:placeIsSourceOfPlaceRelation ?rico:PlaceRelation ;
rico:name "value" .
authorGeneric
?rico:AgentOriginationRelation rico:agentOriginationRelationHasSource ?rico:RecordResource ;
rico:hasOrHadCategory <http://docuteam.ch/vocab/agentcategory/authorgeneric> .
?rico:Agent rico:agentIsTargetOfAgentOriginationRelation ?rico:AgentOriginationRelation ;
rico:name "value" .
compartment
?rico:AgentOriginationRelation rico:agentOriginationRelationHasSource ?rico:RecordResource ;
rico:hasOrHadCategory <http://docuteam.ch/vocab/agentcategory/compartment> .
?rico:Agent rico:agentIsTargetOfAgentOriginationRelation ?rico:AgentOriginationRelation ;
rico:name "value" .
*designer *
?rico:AgentOriginationRelation rico:agentOriginationRelationHasSource ?rico:RecordResource ;
rico:hasOrHadCategory <http://docuteam.ch/vocab/agentcategory/designer> .
?rico:Agent rico:agentIsTargetOfAgentOriginationRelation ?rico:AgentOriginationRelation ;
rico:name "value" .
editor
?rico:AgentOriginationRelation rico:agentOriginationRelationHasSource ?rico:RecordResource ;
rico:hasOrHadCategory <http://docuteam.ch/vocab/agentcategory/editor> .
?rico:Agent rico:agentIsTargetOfAgentOriginationRelation ?rico:AgentOriginationRelation ;
rico:name "value" .
fundingSource
?rico:AgentOriginationRelation rico:agentOriginationRelationHasSource ?rico:RecordResource ;
rico:hasOrHadCategory <http://docuteam.ch/vocab/agentcategory/fundingsource> .
?rico:Agent rico:agentIsTargetOfAgentOriginationRelation ?rico:AgentOriginationRelation ;
rico:name "value" .
*illustrator *
?rico:AgentOriginationRelation rico:agentOriginationRelationHasSource ?rico:RecordResource ;
rico:hasOrHadCategory <http://docuteam.ch/vocab/agentcategory/illustrator> .
?rico:Agent rico:agentIsTargetOfAgentOriginationRelation ?rico:AgentOriginationRelation ;
rico:name "value" .
institute
?rico:AgentOriginationRelation rico:agentOriginationRelationHasSource ?rico:RecordResource ;
rico:hasOrHadCategory <http://docuteam.ch/vocab/agentcategory/institute> .
?rico:Agent rico:agentIsTargetOfAgentOriginationRelation ?rico:AgentOriginationRelation ;
rico:name "value" .
journal
?rico:AppellationRelation rico:appellationRelationHasTarget ?rico:RecordResource ;
rico:hasOrHadCategory <http://docuteam.ch/vocab/appellationcategory/journal> .
?rico:Appellation rico:appellationIsSourceOfAppellationRelation ?rico:AppellationRelation ;
rico:name "value" .
keyword
?rico:AppellationRelation rico:appellationRelationHasTarget ?rico:RecordResource ;
rico:hasOrHadCategory <http://docuteam.ch/vocab/appellationcategory/keyword> .
?rico:Appellation rico:appellationIsSourceOfAppellationRelation ?rico:AppellationRelation ;
rico:name "value" .
location
?rico:PlaceRelation rico:placeRelationHasTarget ?rico:RecordResource ;
rico:hasOrHadCategory <http://docuteam.ch/vocab/placetypes/location> .
?rico:Place rico:placeIsSourceOfPlaceRelation ?rico:PlaceRelation ;
rico:name "value" .
method
?rico:AppellationRelation rico:appellationRelationHasTarget ?rico:RecordResource ;
rico:hasOrHadCategory <http://docuteam.ch/vocab/appellationcategory/method> .
?rico:Appellation rico:appellationIsSourceOfAppellationRelation ?rico:AppellationRelation ;
rico:name "value" .
*photographer *
?rico:AgentOriginationRelation rico:agentOriginationRelationHasSource ?rico:RecordResource ;
rico:hasOrHadCategory <http://docuteam.ch/vocab/agentcategory/photographer> .
?rico:Agent rico:agentIsTargetOfAgentOriginationRelation ?rico:AgentOriginationRelation ;
rico:name "value" .
placeOfPublication
?rico:PlaceRelation rico:placeRelationHasTarget ?rico:RecordResource ;
rico:hasOrHadCategory <http://docuteam.ch/vocab/placetypes/placeofpublication> .
?rico:Place rico:placeIsSourceOfPlaceRelation ?rico:PlaceRelation ;
rico:name "value" .
publisher
?rico:AgentOriginationRelation rico:agentOriginationRelationHasSource ?rico:RecordResource ;
rico:hasOrHadCategory <http://docuteam.ch/vocab/agentcategory/publisher> .
?rico:Agent rico:agentIsTargetOfAgentOriginationRelation ?rico:AgentOriginationRelation ;
rico:name "value" .
status
?rico:AppellationRelation rico:appellationRelationHasTarget ?rico:RecordResource ;
rico:hasOrHadCategory <http://docuteam.ch/vocab/appellationcategory/status> .
?rico:Appellation rico:appellationIsSourceOfAppellationRelation ?rico:AppellationRelation ;
rico:name "value" .
submitStatus
?rico:AppellationRelation rico:appellationRelationHasTarget ?rico:RecordResource ;
rico:hasOrHadCategory <http://docuteam.ch/vocab/appellationcategory/submitstatus> .
?rico:Appellation rico:appellationIsSourceOfAppellationRelation ?rico:AppellationRelation ;
rico:name "value" .
typeOfAcquisition
?rico:AppellationRelation rico:appellationRelationHasTarget ?rico:RecordResource ;
rico:hasOrHadCategory <http://docuteam.ch/vocab/appellationcategory/typeofacquisition> .
?rico:Appellation rico:appellationIsSourceOfAppellationRelation ?rico:AppellationRelation ;
rico:name "value" .
university
?rico:AgentOriginationRelation rico:agentOriginationRelationHasSource ?rico:RecordResource ;
rico:hasOrHadCategory <http://docuteam.ch/vocab/agentcategory/university> .
?rico:Agent rico:agentIsTargetOfAgentOriginationRelation ?rico:AgentOriginationRelation ;
rico:name "value" .
occupation
?rico:AppellationRelation rico:appellationRelationHasTarget ?rico:RecordResource ;
rico:hasOrHadCategory <http://docuteam.ch/vocab/appellationcategory/occupation> .
?rico:Appellation rico:appellationIsSourceOfAppellationRelation ?rico:AppellationRelation ;
rico:name "value" .
author
?rico:AgentOriginationRelation rico:agentOriginationRelationHasSource ?rico:RecordResource ;
rico:hasOrHadCategory <http://docuteam.ch/vocab/agentcategory/author> .
?rico:Agent rico:agentIsTargetOfAgentOriginationRelation ?rico:AgentOriginationRelation ;
rico:name "value" .
creator
?rico:AgentOriginationRelation rico:agentOriginationRelationHasSource ?rico:RecordResource ;
rico:hasOrHadCategory <http://docuteam.ch/vocab/agentcategory/creator> .
?rico:Agent rico:agentIsTargetOfAgentOriginationRelation ?rico:AgentOriginationRelation ;
rico:name "value" .
involved
?rico:AgentOriginationRelation rico:agentOriginationRelationHasSource ?rico:RecordResource ;
rico:hasOrHadCategory <http://docuteam.ch/vocab/agentcategory/involved> .
?rico:Agent rico:agentIsTargetOfAgentOriginationRelation ?rico:AgentOriginationRelation ;
rico:name "value" .
responsible
?rico:AgentOriginationRelation rico:agentOriginationRelationHasSource ?rico:RecordResource ;
rico:hasOrHadCategory <http://docuteam.ch/vocab/agentcategory/responsible> .
?rico:Agent rico:agentIsTargetOfAgentOriginationRelation ?rico:AgentOriginationRelation ;
rico:name "value" .
staff
?rico:AgentOriginationRelation rico:agentOriginationRelationHasSource ?rico:RecordResource ;
rico:hasOrHadCategory <http://docuteam.ch/vocab/agentcategory/staff> .
?rico:Agent rico:agentIsTargetOfAgentOriginationRelation ?rico:AgentOriginationRelation ;
rico:name "value" .
subjectGeneral
?rico:AppellationRelation rico:appellationRelationHasTarget ?rico:RecordResource ;
rico:hasOrHadCategory <http://docuteam.ch/vocab/appellationcategory/subjectgeneral> .
?rico:Appellation rico:appellationIsSourceOfAppellationRelation ?rico:AppellationRelation ;
rico:name "value" .
subject
?rico:AppellationRelation rico:appellationRelationHasTarget ?rico:RecordResource ;
rico:hasOrHadCategory <http://docuteam.ch/vocab/appellationcategory/subject> .
?rico:Appellation rico:appellationIsSourceOfAppellationRelation ?rico:AppellationRelation ;
rico:name "value" .
uniformTitle
?rico:AppellationRelation rico:appellationRelationHasTarget ?rico:RecordResource ;
rico:hasOrHadCategory <http://docuteam.ch/vocab/appellationcategory/uniformtitle> .
?rico:Appellation rico:appellationIsSourceOfAppellationRelation ?rico:AppellationRelation ;
rico:name "value" .
modeOfAcquisition
?rico:Event rico:isEventAssociatedWith ?rico:RecordResource ;
rico:hasEventType <http://docuteam.ch/vocab/eventtypes/acqinfo> .
?rico:Appellation rico:isOrWasAppellationOf ?rico:Event ;
rico:hasOrHadCategory <http://docuteam.ch/vocab/appellationcategory/modeofacquisition> ;
rico:textualValue "value" .
sourceType
?rico:Appellation rico:isOrWasAppellationOf ?rico:RecordResource ;
rico:hasOrHadCategory <http://docuteam.ch/vocab/appellationcategory/sourcetype> ;
rico:textualValue "value" .
archivalHistory
?rico:Event rico:isEventAssociatedWith ?rico:RecordResource ;
rico:hasEventType <http://docuteam.ch/vocab/eventtypes/archivalhistory> ;
rico:history "value" .
PID
?rico:Instantiation rico:isInstantiationOf ?rico:RecordResource .
?rico:Identifier rico:isOrWasIdentifierOf ?rico:Instantiation ;
rico:hasIdentifierType <http://docuteam.ch/vocab/identifiertypes/pid> ;
rico:normalizedValue "value" .
registrationURL
?rico:Identifier rico:isOrWasIdentifierOf ?rico:RecordResource ;
rico:hasIdentifierType <http://docuteam.ch/vocab/identifiertypes/registrationurl> ;
rico:normalizedValue "value" .
sourceURL
?rico:Identifier rico:isOrWasIdentifierOf ?rico:RecordResource ;
rico:hasIdentifierType <http://docuteam.ch/vocab/identifiertypes/sourceurl> ;
rico:normalizedValue "value" .
abstract
?rico:Appellation rico:isOrWasAppellationOf ?rico:RecordResource ;
rico:hasOrHadCategory <http://docuteam.ch/vocab/appellationcategory/abstract> ;
rico:textualValue "value" .
languageNotes
?rico:Appellation rico:isOrWasAppellationOf ?rico:RecordResource ;
rico:hasOrHadCategory <http://docuteam.ch/vocab/appellationcategory/languagenotes> ;
rico:texualValue "value" .
language
?rico:Language rico:isOrWasLanguageOf ?rico:RecordResource ;
rico:hasOrHadCategory <http://docuteam.ch/vocab/languagecategory/language> ;
rico:name "value" .
cartographicMaterial
?rico:CarrierType rico:isCarrierTypeOf ?rico:RecordResource ;
rico:hasOrHadCategory <http://docuteam.ch/vocab/carriertypes/cartographicmaterial> ;
rico:name "value" .
scale
?rico:CarrierType rico:isCarrierTypeOf ?rico:RecordResource ;
rico:hasOrHadCategory <http://docuteam.ch/vocab/carriertypes/scale> ;
rico:name "value" .
origination
?rico:AgentOriginationRelation rico:agentOriginationRelationHasSource ?rico:RecordResource ;
rico:hasOrHadCategory <http://docuteam.ch/vocab/agentcategory/origination> .
?rico:Agent rico:agentIsTargetOfAgentOriginationRelation ?rico:AgentOriginationRelation ;
rico:name "value" .
originationAgency
?rico:AgentOriginationRelation rico:agentOriginationRelationHasSource ?rico:RecordResource ;
rico:hasOrHadCategory <http://docuteam.ch/vocab/agentcategory/originationagency> .
?rico:Agent rico:agentIsTargetOfAgentOriginationRelation ?rico:AgentOriginationRelation ;
rico:name "value" .
originationDepartment
?rico:AgentOriginationRelation rico:agentOriginationRelationHasSource ?rico:RecordResource ;
rico:hasOrHadCategory <http://docuteam.ch/vocab/agentcategory/originationdepartment> .
?rico:Agent rico:agentIsTargetOfAgentOriginationRelation ?rico:AgentOriginationRelation ;
rico:name "value" .
format
?rico:RecordResourceExtent rico:isExtentOf ?rico:RecordResource ;
rico:hasExtentType <http://docuteam.ch/vocab/extenttypes/format> ;
rico:textualValue "value" .
size
?rico:RecordResourceExtent rico:isExtentOf ?rico:RecordResource ;
rico:hasExtentType <http://docuteam.ch/vocab/extenttypes/size> ;
rico:textualValue "value" .
*dimensionsCategory *
?rico:CarrierType rico:isCarrierTypeOf ?rico:RecordResource ;
rico:hasOrHadCategory <http://docuteam.ch/vocab/carriertypes/dimensionscategory> ;
rico:name "value" .
dimensions
?rico:RecordResourceExtent rico:isExtentOf ?rico:RecordResource ;
rico:hasExtentType <http://docuteam.ch/vocab/extenttypes/dimensions> ;
rico:dimensions "value" .
extentNote
?rico:RecordResourceExtent rico:isExtentOf ?rico:RecordResource ;
rico:hasExtentType <http://docuteam.ch/vocab/extenttypes/extentnote> ;
rico:textualValue "value" .
*extentPrint *
?rico:RecordResourceExtent rico:isExtentOf ?rico:RecordResource ;
rico:hasExtentType <http://docuteam.ch/vocab/extenttypes/extentprint> ;
rico:textualValue "value" .
extent
?rico:RecordResourceExtent rico:isExtentOf ?rico:RecordResource ;
rico:hasExtentType <http://docuteam.ch/vocab/extenttypes/extent> ,
<http://docuteam.ch/vocab/extenttypes/extentunit> ;
rico:quantity "value" .
extentUnit
?rico:RecordResourceExtent rico:isExtentOf ?rico:RecordResource ;
rico:hasExtentType <http://docuteam.ch/vocab/extenttypes/extent> ,
<http://docuteam.ch/vocab/extenttypes/extentunit> ;
rico:unitOfMeasurement "value" .
material
?rico:ContentType rico:isContentTypeOf ?rico:RecordResource ;
rico:hasOrHadCategory <http://docuteam.ch/vocab/contenttypes/material> ;
rico:name "value" .
codeLocation
?rico:PlaceRelation rico:placeRelationHasTarget ?rico:RecordResource ;
rico:hasOrHadCategory <http://docuteam.ch/vocab/placetypes/codelocation> .
?rico:Place rico:placeIsSourceOfPlaceRelation ?rico:PlaceRelation ;
rico:name "value" .
fullLocation
?rico:PlaceRelation rico:placeRelationHasTarget ?rico:RecordResource ;
rico:hasOrHadCategory <http://docuteam.ch/vocab/placetypes/fulllocation> .
?rico:Place rico:placeIsSourceOfPlaceRelation ?rico:PlaceRelation ;
rico:name "value" .
creationPeriod
?rico:Date rico:isDateAssociatedWith ?rico:RecordResource ;
rico:hasOrHadCategory <http://docuteam.ch/vocab/datecategory/creationperiod> ;
rico:normalizedDateValue "value" .
creationPeriodNotes
?rico:Date rico:isDateAssociatedWith ?rico:RecordResource ;
rico:hasOrHadCategory <http://docuteam.ch/vocab/datecategory/creationperiodnotes> ;
?rico:ExpressedDate "value" .
date
?rico:Date rico:isDateAssociatedWith ?rico:RecordResource ;
rico:hasOrHadCategory <http://docuteam.ch/vocab/datecategory/date> ;
rico:normalizedDateValue "value" .
from
?rico:Date rico:isBeginningDateOf ?rico:RecordResource ;
rico:hasOrHadCategory <http://docuteam.ch/vocab/datecategory/from> ;
rico:normalizedDateValue "value" .
fromYear
?rico:Date rico:isBeginningDateOf ?rico:RecordResource ;
rico:hasOrHadCategory <http://docuteam.ch/vocab/datecategory/fromyear> ;
rico:normalizedDateValue "value" .
*invalid *
?rico:Date rico:isDateAssociatedWith ?rico:RecordResource ;
rico:hasOrHadCategory <http://docuteam.ch/vocab/datecategory/invalid> ;
ico:normalizedDateValue "value" .
*letter *
?rico:Date rico:isDateAssociatedWith ?rico:RecordResource ;
rico:hasOrHadCategory <http://docuteam.ch/vocab/datecategory/letter> ;
rico:normalizedDateValue "value" .
relationPeriod
?rico:Date rico:isDateAssociatedWith ?rico:RecordResource ;
rico:hasOrHadCategory <http://docuteam.ch/vocab/datecategory/relationperiod> ;
rico:normalizedDateValue "value" .
to
?rico:Date rico:isEndDateOf ?rico:RecordResource ;
rico:hasOrHadCategory <http://docuteam.ch/vocab/datecategory/to> ;
rico:normalizedDateValue "value" .
toYear
?rico:Date rico:isEndDateOf ?rico:RecordResource ;
rico:hasOrHadCategory <http://docuteam.ch/vocab/datecategory/toyear> ;
rico:normalizedDateValue "value" .
year
?rico:Date rico:isDateAssociatedWith ?rico:RecordResource ;
rico:hasOrHadCategory <http://docuteam.ch/vocab/datecategory/year> ;
rico:normalizedDateValue "value" .
accessionNumber
?rico:Identifier rico:isOrWasIdentifierOf ?rico:RecordResource ;
rico:hasIdentifierType <http://docuteam.ch/vocab/identifiertypes/accessionnumber> ;
rico:normalizedValue "value" .
edition
?rico:Identifier rico:isOrWasIdentifierOf ?rico:RecordResource ;
rico:hasIdentifierType <http://docuteam.ch/vocab/identifiertypes/edition> ;
rico:normalizedValue "value" .
ISBN
?rico:Identifier rico:isOrWasIdentifierOf ?rico:RecordResource ;
rico:hasIdentifierType <http://docuteam.ch/vocab/identifiertypes/isbn> ;
rico:normalizedValue "value" .
ISSN
?rico:Identifier rico:isOrWasIdentifierOf ?rico:RecordResource ;
rico:hasIdentifierType <http://docuteam.ch/vocab/identifiertypes/issn> ;
rico:normalizedValue "value" .
refCodeIsVisible
?rico:Rule rico:regulatesOrRegulated ?rico:RecordResource ;
rico:hasOrHadRuleType ><http://docuteam.ch/vocab/ruletypes/refcodeisvisible> ;
rico:name "value" .
DOI
?rico:Identifier rico:isOrWasIdentifierOf ?rico:RecordResource ;
rico:hasIdentifierType <http://docuteam.ch/vocab/identifiertypes/doi> ;
rico:normalizedValue "value" .
publication
?rico:Identifier rico:isOrWasIdentifierOf ?rico:RecordResource ;
rico:hasIdentifierType <http://docuteam.ch/vocab/identifiertypes/publication> ;
rico:normalizedValue "value" .
refCode
?rico:Identifier rico:isOrWasIdentifierOf ?rico:RecordResource ;
rico:hasIdentifierType <http://docuteam.ch/vocab/identifiertypes/refcode> ;
rico:normalizedValue "value" .
refCodeAdmin
?rico:Identifier rico:isOrWasIdentifierOf ?rico:RecordResource ;
rico:hasIdentifierType <http://docuteam.ch/vocab/identifiertypes/refcodeadmin> ;
rico:normalizedValue "value" .
refCodeOld
?rico:Identifier rico:isOrWasIdentifierOf ?rico:RecordResource ;
rico:hasIdentifierType <http://docuteam.ch/vocab/identifiertypes/refcodeold> ;
rico:normalizedValue "value" .
refCodeSeparator
?rico:Rule rico:regulatesOrRegulated ?rico:RecordResource ;
rico:hasOrHadRuleType ><http://docuteam.ch/vocab/ruletypes/refcodeseparator> ;
rico:name "value" .
URN
?rico:Identifier rico:isOrWasIdentifierOf ?rico:RecordResource ;
rico:hasIdentifierType <http://docuteam.ch/vocab/identifiertypes/pid> ;
rico:normalizedValue "value" .
unitTitleAdditional
?rico:Title rico:isOrWasTitleOf ?rico:RecordResource ;
rico:hasOrHadCategory <http://docuteam.ch/vocab/titlecategory/unittitleadditional> ;
rico:textualValue "value" .
unitTitle
?rico:Title rico:isOrWasTitleOf ?rico:RecordResource ;
rico:hasOrHadCategory <http://docuteam.ch/vocab/titlecategory/unittitle> ;
rico:textualValue "value" .
unitTitleOriginal
?rico:Title rico:isOrWasTitleOf ?rico:RecordResource ;
rico:hasOrHadCategory <http://docuteam.ch/vocab/titlecategory/unittitleoriginal> ;
rico:textualValue "value" .
unitTitleVarying
?rico:Title rico:isOrWasTitleOf ?rico:RecordResource ;
rico:hasOrHadCategory <http://docuteam.ch/vocab/titlecategory/unittitlevarying> ;
rico:textualValue "value" .
filePlanPosition
?rico:Rule rico:isRuleAssociatedWith ?rico:RecordResource ;
rico:hasOrHadRuleType <http://docuteam.ch/vocab/ruletypes/fileplanposition> ;
rico:name "value" .
comment
?rico:Appellation rico:isOrWasAppellationOf ?rico:RecordResource ;
rico:hasOrHadCategory <http://docuteam.ch/vocab/appellationcategory/comment> ;
rico:textualValue "value" .
doiJournal
?rico:Appellation rico:isOrWasAppellationOf ?rico:RecordResource ;
rico:hasOrHadCategory <http://docuteam.ch/vocab/appellationcategory/doijournal> ;
rico:textualValue "value" .
editionStatement
?rico:Appellation rico:isOrWasAppellationOf ?rico:RecordResource ;
rico:hasOrHadCategory <http://docuteam.ch/vocab/appellationcategory/editionstatement> ;
rico:textualValue "value" .
event
?rico:Appellation rico:isOrWasAppellationOf ?rico:RecordResource ;
rico:hasOrHadCategory <http://docuteam.ch/vocab/appellationcategory/event> ;
rico:textualValue "value" .
harvestingURL
?rico:Event rico:isEventAssociatedWith ?rico:RecordResource ;
rico:hasEventType <http://docuteam.ch/vocab/eventtypes/harvesting> .
?rico:Identifier rico:isOrWasIdentifierOf ?rico:Event ;
rico:hasIdentifierType <http://docuteam.ch/vocab/identifiertypes/harvestingurl> ;
rico:normalizedValue "value" .
harvestingDate
?rico:Event rico:isEventAssociatedWith ?rico:RecordResource ;
rico:hasEventType <http://docuteam.ch/vocab/eventtypes/harvesting> .
?rico:Date rico:isDateAssociatedWith ?rico:Event ;
rico:hasOrHadCategory <http://docuteam.ch/vocab/datecategory/harvestingdate> ;
rico:normalizedDateValue "value" .
harvestingFrequency
?rico:Event rico:isEventAssociatedWith ?rico:RecordResource ;
rico:hasEventType <http://docuteam.ch/vocab/eventtypes/harvesting> .
?rico:Appellation rico:isOrWasAppellationOf ?rico:Event ;
rico:hasOrHadCategory <http://docuteam.ch/vocab/appellationcategory/harvestingfrequency> ;
rico:textualValue "value" .
harvestingEntryPoint
?rico:Event rico:isEventAssociatedWith ?rico:RecordResource ;
rico:hasEventType <http://docuteam.ch/vocab/eventtypes/harvesting> .
?rico:Appellation rico:isOrWasAppellationOf ?rico:Event ;
rico:hasOrHadCategory <http://docuteam.ch/vocab/appellationcategory/harvestingentrypoint> ;
rico:textualValue "value" .
harvestingEmailRights
?rico:Event rico:isEventAssociatedWith ?rico:RecordResource ;
rico:hasEventType <http://docuteam.ch/vocab/eventtypes/harvesting> .
?rico:Appellation rico:isOrWasAppellationOf ?rico:Event ;
rico:hasOrHadCategory <http://docuteam.ch/vocab/appellationcategory/harvestingemailrights> ;
rico:textualValue "value" .
project
?rico:Appellation rico:isOrWasAppellationOf ?rico:RecordResource ;
rico:hasOrHadCategory <http://docuteam.ch/vocab/appellationcategory/project> ;
rico:textualValue "value" .
projectAbbreviation
?rico:Appellation rico:isOrWasAppellationOf ?rico:RecordResource ;
rico:hasOrHadCategory <http://docuteam.ch/vocab/appellationcategory/projectabbreviation> ;
rico:textualValue "value" .
projectName
?rico:Appellation rico:isOrWasAppellationOf ?rico:RecordResource ;
rico:hasOrHadCategory <http://docuteam.ch/vocab/appellationcategory/projectname> ;
rico:textualValue "value" .
projectTitle
?rico:Appellation rico:isOrWasAppellationOf ?rico:RecordResource ;
rico:hasOrHadCategory <http://docuteam.ch/vocab/appellationcategory/projecttitle> ;
rico:textualValue "value" .
usage
?rico:Appellation rico:isOrWasAppellationOf ?rico:RecordResource ;
rico:hasOrHadCategory <http://docuteam.ch/vocab/appellationcategory/usage> ;
rico:textualValue "value" .
locationOfOriginals
?rico:PlaceRelation rico:placeRelationHasTarget ?rico:RecordResource ;
rico:hasOrHadCategory <http://docuteam.ch/vocab/placetypes/locationoforiginals> .
?rico:Place rico:placeIsSourceOfPlaceRelation ?rico:PlaceRelation ;
rico:name "value" .
findingAids
?rico:DocumentaryFormType rico:isDocumentaryFormTypeOf ?rico:RecordResource ;
rico:hasOrHadCategory <http://docuteam.ch/vocab/documentaryformtypes/findingaids> ;
rico:name "value" .
characteristicsNote
?rico:Appellation rico:isOrWasAppellationOf ?rico:RecordResource ;
rico:hasOrHadCategory <http://docuteam.ch/vocab/appellationcategory/characteristicsnote> ;
rico:textualValue "value" .
characteristics
?rico:Appellation rico:isOrWasAppellationOf ?rico:RecordResource ;
rico:hasOrHadCategory <http://docuteam.ch/vocab/appellationcategory/characteristics> ;
rico:textualValue "value" .
processInfoArchivist
?rico:Event rico:isEventAssociatedWith ?rico:RecordResource ;
rico:hasEventType <http://docuteam.ch/vocab/eventtypes/processinfo> .
?rico:EventRelation rico:eventRelationHasSource ?rico:Event ;
rico:hasOrHadCategory <http://docuteam.ch/vocab/agentcategory/processinfoarchivist> .
?rico:Agent rico:thingIsTargetOfEventRelation ?rico:EventRelation ;
rico:name "value" .
processInfoDate
?rico:Event rico:isEventAssociatedWith ?rico:RecordResource ;
rico:hasEventType <http://docuteam.ch/vocab/eventtypes/processinfo> .
?rico:Date rico:isDateAssociatedWith ?rico:Event ;
rico:hasOrHadCategory <http://docuteam.ch/vocab/datecategory/processinfodate> ;
rico:normalizeDateValue "value" .
digitization
?rico:Event rico:isEventAssociatedWith ?rico:RecordResource ;
rico:hasEventType <http://docuteam.ch/vocab/eventtypes/processinfo> .
?rico:Event rico:isOrWasSubeventOf ?rico:Event ;
rico:hasEventType <http://docuteam.ch/vocab/eventtypes/digitization> ;
rico:history "value" .
descriptionLevel
?rico:Event rico:isEventAssociatedWith ?rico:RecordResource ;
rico:hasEventType <http://docuteam.ch/vocab/eventtypes/processinfo> .
?rico:Appellation rico:isOrWasAppellationOf ?rico:Event ;
rico:hasOrHadCategory <http://docuteam.ch/vocab/appellationcategory/descriptionlevel> ;
rico:textualValue "value" .
descriptionLevelNotes
?rico:Event rico:isEventAssociatedWith ?rico:RecordResource ;
rico:hasEventType <http://docuteam.ch/vocab/eventtypes/processinfo> .
?rico:Appellation rico:isOrWasAppellationOf ?rico:Event ;
rico:hasOrHadCategory <http://docuteam.ch/vocab/appellationcategory/descriptionlevelnotes> ;
rico:textualValue "value" .
revisions
?rico:Event rico:isEventAssociatedWith ?rico:RecordResource ;
rico:hasEventType <http://docuteam.ch/vocab/eventtypes/processinfo> .
?rico:Appellation rico:isOrWasAppellationOf ?rico:Event ;
rico:hasOrHadCategory <http://docuteam.ch/vocab/appellationcategory/revisions> ;
rico:textualValue "value" .
descriptionRules
?rico:Event rico:isEventAssociatedWith ?rico:RecordResource ;
rico:hasEventType <http://docuteam.ch/vocab/eventtypes/processinfo> .
?rico:Rule rico:regulatesOrRegulated ?rico:Event ;
rico:hasOrHadRuleType <http://docuteam.ch/vocab/ruletypes/descriptionrules> ;
rico:name "value" .
relatedMaterialExtern
?rico:Appellation rico:isOrWasAppellationOf ?rico:RecordResource ;
rico:hasOrHadCategory <http://docuteam.ch/vocab/appellationcategory/relatedmaterialextern> ;
rico:textualValue "value" .
relatedMaterial
?rico:Appellation rico:isOrWasAppellationOf ?rico:RecordResource ;
rico:hasOrHadCategory <http://docuteam.ch/vocab/appellationcategory/relatedmaterial> ;
rico:textualValue "value" .
scopeContent
?rico:Appellation rico:isOrWasAppellationOf ?rico:RecordResource ;
rico:hasOrHadCategory <http://docuteam.ch/vocab/appellationcategory/scopecontent> ;
rico:textualValue "value" .
conditionsOfReproductions
?rico:Rule rico:regulatesOrRegulated ?rico:RecordResource ;
rico:hasOrHadRuleType <http://docuteam.ch/vocab/ruletypes/conditionsofreproductions> ;
rico:name "value" .