Permalink
Cannot retrieve contributors at this time
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
26 lines (21 sloc)
623 Bytes
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: Pick Slips | |
version: v0.3 | |
protocols: [ HTTP, HTTPS ] | |
baseUri: http://localhost:9130 | |
documentation: | |
- title: API for fetching current pick slips | |
content: <b>API for pick slips generation</b> | |
types: | |
pick-slips: !include pick-slips-response.json | |
traits: | |
language: !include raml-util/traits/language.raml | |
resourceTypes: | |
collection-get: !include raml-util/rtypes/collection-get.raml | |
/circulation: | |
/pick-slips: | |
/{servicePointId}: | |
type: | |
collection-get: | |
exampleCollection: !include examples/pick-slips-response.json | |
schemaCollection: pick-slips |