Last active
August 29, 2015 14:20
-
-
Save Brazo/029ee3f3dffda83d7ed1 to your computer and use it in GitHub Desktop.
The RAML defining the common language and contract for a mobile application implementation project using an API-first approach.
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 0.8 | |
title: construction-machine | |
version: 1 | |
/parts: | |
/search: | |
description: The search resource for parts. | |
get: | |
description: List all parts in the system when used without query parameters. Query parameters allow powerful depenency searches. For now only one parameter at a time is allowed. | |
queryParameters: | |
used-for: | |
type: number | |
example: 12 | |
required: false | |
description: The id of the part x to retrieve all other parts (v,y,z) containing that part x (x)-[:used-for]->(v,y,z) | |
belongs-to: | |
type: number | |
example: 1 | |
required: false | |
description: The id of the part x to retrieve all components (v,y,z) of that part x (v,y,z)-[:belongs-to]->(x) | |
delivered-by: | |
type: number | |
example: 23 | |
required: false | |
description: Retrieve all parts that are delivered by a specific supplier. | |
made-of: | |
type: number | |
example: 13 | |
required: false | |
description: Retrieve all parts that are used to assemble the part with the given id (all paths to root) | |
responses: | |
200: | |
body: | |
application/xml: | |
example: !include get-search-list-example.xml | |
schema: !include get-search-list-schema.xsd | |
400: | |
description: Specifically thrown when multiple query parameters are used in parallel | |
body: | |
text/plain: | |
example: Only one query parameter per request is allowed. | |
/{part_id}: | |
description: List the intance resource of a part | |
get: | |
responses: | |
200: | |
body: | |
application/xml: | |
example: !include get-part-instance-example.xml | |
schema: !include get-part-instance-schema.xsd | |
/price: | |
description: Returns the price of a part in the currency of the given currency code. | |
get: | |
queryParameters: | |
currency-code: | |
type: string | |
example: CHF | |
required: true | |
description: Get the real time price of a part using a defined currency code. | |
responses: | |
200: | |
body: | |
application/xml: | |
example: !include get-price-instance-example.xml | |
schema: !include get-price-instance-schema.xsd | |
/suppliers: | |
/search: | |
description: Search resource for suppliers. Returns the list of suppliers in the system. | |
get: | |
responses: | |
200: | |
body: | |
application/xml: | |
example: !include get-suppliers-search-example.xml | |
schema: !include get-suppliers-search-schema.xsd |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment