-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathscheduled-notice-storage.raml
56 lines (51 loc) · 1.87 KB
/
scheduled-notice-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
#%RAML 1.0
title: Scheduled Notice Storage
version: v0.6
protocols: [ HTTP, HTTPS ]
baseUri: http://localhost:9130
documentation:
- title: Scheduled Notice Storage API
content: <b>Storage for scheduled notices</b>
types:
scheduled-notice: !include scheduled-notice.json
scheduled-notices: !include scheduled-notices.json
errors: !include raml-util/schemas/errors.schema
parameters: !include raml-util/schemas/parameters.schema
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
collection-item: !include raml-util/rtypes/item-collection.raml
/scheduled-notice-storage:
/scheduled-notices:
displayName: Scheduled Notices
type:
collection:
schemaItem: scheduled-notice
schemaCollection: scheduled-notices
exampleItem: !include examples/scheduled-notice.json
exampleCollection: !include examples/scheduled-notices.json
get:
is: [pageable, searchable: {description: "with valid searchable fields", example: "loanId=188522a4-a2df-4a48-ab3d-44b62daef27f"}]
post:
is: [validate]
delete:
description: "Delete scheduled notices by cql query"
is: [searchable: {description: "with valid searchable fields", example: "loanId=188522a4-a2df-4a48-ab3d-44b62daef27f"}]
responses:
204:
description: "Successful deletion"
500:
description: "Internal server error, e.g. due to misconfiguration"
body:
text/plain:
example: "Internal server error, contact administrator"
/{scheduled-noticeId}:
type:
collection-item:
schema: scheduled-notice
exampleItem: !include examples/scheduled-notice.json
put:
is: [validate]