Advertisement
Guest User

Untitled

a guest
Apr 24th, 2019
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.87 KB | None | 0 0
  1. #%RAML 1.0
  2. baseUri: https://anypoint.mulesoft.com/mocking/api/v1/links/e0b9d6ac-fafe-45f2-b1d8-a5daa16a07be/ #
  3. title: American Flights API
  4.  
  5. types:
  6. AmericanFlight: !include exchange_modules/68ef9520-24e9-4cf2-b2f5-620025690913/training-american-flight-data-type/1.0.1/AmericanFlightDataType.raml
  7.  
  8. /flights:
  9. get:
  10. queryParameters:
  11. destination:
  12. required: false
  13. enum:
  14. - SFO
  15. - LAX
  16. - CLE
  17. responses:
  18. 200:
  19. body:
  20. application/json:
  21. type: AmericanFlight[]
  22. examples:
  23. exemple1: !include exchange_modules/68ef9520-24e9-4cf2-b2f5-620025690913/training-american-flights-example/1.0.1/AmericanFlightsExample.raml
  24. post:
  25.  
  26. /{ID}:
  27. get:
  28. responses:
  29. 200:
  30. body:
  31. application/json:
  32. type: AmericanFlight
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement