Guest User

Untitled

a guest
Nov 22nd, 2017
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.09 KB | None | 0 0
  1. #%RAML 1.0
  2. title: A CRUD API for Users and Groups
  3.  
  4. schemas:
  5. creditcard:
  6. type: !include CreditCard.json
  7.  
  8. uses:
  9. example: annotations.1_0.yaml
  10.  
  11. /things:
  12. description: All the users
  13. get:
  14. responses:
  15. 200:
  16. body:
  17. application/json:
  18. examples:
  19. example1:
  20. description: "An example with a structured example"
  21. type: application-json
  22. displayName: an example
  23. value: {
  24. foo: bar
  25. }
  26. post:
  27. description: The POST operation adds an object to a specified bucket using HTML forms.
  28. body:
  29. application/x-www-form-urlencoded:
  30. formParameters:
  31. AWSAccessKeyId:
  32. description: The AWS Access Key ID of the owner of the bucket who grants an Anonymous user access for a request that satisfies the set of constraints in the Policy.
  33. type: string
  34. acl:
  35. description: Specifies an Amazon S3 access control list. If an invalid access control list is specified, an error is generated.
  36. type: string
Add Comment
Please, Sign In to add comment