Advertisement
Guest User

Untitled

a guest
May 28th, 2015
261
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.03 KB | None | 0 0
  1. #%RAML 0.8
  2.  
  3. title: Information Retrieval API
  4. version: v1
  5. /search:
  6. get:
  7. queryParameters:
  8. categories:
  9. description: list of categories ids
  10. industries:
  11. description: list of industries ids
  12. regions:
  13. description: list of regions ids
  14. keyword:
  15. description: a searched text
  16. responses:
  17. 200:
  18. body:
  19. application/json:
  20. example: |
  21. {
  22. "took" : 3,
  23. "timed_out" : false,
  24. "_shards" : {
  25. "total" : 5,
  26. "successful" : 5,
  27. "failed" : 0
  28. },
  29. "hits" : {
  30. "total" : 294,
  31. "max_score" : null,
  32. "hits" : [ {
  33. "_index" : "webshop-channel_20150526094250611",
  34. "_type" : "channel",
  35. "_id" : "55",
  36. "_score" : null,
  37. "sort" : [ 10677 ]
  38. }, {
  39. "_index" : "webshop-channel_20150526094250611",
  40. "_type" : "channel",
  41. "_id" : "40",
  42. "_score" : null,
  43. "sort" : [ 5969 ]
  44. }, ]
  45. },
  46. "facets" : {
  47. "categories" : {
  48. "_type" : "terms",
  49. "missing" : 6,
  50. "total" : 16344,
  51. "other" : 0,
  52. "terms" : [ {
  53. "term" : 70,
  54. "count" : 269
  55. } ]
  56. },
  57. "industries" : {
  58. "_type" : "terms",
  59. "missing" : 6,
  60. "total" : 8617,
  61. "other" : 0,
  62. "terms" : [ {
  63. "term" : 46,
  64. "count" : 283
  65. }, {
  66. "term" : 42,
  67. "count" : 282
  68. } ]
  69. },
  70. "regions" : {
  71. "_type" : "terms",
  72. "missing" : 4,
  73. "total" : 3413,
  74. "other" : 0,
  75. "terms" : [ {
  76. "term" : 341,
  77. "count" : 59
  78. }, {
  79. "term" : 23,
  80. "count" : 58
  81. } ]
  82. },
  83. "educations" : {
  84. "_type" : "terms",
  85. "missing" : 6,
  86. "total" : 983,
  87. "other" : 0,
  88. "terms" : [ {
  89. "term" : 1,
  90. "count" : 284
  91. }, {
  92. "term" : 2,
  93. "count" : 267
  94. }, {
  95. "term" : 3,
  96. "count" : 229
  97. }, {
  98. "term" : 4,
  99. "count" : 203
  100. } ]
  101. },
  102. "vacsite_focus" : {
  103. "_type" : "terms",
  104. "missing" : 0,
  105. "total" : 651,
  106. "other" : 0,
  107. "terms" : [ {
  108. "term" : "Generiek",
  109. "count" : 275
  110. }, {
  111. "term" : "Vakgerelateerd",
  112. "count" : 255
  113. }, {
  114. "term" : "Branche",
  115. "count" : 79
  116. }, {
  117. "term" : "SocialMedia",
  118. "count" : 19
  119. }, {
  120. "term" : "Regionaal",
  121. "count" : 15
  122. }, {
  123. "term" : "",
  124. "count" : 8
  125. } ]
  126. }
  127. }
  128. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement