forked from folio-org/mod-circulation-storage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathservice-point.json
63 lines (63 loc) · 1.77 KB
/
service-point.json
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
{
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "A service point",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Id of service-point object"
},
"name": {
"type": "string",
"description" : "service-point name, a required field"
},
"code": {
"type": "string",
"description" : "service-point code, a required field"
},
"discoveryDisplayName": {
"type": "string",
"description": "display name, a required field"
},
"description": {
"type": "string",
"description" : "description of the service-point"
},
"shelvingLagTime": {
"type": "integer",
"description": "shelving lag time"
},
"pickupLocation": {
"type": "boolean",
"description": "indicates whether or not the service point is a pickup location"
},
"holdShelfExpiryPeriod" :{
"type": "object",
"$ref": "time-period.json",
"description": "expiration period for items on the hold shelf at the service point"
},
"holdShelfClosedLibraryDateManagement": {
"type": "string",
"description": "enum for closedLibraryDateManagement associated with hold shelf",
"enum":[
"Keep_the_current_due_date",
"Move_to_the_end_of_the_previous_open_day",
"Move_to_the_end_of_the_next_open_day",
"Keep_the_current_due_date_time",
"Move_to_end_of_current_service_point_hours",
"Move_to_beginning_of_next_open_service_point_hours"
],
"default" : "Keep_the_current_due_date"
},
"metadata": {
"type": "object",
"$ref": "raml-util/schemas/metadata.schema",
"readonly": true
}
},
"required": [
"name",
"code",
"discoveryDisplayName"
]
}