Skip to content

Commit ea5a372

Browse files
authored
Merge pull request #482 from libris/feature/lws-62-more-facets
undefined
2 parents b873e54 + 3c8beae commit ea5a372

File tree

2 files changed

+18
-4
lines changed

2 files changed

+18
-4
lines changed

source/apps.jsonld

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,12 +76,16 @@
7676
"titleByLang": {"sv": "Libris sök", "en": "Libris Search"},
7777
"statistics": {
7878
"sliceList": [
79+
{ "dimensionChain": ["instanceOfType"], "itemLimit": 100 },
80+
{ "dimensionChain": ["rdf:type"], "itemLimit": 100 },
81+
{ "dimensionChain": ["hasInstanceType"], "itemLimit": 100 },
7982
{ "dimensionChain": ["genreForm"], "itemLimit": 100 },
80-
{ "dimensionChain": ["itemHeldBy"], "itemLimit": 1000 },
81-
{ "dimensionChain": ["contributor"], "itemLimit": 20 },
8283
{ "dimensionChain": ["language"], "itemLimit": 100 },
83-
{ "dimensionChain": ["subject"], "itemLimit": 100 },
8484
{ "dimensionChain": ["yearPublished"], "itemLimit": 500 },
85+
{ "dimensionChain": ["itemHeldBy"], "itemLimit": 1000 },
86+
{ "dimensionChain": ["bibliography"], "itemLimit": 200 },
87+
{ "dimensionChain": ["subject"], "itemLimit": 100 },
88+
{ "dimensionChain": ["contributor"], "itemLimit": 20 },
8589
{ "dimensionChain": ["intendedAudience"], "itemLimit": 100 }
8690
]
8791
}

source/vocab/libris-search-experimental.ttl

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,14 @@
2828
:itemHeldBy a owl:ObjectProperty ;
2929
rdfs:label "Bibliotek"@sv, "Library"@en ;
3030
:category :shorthand, :pending ;
31-
owl:propertyChainAxiom ( :hasItem :heldBy ) .
31+
owl:propertyChainAxiom ( :hasItem :heldBy ) .
32+
33+
:instanceOfType a owl:ObjectProperty ;
34+
rdfs:subPropertyOf rdf:type ;
35+
:category :shorthand, :pending ;
36+
owl:propertyChainAxiom ( :instanceOf rdf:type ) .
37+
38+
:hasInstanceType a owl:ObjectProperty ;
39+
rdfs:subPropertyOf rdf:type ;
40+
:category :shorthand, :pending ;
41+
owl:propertyChainAxiom ( :hasInstance rdf:type ) .

0 commit comments

Comments
 (0)