Advertisement
Guest User

Untitled

a guest
May 20th, 2020
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.64 KB | None | 0 0
  1. {
  2. "/biblios": {
  3. "post": {
  4. "x-mojo-to": "DCook::OaipmhImport::RecordController#import_biblio",
  5. "operationId": "import_biblio",
  6. "tags": ["biblios"],
  7. "parameters": [{
  8. "name": "body",
  9. "in": "body",
  10. "description": "OAI-PMH XML bibliographic records",
  11. "required": true,
  12. "type": "string"
  13. }],
  14. "consumes": [
  15. "text/xml"
  16. ],
  17. "produces": [
  18. "application/json"
  19. ],
  20. "responses": {
  21. "200": {
  22. "description": "Records processed",
  23. "schema": {
  24. "type": "object",
  25. "properties": {
  26. "added": {
  27. "description": "Number of added records",
  28. "type": "integer"
  29. },
  30. "updated": {
  31. "description": "Number of updated records",
  32. "type": "integer"
  33. },
  34. "deleted": {
  35. "description": "Number of deleted records",
  36. "type": "integer"
  37. }
  38. }
  39. }
  40. },
  41. "400": {
  42. "description": "An error occured",
  43. "schema": {
  44. "type": "object",
  45. "properties": {
  46. "error": {
  47. "description": "An explanation for the error",
  48. "type": "string"
  49. }
  50. }
  51. }
  52. }
  53. },
  54. "x-koha-authorization": {
  55. "permissions": {
  56. "editcatalogue": "edit_catalogue"
  57. }
  58. }
  59. }
  60. }
  61. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement