forked from folio-org/mod-circulation-storage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcheck-in.json
53 lines (53 loc) · 1.47 KB
/
check-in.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
{
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "Check-in operation",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Unique ID (generated UUID) of the check-in operation",
"$ref": "raml-util/schemas/uuid.schema"
},
"occurredDateTime": {
"type": "string",
"description": "Date and time when the check-in occurred",
"format": "date-time"
},
"itemId": {
"type": "string",
"description": "Id of item that has checked in",
"$ref": "raml-util/schemas/uuid.schema"
},
"itemStatusPriorToCheckIn": {
"type": "string",
"description": "Item status prior to check-in"
},
"requestQueueSize": {
"type": "integer",
"description": "Request queue size for the item",
"minimum": 0
},
"itemLocationId": {
"type": "string",
"description": "Location of the item in check-in time",
"$ref": "raml-util/schemas/uuid.schema"
},
"servicePointId": {
"type": "string",
"description": "Service point where the item was checked in",
"$ref": "raml-util/schemas/uuid.schema"
},
"performedByUserId": {
"type": "string",
"description": "Id of user that has performed check-in operation",
"$ref": "raml-util/schemas/uuid.schema"
}
},
"additionalProperties": false,
"required": [
"occurredDateTime",
"itemId",
"servicePointId",
"performedByUserId"
]
}