-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathgroup-budgets.raml
More file actions
30 lines (25 loc) · 875 Bytes
/
group-budgets.raml
File metadata and controls
30 lines (25 loc) · 875 Bytes
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
#%RAML 1.0
title: "mod-finance-storage"
baseUri: http://github.com/folio-org/mod-finance-storage
version: v1
documentation:
- title: Budgets
content: <b>Get list of Budgets API.</b>
types:
budget_collection: !include acq-models/mod-finance/schemas/budget_collection.json
traits:
pageable: !include raml-util/traits/pageable.raml
searchable: !include raml-util/traits/searchable.raml
resourceTypes:
collection-get: !include raml-util/rtypes/collection-get.raml
/finance-storage/group-budgets:
type:
collection-get:
exampleCollection: !include acq-models/mod-finance/examples/budget_collection.sample
schemaCollection: budget_collection
get:
description: Get list of budgets
is: [
searchable: {description: "with valid searchable fields: for example code", example: "[\"code\", \"MEDGRANT\", \"=\"]"},
pageable
]