-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcirculation.ttl
More file actions
65 lines (53 loc) · 1.76 KB
/
circulation.ttl
File metadata and controls
65 lines (53 loc) · 1.76 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
bf
#http://bibframe.org/vocab-list/-->
bf:circulationStatus "non-circulating" ;
#literal ex available, checked out, missing, withdrawn, at the bindery-->
bf:lendingPolicy
#Policy statement about whether and with what restrictions the holding may be lent-->
bf:accessCondition
#Allowances and restrictions on access-->
------------------------
------------------------
sdo
#source: https://www.w3.org/community/schemabibex/wiki/Holdings_via_Offer-->
sdo:availability
#list of values-->
Available for loan:
<link property="availability" href="http://schema.org/InStock">
Checked out:
<link property="availability" href="http://schema.org/OutOfStock">
On order:
<link property="availability" href="http://schema.org/PreOrder" />
Reference:
<link property="availability" href="http://schema.org/InStoreOnly">
sdo:businessFunction = "borrowing terms"
gr:LeaseOut = "loan"
"http://www.heppnetz.de/ontologies/goodrelations/v1#LeaseOut"
#se tutleifierat exemple nedan
sdo:AggregateOffer
sdo:offerCount
# number of available copies
---------------------
#tutleifierat exempel från RDFa på https://www.w3.org/community/schemabibex/wiki/Holdings_via_Offer
@prefix : <http://schema.org/> .
@prefix gr: <http://purl.org/goodrelations/v1> .
<http://123> a :Offer ;
:availability :InStock ;
:seller <http:bib>
:serialNumber "CONC91000937" ;
:sku "780 R2" ;
:businessFunction gr:LeaseOut ;
# Example of a copy available for on-site use only
:offers [ :typeof "Offer" ]
:availability :InStoreOnly ;
:seller <http:bib>
:serialNumber "CONC91000938" ;
:sku "780 R2"
:businessFunction gr:LeaseOut ;
# Example of a copy that is currently checked out
:offers [ :typeof "Offer" ]
:availability :OutOfStock ;
:seller <http:bib>
:serialNumber "CONC91000939"
:sku "780 R2"
:businessFunction gr:LeaseOut .