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
1 change: 1 addition & 0 deletions source/apps.jsonld
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@
{ "dimensionChain": ["hasInstanceCategory"], "itemLimit": 100 },
{ "dimensionChain": ["language"], "itemLimit": 100, "connective": "OR" },
{ "dimensionChain": ["itemHeldBy"], "itemLimit": 1000, "connective": "OR" },
{ "dimensionChain": ["itemHeldByOrg"], "itemLimit": 1000, "connective": "OR", "countTopLevelDocs": true },
{ "dimensionChain": ["yearPublished"], "itemLimit": 500, "range": true },
{ "dimensionChain": ["contributor"], "itemLimit": 20 },
{ "dimensionChain": ["genreForm"], "itemLimit": 100 },
Expand Down
9 changes: 9 additions & 0 deletions source/vocab/libris-search-experimental.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
@prefix sdo: <http://schema.org/> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix : <https://id.kb.se/vocab/> .
@prefix bibdb: <https://id.kb.se/ns/bibdb/> .

@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
Expand Down Expand Up @@ -40,6 +41,14 @@
sdo:rangeIncludes :Library ;
owl:propertyChainAxiom ( :hasItem :heldBy ) .

:itemHeldByOrg a owl:ObjectProperty ;
rdfs:label "Biblioteksorganisation"@sv, "Library organization"@en ;
skos:notation "OCODE"^^:LibrisQueryCode ;
:category :shorthand, :pending ;
rdfs:domain :Instance ;
sdo:rangeIncludes bibdb:Organization ;
owl:propertyChainAxiom ( :hasItem :heldBy :isPartOf ) .

:instanceOfType a owl:ObjectProperty ;
:category :shorthand, :pending ;
rdfs:domain :Instance ;
Expand Down