Skip to content
Merged
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
7 changes: 7 additions & 0 deletions source/vocab/details.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -215,6 +215,13 @@
owl:propertyChainAxiom ( [ rdfs:subPropertyOf :identifiedBy ; rdfs:range :ISBN ] :value ) ;
rdfs:range :ISBN .

:ismn a owl:DatatypeProperty ;
:category :shorthand;
rdfs:label "ISMN";
rdfs:subPropertyOf :identifier ;
owl:propertyChainAxiom ( [ rdfs:subPropertyOf :identifiedBy ; rdfs:range :ISMN ] :value ) ;
rdfs:range :ISMN .

:issn a owl:DatatypeProperty ;
:category :shorthand;
rdfs:label "ISSN";
Expand Down
20 changes: 18 additions & 2 deletions source/vocab/libris-search-experimental.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,19 @@

:isbn rdfs:domain :Instance ; # See ./details.ttl for full definition of :isbn
:category :searchfilter ;
skos:notation "bath.isbn"^^ls:QueryCode .
skos:notation "bath.isbn"^^ls:QueryCode ;
rdfs:subPropertyOf ls:isxn .

:ismn rdfs:domain :Instance ; # See ./details.ttl for full definition of :ismn
:category :searchfilter ;
rdfs:subPropertyOf ls:isxn .

# TODO cataloging also searches identifiedBy / marc:canceledIssn, marc:incorrectIssn, marc:issnL, marc:canceledIssnL
# webbsök has FELN / LINKISXN
:issn rdfs:domain :Instance ; # See ./details.ttl for full definition of :issn
:category :searchfilter ;
skos:notation "bath.issn"^^ls:QueryCode .
skos:notation "bath.issn"^^ls:QueryCode ;
rdfs:subPropertyOf ls:isxn .

:lccn rdfs:domain :Instance ; # See ./details.ttl for full definition of :lccn
:category :searchfilter ;
Expand Down Expand Up @@ -115,6 +121,10 @@ ls:composite a skos:Collection ;
:category :pending ;
:code "composite" .

ls:isxn a owl:DatatypeProperty ;
:category ls:composite, :pending, :searchfilter ;
rdfs:label "ISXN"@sv, "ISXN"@en .

ls:itemHeldBy a owl:ObjectProperty ;
rdfs:label "Bibliotek"@sv, "Library"@en ;
skos:notation "bath.possessingInstitution"^^ls:QueryCode ;
Expand Down Expand Up @@ -220,6 +230,12 @@ ls:itemCreated a owl:DatatypeProperty ;
rdfs:range xsd:dateTime ;
owl:propertyChainAxiom ( :hasItem :meta :created ) .

ls:itemSubject a owl:DatatypeProperty ;
:category :shorthand, :pending, :searchfilter ;
rdfs:label "lokalt ämnesord"@sv, "item subject"@en ;
rdfs:domain :Instance ;
owl:propertyChainAxiom ( :hasItem :subject ) .

# TODO
#ls:classificationCode a owl:DatatypeProperty ;
# :category :shorthand ;
Expand Down