solarwinds-itsm-api-definitions 0.0.9 → 0.1.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (113) hide show
  1. checksums.yaml +4 -4
  2. data/lib/definitions/common/components.json +354 -124
  3. data/lib/definitions/common/examples/catalog_item.json +70 -0
  4. data/lib/definitions/common/examples/change.json +123 -0
  5. data/lib/definitions/common/examples/change_catalog.json +72 -0
  6. data/lib/definitions/common/examples/configuration_item.json +110 -0
  7. data/lib/definitions/common/examples/hardware.json +100 -0
  8. data/lib/definitions/common/examples/incident.json +129 -115
  9. data/lib/definitions/common/examples/problem.json +110 -0
  10. data/lib/definitions/common/examples/release.json +128 -0
  11. data/lib/definitions/common/examples/service_request.json +28 -0
  12. data/lib/definitions/common/examples/solution.json +44 -0
  13. data/lib/definitions/common/examples/user.json +76 -0
  14. data/lib/definitions/common/schemas/analytics/audit.json +28 -0
  15. data/lib/definitions/common/schemas/analytics/risk.json +28 -0
  16. data/lib/definitions/common/schemas/inventory/hardware.json +104 -0
  17. data/lib/definitions/common/schemas/inventory/mobile.json +73 -0
  18. data/lib/definitions/common/schemas/inventory/other_asset.json +74 -0
  19. data/lib/definitions/common/schemas/inventory/printer.json +41 -0
  20. data/lib/definitions/common/schemas/inventory/software.json +28 -0
  21. data/lib/definitions/common/schemas/inventory/warranty.json +40 -0
  22. data/lib/definitions/common/schemas/procurement/contract.json +67 -0
  23. data/lib/definitions/common/schemas/procurement/item.json +51 -0
  24. data/lib/definitions/common/schemas/procurement/purchase.json +57 -0
  25. data/lib/definitions/common/schemas/procurement/purchase_order.json +82 -0
  26. data/lib/definitions/common/schemas/procurement/vendor.json +67 -0
  27. data/lib/definitions/common/schemas/service_desk/catalog_item.json +71 -0
  28. data/lib/definitions/common/schemas/service_desk/change.json +88 -0
  29. data/lib/definitions/common/schemas/service_desk/change_catalog.json +77 -0
  30. data/lib/definitions/common/schemas/service_desk/comment.json +52 -0
  31. data/lib/definitions/common/schemas/service_desk/configuration_item.json +119 -0
  32. data/lib/definitions/common/schemas/service_desk/incident.json +89 -0
  33. data/lib/definitions/common/schemas/service_desk/problem.json +81 -0
  34. data/lib/definitions/common/schemas/service_desk/release.json +86 -0
  35. data/lib/definitions/common/schemas/service_desk/service_request.json +31 -0
  36. data/lib/definitions/common/schemas/service_desk/solution.json +61 -0
  37. data/lib/definitions/common/schemas/service_desk/time_track.json +37 -0
  38. data/lib/definitions/common/schemas/setup/category.json +54 -0
  39. data/lib/definitions/common/schemas/setup/department.json +48 -0
  40. data/lib/definitions/common/schemas/setup/group.json +65 -0
  41. data/lib/definitions/common/schemas/setup/role.json +51 -0
  42. data/lib/definitions/common/schemas/setup/site.json +64 -0
  43. data/lib/definitions/common/schemas/setup/user.json +67 -0
  44. data/lib/definitions/common/schemas/tasks/task.json +52 -0
  45. data/lib/definitions/openapi.json +96 -6
  46. data/lib/definitions/paths/attachments/attachments.json +12 -0
  47. data/lib/definitions/paths/audits/audits.json +35 -0
  48. data/lib/definitions/paths/audits/audits_by_id.json +37 -0
  49. data/lib/definitions/paths/catalog_items/catalog_item_by_id.json +83 -0
  50. data/lib/definitions/paths/catalog_items/catalog_items.json +69 -0
  51. data/lib/definitions/paths/categories/categories.json +62 -0
  52. data/lib/definitions/paths/categories/category_by_id.json +70 -0
  53. data/lib/definitions/paths/change_catalogs/change_catalog_by_id.json +83 -0
  54. data/lib/definitions/paths/change_catalogs/change_catalogs.json +69 -0
  55. data/lib/definitions/paths/changes/change_by_id.json +83 -0
  56. data/lib/definitions/paths/changes/changes.json +69 -0
  57. data/lib/definitions/paths/comments/comment_by_id.json +65 -0
  58. data/lib/definitions/paths/comments/comments.json +31 -0
  59. data/lib/definitions/paths/configuration_items/append_dependent_assets.json +24 -0
  60. data/lib/definitions/paths/configuration_items/configuration_item_by_id.json +83 -0
  61. data/lib/definitions/paths/configuration_items/configuration_items.json +69 -0
  62. data/lib/definitions/paths/configuration_items/delete_asset_link.json +24 -0
  63. data/lib/definitions/paths/contracts/contract_by_id.json +74 -0
  64. data/lib/definitions/paths/contracts/contracts.json +62 -0
  65. data/lib/definitions/paths/contracts/item_by_id.json +75 -0
  66. data/lib/definitions/paths/contracts/items.json +30 -0
  67. data/lib/definitions/paths/departments/department_by_id.json +70 -0
  68. data/lib/definitions/paths/departments/departments.json +62 -0
  69. data/lib/definitions/paths/groups/group_by_id.json +70 -0
  70. data/lib/definitions/paths/groups/groups.json +62 -0
  71. data/lib/definitions/paths/hardwares/hardware_by_id.json +83 -0
  72. data/lib/definitions/paths/hardwares/hardwares.json +69 -0
  73. data/lib/definitions/paths/hardwares/warranties.json +64 -0
  74. data/lib/definitions/paths/hardwares/warranty_by_id.json +75 -0
  75. data/lib/definitions/paths/incidents/incident_by_id.json +28 -10
  76. data/lib/definitions/paths/incidents/incidents.json +36 -8
  77. data/lib/definitions/paths/memberships/membership_by_id.json +20 -0
  78. data/lib/definitions/paths/memberships/memberships.json +29 -0
  79. data/lib/definitions/paths/mobiles/mobile_by_id.json +74 -0
  80. data/lib/definitions/paths/mobiles/mobiles.json +62 -0
  81. data/lib/definitions/paths/other_assets/other_asset_by_id.json +74 -0
  82. data/lib/definitions/paths/other_assets/other_assets.json +62 -0
  83. data/lib/definitions/paths/printers/printer_by_id.json +53 -0
  84. data/lib/definitions/paths/printers/printers.json +36 -0
  85. data/lib/definitions/paths/problems/problem_by_id.json +83 -0
  86. data/lib/definitions/paths/problems/problems.json +69 -0
  87. data/lib/definitions/paths/purchase_orders/purchase_order_by_id.json +74 -0
  88. data/lib/definitions/paths/purchase_orders/purchase_orders.json +62 -0
  89. data/lib/definitions/paths/purchases/purchase_by_id.json +65 -0
  90. data/lib/definitions/paths/purchases/purchases.json +31 -0
  91. data/lib/definitions/paths/releases/release_by_id.json +83 -0
  92. data/lib/definitions/paths/releases/releases.json +69 -0
  93. data/lib/definitions/paths/risks/risks.json +34 -0
  94. data/lib/definitions/paths/roles/role_by_id.json +70 -0
  95. data/lib/definitions/paths/roles/roles.json +62 -0
  96. data/lib/definitions/paths/service_requests/request_by_id.json +37 -0
  97. data/lib/definitions/paths/sites/site_by_id.json +74 -0
  98. data/lib/definitions/paths/sites/sites.json +62 -0
  99. data/lib/definitions/paths/softwares/software_by_id.json +24 -0
  100. data/lib/definitions/paths/softwares/softwares.json +36 -0
  101. data/lib/definitions/paths/solutions/solution_by_id.json +83 -0
  102. data/lib/definitions/paths/solutions/solutions.json +69 -0
  103. data/lib/definitions/paths/tasks/task_by_id.json +65 -0
  104. data/lib/definitions/paths/tasks/tasks.json +31 -0
  105. data/lib/definitions/paths/time_tracks/time_track_by_id.json +65 -0
  106. data/lib/definitions/paths/time_tracks/time_tracks.json +66 -0
  107. data/lib/definitions/paths/users/user_by_id.json +83 -0
  108. data/lib/definitions/paths/users/users.json +69 -0
  109. data/lib/definitions/paths/vendors/vendor_by_id.json +74 -0
  110. data/lib/definitions/paths/vendors/vendors.json +62 -0
  111. data/lib/resolved_schema/resolved_schema.json +1 -1
  112. metadata +106 -3
  113. data/lib/definitions/common/schemas/incident.json +0 -106
@@ -0,0 +1,64 @@
1
+ {
2
+ "get": {
3
+ "operationId": "getWarranties",
4
+ "description": "List of warranties",
5
+ "tags": ["Hardware"],
6
+ "parameters": [
7
+ { "$ref": "../../common/components.json#/components/request/parameters/token_param" },
8
+ { "$ref": "../../common/components.json#/components/request/parameters/id_param" }
9
+ ],
10
+ "responses": {
11
+ "200": {
12
+ "description": "Object was returned correctly",
13
+ "content": {
14
+ "application/json": {
15
+ "schema": {
16
+ "description": "List of warranties",
17
+ "type": "array",
18
+ "items": { "$ref": "../../common/schemas/inventory/warranty.json#/components/schemas/response" }
19
+ }
20
+ },
21
+ "application/xml": {
22
+ "schema": {
23
+ "description": "List of warranties",
24
+ "type": "array",
25
+ "xml": { "name": "/", "wrapped": true },
26
+ "items": { "$ref": "../../common/schemas/inventory/warranty.json#/components/schemas/response" }
27
+ }
28
+ }
29
+ }
30
+ },
31
+ "400": { "description": "Bad request" },
32
+ "404": { "description": "Not found" },
33
+ "500": { "description": "Server error" }
34
+ }
35
+ },
36
+ "post": {
37
+ "operationId": "createWarranty",
38
+ "description": "Create new Warranty",
39
+ "tags": ["Hardware"],
40
+ "parameters": [
41
+ { "$ref": "../../common/components.json#/components/request/parameters/token_param" },
42
+ { "$ref": "../../common/components.json#/components/request/parameters/id_param" }
43
+ ],
44
+ "requestBody": {
45
+ "required": true,
46
+ "description": "Warranty fields to fill",
47
+ "content": {
48
+ "application/json": { "schema": { "$ref": "../../common/schemas/inventory/warranty.json#/components/schemas/request" } },
49
+ "application/xml": { "schema": { "$ref": "../../common/schemas/inventory/warranty.json#/components/schemas/request" } }
50
+ }
51
+ },
52
+ "responses": {
53
+ "200": {
54
+ "description": "Object created and returned correctly",
55
+ "content": {
56
+ "application/json": { "schema": { "$ref": "../../common/schemas/inventory/warranty.json#/components/schemas/response" } },
57
+ "application/xml": { "schema": { "$ref": "../../common/schemas/inventory/warranty.json#/components/schemas/response" } }
58
+ }
59
+ },
60
+ "400": { "description": "Bad request" },
61
+ "500": { "description": "Server error" }
62
+ }
63
+ }
64
+ }
@@ -0,0 +1,75 @@
1
+ {
2
+ "put": {
3
+ "operationId": "updateWarrantyById",
4
+ "description": "Update warranty with specified fields",
5
+ "tags": ["Hardware"],
6
+ "parameters": [
7
+ { "$ref": "../../common/components.json#/components/request/parameters/token_param" },
8
+ {
9
+ "name": "hardware_id",
10
+ "in": "path",
11
+ "schema": { "type": "string" },
12
+ "required": true,
13
+ "description": "Numeric ID of the hardware"
14
+ },
15
+ {
16
+ "name": "warranty_id",
17
+ "in": "path",
18
+ "schema": { "type": "string" },
19
+ "required": true,
20
+ "description": "Numeric ID of the warranty"
21
+ }
22
+ ],
23
+ "requestBody": {
24
+ "required": true,
25
+ "description": "Warranty fields to update",
26
+ "content": {
27
+ "application/json": { "schema": { "$ref": "../../common/schemas/inventory/warranty.json#/components/schemas/request" } },
28
+ "application/xml": { "schema": { "$ref": "../../common/schemas/inventory/warranty.json#/components/schemas/request" } }
29
+ }
30
+ },
31
+ "responses": {
32
+ "200": {
33
+ "description": "Object was updated correctly",
34
+ "content": {
35
+ "application/json": { "schema": { "$ref": "../../common/schemas/inventory/warranty.json#/components/schemas/response" } },
36
+ "application/xml": { "schema": { "$ref": "../../common/schemas/inventory/warranty.json#/components/schemas/response" } }
37
+ }
38
+ },
39
+ "400": { "description": "Bad request" },
40
+ "404": { "description": "Not found" },
41
+ "500": { "description": "Internal Server Error" }
42
+ }
43
+ },
44
+ "delete": {
45
+ "operationId": "deleteWarrantyById",
46
+ "description": "Delete warranty",
47
+ "tags": ["Hardware"],
48
+ "parameters": [
49
+ { "$ref": "../../common/components.json#/components/request/parameters/token_param" },
50
+ {
51
+ "name": "hardware_id",
52
+ "in": "path",
53
+ "schema": { "type": "string" },
54
+ "required": true,
55
+ "description": "Numeric ID of the hardware"
56
+ },
57
+ {
58
+ "name": "warranty_id",
59
+ "in": "path",
60
+ "schema": { "type": "string" },
61
+ "required": true,
62
+ "description": "Numeric ID of the warranty"
63
+ }
64
+ ],
65
+ "responses": {
66
+ "200": {
67
+ "description": "Message regarding a successful operation",
68
+ "content": { "application/json": { "example": { "messages": { "message": "Deleted warranty" } } } }
69
+ },
70
+ "400": { "description": "Bad request" },
71
+ "404": { "description": "Not found" },
72
+ "500": { "description": "Internal Server Error" }
73
+ }
74
+ }
75
+ }
@@ -4,13 +4,19 @@
4
4
  "description": "Get incident",
5
5
  "tags": ["Incident"],
6
6
  "parameters": [
7
- { "$ref": "../../common/components.json#/components/parameters/token_param" },
8
- { "$ref": "../../common/components.json#/components/parameters/id_param" }
7
+ { "$ref": "../../common/components.json#/components/request/parameters/token_param" },
8
+ { "$ref": "../../common/components.json#/components/request/parameters/id_param" }
9
9
  ],
10
10
  "responses": {
11
11
  "200": {
12
12
  "description": "Object was returned correctly",
13
- "content": { "$ref": "../../common/schemas/incident.json#/components/schemas/incident_response_content" }
13
+ "content": {
14
+ "application/json": {
15
+ "schema": { "$ref": "../../common/schemas/service_desk/incident.json#/components/schemas/response" },
16
+ "example": { "$ref": "../../common/examples/incident.json#/examples/response/json" }
17
+ },
18
+ "application/xml": { "schema": { "$ref": "../../common/schemas/service_desk/incident.json#/components/schemas/response" } }
19
+ }
14
20
  },
15
21
  "400": { "description": "Bad request" },
16
22
  "404": { "description": "Not found" },
@@ -22,18 +28,30 @@
22
28
  "description": "Update incident with specified fields",
23
29
  "tags": ["Incident"],
24
30
  "parameters": [
25
- { "$ref": "../../common/components.json#/components/parameters/token_param" },
26
- { "$ref": "../../common/components.json#/components/parameters/id_param" }
31
+ { "$ref": "../../common/components.json#/components/request/parameters/token_param" },
32
+ { "$ref": "../../common/components.json#/components/request/parameters/id_param" }
27
33
  ],
28
34
  "requestBody": {
29
35
  "required": true,
30
36
  "description": "Incident fields to update",
31
- "content": { "$ref": "../../common/schemas/incident.json#/components/schemas/incident_request_content" }
37
+ "content": {
38
+ "application/json": {
39
+ "schema": { "$ref": "../../common/schemas/service_desk/incident.json#/components/schemas/request/put" },
40
+ "example": { "$ref": "../../common/examples/incident.json#/examples/request/json" }
41
+ },
42
+ "application/xml": { "schema": { "$ref": "../../common/schemas/service_desk/incident.json#/components/schemas/request/put" } }
43
+ }
32
44
  },
33
45
  "responses": {
34
46
  "200": {
35
47
  "description": "Object was updated correctly",
36
- "content": { "$ref": "../../common/schemas/incident.json#/components/schemas/incident_response_content" }
48
+ "content": {
49
+ "application/json": {
50
+ "schema": { "$ref": "../../common/schemas/service_desk/incident.json#/components/schemas/response" },
51
+ "example": { "$ref": "../../common/examples/incident.json#/examples/response/json" }
52
+ },
53
+ "application/xml": { "schema": { "$ref": "../../common/schemas/service_desk/incident.json#/components/schemas/response" } }
54
+ }
37
55
  },
38
56
  "400": { "description": "Bad request" },
39
57
  "404": { "description": "Not found" },
@@ -45,12 +63,12 @@
45
63
  "description": "Delete incident",
46
64
  "tags": ["Incident"],
47
65
  "parameters": [
48
- { "$ref": "../../common/components.json#/components/parameters/token_param" },
49
- { "$ref": "../../common/components.json#/components/parameters/id_param" }
66
+ { "$ref": "../../common/components.json#/components/request/parameters/token_param" },
67
+ { "$ref": "../../common/components.json#/components/request/parameters/id_param" }
50
68
  ],
51
69
  "responses": {
52
70
  "200": {
53
- "description": "Object was returned correctly",
71
+ "description": "Returns the deleted incident's id",
54
72
  "content": {
55
73
  "application/json": {
56
74
  "example": { "deleted_ids": ["1"] }
@@ -4,12 +4,29 @@
4
4
  "description": "List of incidents",
5
5
  "tags": ["Incident"],
6
6
  "parameters": [
7
- { "$ref": "../../common/components.json#/components/parameters/token_param" }
7
+ { "$ref": "../../common/components.json#/components/request/parameters/token_param" }
8
8
  ],
9
9
  "responses": {
10
- "200": {
10
+ "200": {
11
11
  "description": "Object was returned correctly",
12
- "content": { "$ref": "../../common/schemas/incident.json#/components/schemas/many_incidents_content" }
12
+ "content": {
13
+ "application/json": {
14
+ "schema": {
15
+ "description": "List of incidents",
16
+ "type": "array",
17
+ "items": { "$ref": "../../common/schemas/service_desk/incident.json#/components/schemas/response" }
18
+ },
19
+ "example": [{ "$ref": "../../common/examples/incident.json#/examples/response/json" }]
20
+ },
21
+ "application/xml": {
22
+ "schema": {
23
+ "description": "List of incidents",
24
+ "type": "array",
25
+ "xml": { "name": "/", "wrapped": true },
26
+ "items": { "$ref": "../../common/schemas/service_desk/incident.json#/components/schemas/response" }
27
+ }
28
+ }
29
+ }
13
30
  },
14
31
  "400": { "description": "Bad request" },
15
32
  "404": { "description": "Not found" },
@@ -21,21 +38,32 @@
21
38
  "description": "Create new incident",
22
39
  "tags": ["Incident"],
23
40
  "parameters": [
24
- { "$ref": "../../common/components.json#/components/parameters/token_param" }
41
+ { "$ref": "../../common/components.json#/components/request/parameters/token_param" }
25
42
  ],
26
43
  "requestBody": {
27
44
  "required": true,
28
45
  "description": "Incident fields to fill",
29
- "content": { "$ref": "../../common/schemas/incident.json#/components/schemas/incident_request_content" }
46
+ "content": {
47
+ "application/json": {
48
+ "schema": { "$ref": "../../common/schemas/service_desk/incident.json#/components/schemas/request/post" },
49
+ "example": { "$ref": "../../common/examples/incident.json#/examples/request/json" }
50
+ },
51
+ "application/xml": { "schema": { "$ref": "../../common/schemas/service_desk/incident.json#/components/schemas/request/post" } }
52
+ }
30
53
  },
31
54
  "responses": {
32
- "200": {
55
+ "200": {
33
56
  "description": "Object created and returned correctly",
34
- "content": { "$ref": "../../common/schemas/incident.json#/components/schemas/incident_response_content" }
57
+ "content": {
58
+ "application/json": {
59
+ "schema": { "$ref": "../../common/schemas/service_desk/incident.json#/components/schemas/response" },
60
+ "example": { "$ref": "../../common/examples/incident.json#/examples/response/json" }
61
+ },
62
+ "application/xml": { "schema": { "$ref": "../../common/schemas/service_desk/incident.json#/components/schemas/response" } }
63
+ }
35
64
  },
36
65
  "400": { "description": "Bad request" },
37
66
  "500": { "description": "Server error" }
38
67
  }
39
68
  }
40
69
  }
41
-
@@ -0,0 +1,20 @@
1
+ {
2
+ "delete": {
3
+ "operationId": "deleteMemebershipById",
4
+ "description": "Delete membership.\nExample: curl -H \"X-Samanage-Authorization: Bearer TOKEN\" -H 'Accept: application/xml' -H 'Content-Type:text/xml' -X DELETE https://api.samanage.com/memberships/1.xml",
5
+ "tags": ["Membership"],
6
+ "parameters": [
7
+ { "$ref": "../../common/components.json#/components/request/parameters/token_param" },
8
+ { "$ref": "../../common/components.json#/components/request/parameters/id_param" }
9
+ ],
10
+ "responses": {
11
+ "200": {
12
+ "description": "Message regarding a successful operation",
13
+ "content": { "application/json": { "example": { "messages": { "message": "Deleted membership" } } } }
14
+ },
15
+ "400": { "description": "Bad request" },
16
+ "404": { "description": "Not found" },
17
+ "500": { "description": "Internal Server Error" }
18
+ }
19
+ }
20
+ }
@@ -0,0 +1,29 @@
1
+ {
2
+ "post": {
3
+ "operationId": "createMembership",
4
+ "description": "Create new Membership. Memberships are used to relate a user to a group.\nExample: curl -H \"X-Samanage-Authorization: Bearer TOKEN\" -H 'Accept: application/xml' -H 'Content-Type:text/xml' -X POST https://api.samanage.com/memberships.xml?group_id=1&user_ids=1",
5
+ "tags": ["Membership"],
6
+ "parameters": [
7
+ { "$ref": "../../common/components.json#/components/request/parameters/token_param" },
8
+ {
9
+ "name": "group_id",
10
+ "in": "query",
11
+ "schema": { "type": "string" },
12
+ "required": true,
13
+ "description": "Numeric ID of the group"
14
+ },
15
+ {
16
+ "name": "user_ids",
17
+ "in": "query",
18
+ "schema": { "type": "string" },
19
+ "required": true,
20
+ "description": "Numeric IDs of the users"
21
+ }
22
+ ],
23
+ "responses": {
24
+ "200": { "description": "membership created and returned correctly" },
25
+ "400": { "description": "Bad request" },
26
+ "500": { "description": "Server error" }
27
+ }
28
+ }
29
+ }
@@ -0,0 +1,74 @@
1
+ {
2
+ "get": {
3
+ "operationId": "getMobileById",
4
+ "description": "Get mobile device",
5
+ "tags": ["Mobile Device"],
6
+ "parameters": [
7
+ { "$ref": "../../common/components.json#/components/request/parameters/token_param" },
8
+ { "$ref": "../../common/components.json#/components/request/parameters/id_param" }
9
+ ],
10
+ "responses": {
11
+ "200": {
12
+ "description": "Object was returned correctly",
13
+ "content": {
14
+ "application/json": { "schema": { "$ref": "../../common/schemas/inventory/mobile.json#/components/schemas/response" } },
15
+ "application/xml": { "schema": { "$ref": "../../common/schemas/inventory/mobile.json#/components/schemas/response" } }
16
+ }
17
+ },
18
+ "400": { "description": "Bad request" },
19
+ "404": { "description": "Not found" },
20
+ "500": { "description": "Internal Server Error" }
21
+ }
22
+ },
23
+ "put": {
24
+ "operationId": "updateMobileById",
25
+ "description": "Update mobile device with specified fields",
26
+ "tags": ["Mobile Device"],
27
+ "parameters": [
28
+ { "$ref": "../../common/components.json#/components/request/parameters/token_param" },
29
+ { "$ref": "../../common/components.json#/components/request/parameters/id_param" }
30
+ ],
31
+ "requestBody": {
32
+ "required": true,
33
+ "description": "Mobile device fields to update",
34
+ "content": {
35
+ "application/json": { "schema": { "$ref": "../../common/schemas/inventory/mobile.json#/components/schemas/request/put" } },
36
+ "application/xml": { "schema": { "$ref": "../../common/schemas/inventory/mobile.json#/components/schemas/request/put" } }
37
+ }
38
+ },
39
+ "responses": {
40
+ "200": {
41
+ "description": "Object was updated correctly",
42
+ "content": {
43
+ "application/json": { "schema": { "$ref": "../../common/schemas/inventory/mobile.json#/components/schemas/response" } },
44
+ "application/xml": { "schema": { "$ref": "../../common/schemas/inventory/mobile.json#/components/schemas/response" } }
45
+ }
46
+ },
47
+ "400": { "description": "Bad request" },
48
+ "404": { "description": "Not found" },
49
+ "500": { "description": "Internal Server Error" }
50
+ }
51
+ },
52
+ "delete": {
53
+ "operationId": "deleteMobileById",
54
+ "description": "Delete mobile device",
55
+ "tags": ["Mobile Device"],
56
+ "parameters": [
57
+ { "$ref": "../../common/components.json#/components/request/parameters/token_param" },
58
+ { "$ref": "../../common/components.json#/components/request/parameters/id_param" }
59
+ ],
60
+ "responses": {
61
+ "200": {
62
+ "description": "Returns the deleted mobile's id",
63
+ "content": {
64
+ "application/json": {
65
+ "example": { "deleted_ids": ["1"] }
66
+ }
67
+ }
68
+ },
69
+ "400": { "description": "Bad request" },
70
+ "404": { "description": "Not found" },
71
+ "500": { "description": "Internal Server Error" }
72
+ }
73
+ }
74
+ }
@@ -0,0 +1,62 @@
1
+ {
2
+ "get": {
3
+ "operationId": "getMobiles",
4
+ "description": "List of mobile devices",
5
+ "tags": ["Mobile Device"],
6
+ "parameters": [
7
+ { "$ref": "../../common/components.json#/components/request/parameters/token_param" }
8
+ ],
9
+ "responses": {
10
+ "200": {
11
+ "description": "Object was returned correctly",
12
+ "content": {
13
+ "application/json": {
14
+ "schema": {
15
+ "description": "List of mobile devices",
16
+ "type": "array",
17
+ "items": { "$ref": "../../common/schemas/inventory/mobile.json#/components/schemas/response" }
18
+ }
19
+ },
20
+ "application/xml": {
21
+ "schema": {
22
+ "description": "List of mobile devices",
23
+ "type": "array",
24
+ "xml": { "name": "/", "wrapped": true },
25
+ "items": { "$ref": "../../common/schemas/inventory/mobile.json#/components/schemas/response" }
26
+ }
27
+ }
28
+ }
29
+ },
30
+ "400": { "description": "Bad request" },
31
+ "404": { "description": "Not found" },
32
+ "500": { "description": "Server error" }
33
+ }
34
+ },
35
+ "post": {
36
+ "operationId": "createMobile",
37
+ "description": "Create new mobile device",
38
+ "tags": ["Mobile Device"],
39
+ "parameters": [
40
+ { "$ref": "../../common/components.json#/components/request/parameters/token_param" }
41
+ ],
42
+ "requestBody": {
43
+ "required": true,
44
+ "description": "Mobile Device fields to fill",
45
+ "content": {
46
+ "application/json": { "schema": { "$ref": "../../common/schemas/inventory/mobile.json#/components/schemas/request/post" } },
47
+ "application/xml": { "schema": { "$ref": "../../common/schemas/inventory/mobile.json#/components/schemas/request/post" } }
48
+ }
49
+ },
50
+ "responses": {
51
+ "200": {
52
+ "description": "Object created and returned correctly",
53
+ "content": {
54
+ "application/json": { "schema": { "$ref": "../../common/schemas/inventory/mobile.json#/components/schemas/response" } },
55
+ "application/xml": { "schema": { "$ref": "../../common/schemas/inventory/mobile.json#/components/schemas/response" } }
56
+ }
57
+ },
58
+ "400": { "description": "Bad request" },
59
+ "500": { "description": "Server error" }
60
+ }
61
+ }
62
+ }