Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
mod-inventory-storage/ramls/item-storage.raml
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
62 lines (57 sloc)
1.84 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#%RAML 1.0 | |
title: Item Storage | |
version: v10.0 | |
protocols: [ HTTP, HTTPS ] | |
baseUri: http://localhost | |
documentation: | |
- title: Item Storage API | |
content: <b>Storage for items in the inventory</b> | |
types: | |
item: !include item.json | |
items: !include items.json | |
errors: !include raml-util/schemas/errors.schema | |
traits: | |
language: !include raml-util/traits/language.raml | |
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 | |
/item-storage: | |
/items: | |
displayName: Items | |
type: | |
collection: | |
exampleCollection: !include examples/items_get.json | |
schemaCollection: items | |
schemaItem: item | |
exampleItem: !include examples/item_get.json | |
get: | |
is: [pageable, | |
searchable: {description: "using CQL (indexes for item and material type)", | |
example: "title=\"*uproot*\""}, | |
] | |
post: | |
is: [validate] | |
delete: | |
is: [searchable: { description: "CQL to select items to delete, use cql.allRecords=1 to delete all", example: "barcode==\"123-0*\"" } ] | |
responses: | |
204: | |
description: "Selected items deleted" | |
400: | |
description: "Bad request, e.g. malformed query parameter" | |
body: | |
text/plain: | |
example: "query parameter is empty" | |
500: | |
description: "Internal server error, e.g. due to misconfiguration" | |
body: | |
text/plain: | |
example: "Internal server error, contact administrator" | |
/{itemId}: | |
type: | |
collection-item: | |
exampleItem: !include examples/item_get.json | |
schema: item | |
get: |