-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathledger-rollover-errors.raml
54 lines (48 loc) · 1.96 KB
/
ledger-rollover-errors.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
#%RAML 1.0
title: "mod-finance-storage"
baseUri: https://github.com/folio-org/mod-finance-storage
version: v1
documentation:
- title: mod-finance-storage (Ledger Rollover Error Report)
content: <b>CRUD APIs used to manage ledger rollover errors.</b>
types:
errors: !include raml-util/schemas/errors.schema
ledger_fiscal_year_rollover_error: !include acq-models/mod-finance/schemas/ledger_fiscal_year_rollover_error.json
ledger_fiscal_year_rollover_error-collection: !include acq-models/mod-finance/schemas/ledger_fiscal_year_rollover_error_collection.json
UUID:
type: string
pattern: ^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-5][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}$
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
/finance-storage/ledger-rollovers-errors:
type:
collection:
exampleCollection: !include acq-models/mod-finance/examples/ledger_fiscal_year_rollover_error_collection.sample
exampleItem: !include acq-models/mod-finance/examples/ledger_fiscal_year_rollover_error.sample
schemaCollection: ledger_fiscal_year_rollover_error-collection
schemaItem: ledger_fiscal_year_rollover_error
is: [validate]
get:
description: Get list of rollovers errors
is: [
searchable:
{
description: "with valid searchable fields: for example 'errorType'", example: "[\"errorType\", \"Orders\", \"=\"]"
},
pageable
]
/{id}:
uriParameters:
id:
description: The UUID of a rollover errors record
type: UUID
type:
collection-item:
exampleItem: !include acq-models/mod-finance/examples/ledger_fiscal_year_rollover_error.sample
schema: ledger_fiscal_year_rollover_error
is: [validate]