Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions source/spa.ttl
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
prefix : <https://id.kb.se/vocab/>
prefix spa: <https://id.kb.se/term/spa/>

###
# Based on <https://wordpress.clir.org/wp-content/uploads/sites/62/Shared-Print-Actions_-Terminology-for-MARC-21-Field-583-April-2024.pdf>
# - PART 3 Data Dictionary of Shared Print Actions Terminology
# - Controlled vocabulary (for use in $a, $i, and $l)
# See also: <https://sharedprint.org/>

##
# ActionStatus

spa:committed-to-retain a :ItemActionCategory ;
:sameAs <aa> ;
:code "aa" ;
:label "committed to retain"@en ;
:comment "Commitment by the institution to retain the materials for a given shared print program (or multiple programs, recorded in the $f) for the duration stipulated by the shared print program(s) (recorded in the $d)."@en .

spa:will-commit-to-retain a :ItemActionCategory; # :ProspectiveAction ;
:sameAs <ab> ;
:code "ab" ;
:label "will commit to retain"@en ;
:comment "See “committed to retain”"@en .

spa:will-not-commit-to-retain a :ItemActionCategory; # :NegativeDecision ;
:sameAs <ac> ;
:code "ac" ;
:label "will not commit to retain"@en ;
:comment "See “committed to retain”"@en .


26 changes: 26 additions & 0 deletions source/vocab/items.ttl
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix ptg: <http://protege.stanford.edu/plugins/owl/protege#> .
@prefix sdo: <http://schema.org/> .
@prefix bf2: <http://id.loc.gov/ontologies/bibframe/> .
@prefix rdaent: <http://rdvocab.info/uri/schema/FRBRentitiesRDA/> .
Expand Down Expand Up @@ -190,6 +191,31 @@
rdfs:domain :ShelfMarkSequence ;
rdfs:range xsd:positiveInteger .

##
# SHARED PRINT ACTIONS

:hasItemAction a owl:ObjectProperty ;
rdfs:label "has item action"@en, "har beståndsåtgärd"@sv ;
rdfs:domain :Item ;
rdfs:range :ItemAction ;
skos:related <http://id.loc.gov/vocabulary/mnotetype/action> .

:ItemAction a owl:Class ;
#ptg:abstract true ;
rdfs:label "Beståndsåtgärd" ;
rdfs:subClassOf [ a owl:ObjectProperty ;
owl:onProperty :category ;
owl:allValuesFrom :ItemActionCategory ] .

:ItemActionCategory a owl:Class ;
#ptg:abstract true ;
rdfs:subClassOf :Category ;
rdfs:label "Item action category"@en, "Kategori för beståndsåtgärd"@sv .

#:ItemRetentionAction a owl:Class ;
# rdfs:label "Item retention action"@en, "Bevarandeåtgärd"@sv ;
# rdfs:subClassOf :ItemAction .

##
# OTHER ITEM PROPERTIES AND CLASSES

Expand Down