-
Notifications
You must be signed in to change notification settings - Fork 19
/
check-in-storage.raml
63 lines (58 loc) · 1.79 KB
/
check-in-storage.raml
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
#%RAML 1.0
title: Check-in storage
version: v0.2
protocols: [ HTTP, HTTPS ]
baseUri: http://localhost:9130
documentation:
- title: Check-in Storage API
content: <b>Storage for check-ins</b>
types:
errors: !include raml-util/schemas/errors.schema
parameters: !include raml-util/schemas/parameters.schema
check-in: !include check-in.json
check-ins: !include check-ins.json
traits:
pageable: !include raml-util/traits/pageable.raml
searchable: !include raml-util/traits/searchable.raml
validate: !include raml-util/traits/validation.raml
resourceTypes:
collection: !include raml-util/rtypes/collection.raml
item-collection-get: !include raml-util/rtypes/item-collection-get.raml
/check-in-storage/check-ins:
displayName: Check-in storage
type:
collection:
exampleCollection: !include examples/check-ins.json
exampleItem: !include examples/check-in.json
schemaCollection: check-ins
schemaItem: check-in
get:
is: [pageable,
searchable: {description: "by using CQL",
example: "itemId=\"cf23adf0-61ba-4887-bf82-956c4aae2260\""}
]
responses:
200:
description: "Check-in operations that have matched search criteria"
500:
description: "Internal server error"
post:
is: [validate]
responses:
201:
description: "Check-in operation that has been created"
422:
description: "Supplied entity is not valid per schema"
400:
description: "Supplied entity can not be deserialized"
500:
description: "Internal server error"
/{checkInId}:
type:
item-collection-get:
exampleItem: !include examples/check-in.json
schema: check-in
get:
responses:
200:
description: "Check in operation retrieved"