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
@@ -1,122 +1,136 @@
1
1
  {
2
- "examples": {
3
- "request": {
4
- "json": {
5
- "incident": {
6
- "name": "Incident Name",
7
- "site_id": 1,
8
- "department_id": 1,
9
- "description": "description",
10
- "state_id": 1,
11
- "assignee": { "email": "john.doe@email.com" },
12
- "requester": { "email": "john.doe@email.com" },
13
- "priority": "High",
14
- "category": { "name": "Facilities" },
15
- "subcategory": { "name": "Equipment" },
16
- "due_at": "Jan 01,2025",
17
- "add_to_tag_list": "tag1, tag2",
18
- "custom_fields_values": {
19
- "custom_fields_value": [
20
- { "name": "field name", "value": "content" }
21
- ]
22
- },
23
- "incidents": [{ "number": "100" }],
24
- "problems": [{ "number": "100" }],
25
- "changes": [{ "number": "100" }],
26
- "solutions": [{ "number" :"100" }],
27
- "releases": [{ "number": "100" }],
28
- "configuration_item_ids":["100"]
29
- }
30
- },
31
- "xml": {
32
- "description": "shouldn't work due to bug in openApi - https://github.com/springdoc/springdoc-openapi/issues/719",
33
- "xml": "<incident><site><name>NAME</name></site><department_id>0</department_id><description>DESCRIPTION</description><state>NAME</state><assignee><email>EMAIL</email></assignee></incident>"
2
+ "examples": {
3
+ "request": {
4
+ "json": {
5
+ "incident": {
6
+ "name": "Incident Name",
7
+ "site_id": 1,
8
+ "department_id": 1,
9
+ "description": "description",
10
+ "state_id": 1,
11
+ "assignee": { "email": "john.doe@email.com" },
12
+ "requester": { "email": "john.doe@email.com" },
13
+ "priority": "High",
14
+ "category": { "name": "Facilities" },
15
+ "subcategory": { "name": "Equipment" },
16
+ "due_at": "Jan 01,2025",
17
+ "add_to_tag_list": "tag1, tag2",
18
+ "remove_from_tag_list": "tag3",
19
+ "tag_list": "tag1, tag2",
20
+ "custom_fields_values": {
21
+ "custom_fields_value": [
22
+ { "name": "Text custom field", "value": "content" },
23
+ { "name": "User custom field", "user_value": { "email": "john.doe@email.com" } }
24
+ ]
25
+ },
26
+ "incidents": [{ "number": "100" }],
27
+ "problems": [{ "number": "100" }],
28
+ "changes": [{ "number": "100" }],
29
+ "solutions": [{ "number" :"100" }],
30
+ "releases": [{ "number": "100" }],
31
+ "configuration_item_ids":["100"],
32
+ "cc": ["jane.doe@email.com"]
33
+ }
34
+ }
35
+ },
36
+ "response": {
37
+ "json": {
38
+ "incident": {
39
+ "id": "10000",
40
+ "number": "1000",
41
+ "name": "Incident Name",
42
+ "description": "description",
43
+ "state": "New",
44
+ "site": {
45
+ "id": "1",
46
+ "name": "Austin TX, USA",
47
+ "location": "AUS",
48
+ "description": "",
49
+ "time_zone": ""
50
+ },
51
+ "department": {
52
+ "id": "1",
53
+ "name": "Support",
54
+ "description": "",
55
+ "default_assignee_id": "1"
56
+ },
57
+ "category": {
58
+ "id": "10000",
59
+ "name": "Facilities",
60
+ "default_tags": "tagA, tagB",
61
+ "parent_id": "null",
62
+ "default_assignee_id": "1"
63
+ },
64
+ "subcategory": {
65
+ "id": "1000",
66
+ "name": "Equipment",
67
+ "default_tags": "",
68
+ "parent_id": "10000",
69
+ "default_assignee_id": "1"
70
+ },
71
+ "priority": "High",
72
+ "assignee": {
73
+ "group_id": "1",
74
+ "is_user": "true",
75
+ "id": "1",
76
+ "name": "John Doe",
77
+ "email": "john.doe@email.com",
78
+ "avatar": {
79
+ "type": "initials",
80
+ "color": "#fd4165",
81
+ "initials": "JD"
82
+ }
83
+ },
84
+ "requester": {
85
+ "id": "1",
86
+ "account_id": "1",
87
+ "user_id": "1",
88
+ "email": "john.doe@email.com",
89
+ "name": "John Doe",
90
+ "disabled": false,
91
+ "avatar": {
92
+ "type": "initials",
93
+ "color": "#fd4165",
94
+ "initials": "JD"
34
95
  }
35
- },
36
- "response": {
37
- "json": {
38
- "incident": {
39
- "id": "10000",
40
- "number": "1000",
41
- "name": "Incident Name",
42
- "description": "description",
43
- "state": "New",
44
- "site": {
45
- "id": "1",
46
- "name": "Austin TX, USA",
47
- "location": "AUS",
48
- "description": "",
49
- "time_zone": ""
50
- },
51
- "department": {
52
- "id": "1",
53
- "name": "Support",
54
- "description": "",
55
- "default_assignee_id": "1"
56
- },
57
- "category": {
58
- "id": "10000",
59
- "name": "Facilities",
60
- "default_tags": "tagA, tagB",
61
- "parent_id": "null",
62
- "default_assignee_id": "1"
63
- },
64
- "subcategory": {
65
- "id": "1000",
66
- "name": "Equipment",
67
- "default_tags": "",
68
- "parent_id": "10000",
69
- "default_assignee_id": "1"
70
- },
71
- "priority": "High",
72
- "assignee": {
73
- "group_id": "1",
74
- "is_user": "true",
75
- "id": "1",
76
- "name": "Jogn Doe",
77
- "email": "john.doe@email.com",
78
- "avatar": {
79
- "type": "initials",
80
- "color": "#fd4165",
81
- "initials": "AA"
82
- }
83
- },
84
- "requester": {
85
- "group_id": "1",
86
- "is_user": "true",
87
- "id": "1",
88
- "name": "John Doe",
89
- "email": "john.doe@email.com",
90
- "avatar": {
91
- "type": "initials",
92
- "color": "#fd4165",
93
- "initials": "AA"
94
- }
95
- },
96
- "custom_fields_values": [
97
- {
98
- "id": "1000",
99
- "custom_field_id": "1",
100
- "name": "field name",
101
- "value": "content",
102
- "options": "",
103
- "type_name": "Text"
104
- }
105
- ],
106
- "due_at": "2025-01-01T00:00:00.000+01:00",
107
- "origin": "api",
108
- "incidents": [{ "id": "100", "href": "https://mydomain.com/incidents/123"}],
109
- "problems": [{ "id": "100", "href": "https://mydomain.com/problems/123"}],
110
- "changes": [{ "id": "100", "href": "https://mydomain.com/changes/123"}],
111
- "solutions": [{ "id": "100", "href": "https://mydomain.com/solutions/123"}],
112
- "releases": [{ "id": "100", "href": "https://mydomain.com/releases/123"}],
113
- "configuration_items": [{ "id": "100", "href": "https://mydomain.com/configuration_items/123"}]
114
- }
96
+ },
97
+ "custom_fields_values": [
98
+ {
99
+ "id": "10",
100
+ "custom_field_id": "1",
101
+ "name": "Text custom field",
102
+ "value": "content",
103
+ "options": "",
104
+ "type_name": "Text"
115
105
  },
116
- "xml": {
117
- "description": "shouldn't work due to bug in openApi - https://github.com/springdoc/springdoc-openapi/issues/719",
118
- "xml": "<incident><site><name>NAME</name></site><department_id>0</department_id><description>DESCRIPTION</description><state>NAME</state><assignee><email>EMAIL</email></assignee></incident>"
106
+ {
107
+ "id": "100",
108
+ "custom_field_id": "1",
109
+ "name": "User custom field",
110
+ "value": "1",
111
+ "options": "",
112
+ "type_name": "User",
113
+ "user": {
114
+ "group_id": 1,
115
+ "is_user": true,
116
+ "id": 1,
117
+ "name": "John Doe",
118
+ "email": "john.doe@email.com"
119
+ }
119
120
  }
121
+ ],
122
+ "due_at": "2025-01-01T00:00:00.000+01:00",
123
+ "origin": "api",
124
+ "incidents": [{ "id": "100", "href": "https://mydomain.com/incidents/100"}],
125
+ "problems": [{ "id": "100", "href": "https://mydomain.com/problems/100"}],
126
+ "changes": [{ "id": "100", "href": "https://mydomain.com/changes/100"}],
127
+ "solutions": [{ "id": "100", "href": "https://mydomain.com/solutions/100"}],
128
+ "releases": [{ "id": "100", "href": "https://mydomain.com/releases/100"}],
129
+ "configuration_items": [{ "id": "100", "href": "https://mydomain.com/configuration_items/100"}],
130
+ "is_service_request": false,
131
+ "cc": ["jane.doe@email.com"]
120
132
  }
133
+ }
121
134
  }
135
+ }
122
136
  }
@@ -0,0 +1,110 @@
1
+ {
2
+ "examples": {
3
+ "request": {
4
+ "json": {
5
+ "problem": {
6
+ "name": "Problem Name",
7
+ "site_id": 1,
8
+ "department_id": 1,
9
+ "description": "description",
10
+ "state": 1,
11
+ "root_cause": "Root cause description",
12
+ "symptoms": "Symptoms description",
13
+ "workaround": "workaround description",
14
+ "assignee": { "email": "john.doe@email.com" },
15
+ "requester": { "email": "john.doe@email.com" },
16
+ "priority": "High",
17
+ "add_to_tag_list": "tag1",
18
+ "remove_from_tag_list": "tag2",
19
+ "tag_list": "tag1",
20
+ "custom_fields_values_attributes": [
21
+ { "id": "10", "custom_field_id": 1, "value": "content" }
22
+ ],
23
+ "incident_ids": [100],
24
+ "itsm_change_ids": [100],
25
+ "configuration_item_ids":[100]
26
+ }
27
+ }
28
+ },
29
+ "response": {
30
+ "json": {
31
+ "problem": {
32
+ "id": "10000",
33
+ "number": "1000",
34
+ "name": "Problem Name",
35
+ "description": "description",
36
+ "state": "New",
37
+ "root_cause": "Root cause description",
38
+ "symptoms": "Symptoms description",
39
+ "workaround": "workaround description",
40
+ "site": {
41
+ "id": "1",
42
+ "name": "Austin TX, USA",
43
+ "location": "AUS",
44
+ "description": "",
45
+ "time_zone": ""
46
+ },
47
+ "department": {
48
+ "id": "1",
49
+ "name": "Support",
50
+ "description": "",
51
+ "default_assignee_id": "1"
52
+ },
53
+ "priority": "High",
54
+ "created_by": {
55
+ "id": "1",
56
+ "account_id": "1",
57
+ "user_id": "1",
58
+ "email": "john.doe@email.com",
59
+ "name": "John Doe",
60
+ "disabled": false,
61
+ "avatar": {
62
+ "type": "initials",
63
+ "color": "#fd4165",
64
+ "initials": "JD"
65
+ }
66
+ },
67
+ "assignee": {
68
+ "group_id": "1",
69
+ "is_user": "true",
70
+ "id": "1",
71
+ "name": "John Doe",
72
+ "email": "john.doe@email.com",
73
+ "avatar": {
74
+ "type": "initials",
75
+ "color": "#fd4165",
76
+ "initials": "JD"
77
+ }
78
+ },
79
+ "requester": {
80
+ "id": "1",
81
+ "account_id": "1",
82
+ "user_id": "1",
83
+ "email": "john.doe@email.com",
84
+ "name": "John Doe",
85
+ "disabled": false,
86
+ "avatar": {
87
+ "type": "initials",
88
+ "color": "#fd4165",
89
+ "initials": "JD"
90
+ }
91
+ },
92
+ "custom_fields_values": [
93
+ {
94
+ "id": "10",
95
+ "custom_field_id": "1",
96
+ "name": "field name",
97
+ "value": "content",
98
+ "options": "",
99
+ "type_name": "Text"
100
+ }
101
+ ],
102
+ "tags": [{ "id": 1, "name": "tag1", "taggings_count": 1 }],
103
+ "incidents": [{ "id": "100", "href": "https://mydomain.com/incidents/100"}],
104
+ "changes": [{ "id": "100", "href": "https://mydomain.com/changes/100"}],
105
+ "configuration_items": [{ "id": "100", "href": "https://mydomain.com/configuration_items/100"}]
106
+ }
107
+ }
108
+ }
109
+ }
110
+ }
@@ -0,0 +1,128 @@
1
+ {
2
+ "examples": {
3
+ "request": {
4
+ "json": {
5
+ "release": {
6
+ "name": "Release Name",
7
+ "site_id": 1,
8
+ "department_id": 1,
9
+ "description": "description",
10
+ "state": 1,
11
+ "plan": "plan description" ,
12
+ "build": "build description",
13
+ "deploy": "deploy description",
14
+ "planned_start_at": "2025-01-01 00:00",
15
+ "planned_end_at": "2025-01-01 05:00" ,
16
+ "assignee": { "email": "john.doe@email.com" },
17
+ "requester": { "email": "john.doe@email.com" },
18
+ "priority": "High",
19
+ "add_to_tag_list": "tag1",
20
+ "remove_from_tag_list": "tag2",
21
+ "tag_list": "tag1",
22
+ "custom_fields_values_attributes": [
23
+ { "id": "10", "custom_field_id": 1, "value": "content" }
24
+ ],
25
+ "approval_levels_attributes": [
26
+ { "id": "1", "approver_ids": "1", "approval_condition": "1" }
27
+ ],
28
+ "itsm_change_ids": [100],
29
+ "configuration_item_ids":[100]
30
+ }
31
+ }
32
+ },
33
+ "response": {
34
+ "json": {
35
+ "release": {
36
+ "id": "10000",
37
+ "number": "1000",
38
+ "name": "Release Name",
39
+ "description": "description",
40
+ "state": "New",
41
+ "plan": "plan description" ,
42
+ "build": "build description",
43
+ "deploy": "deploy description",
44
+ "planned_start_at": "2025-01-01T00:00:00.000+01:00",
45
+ "planned_end_at": "2025-01-01T05:00:00.000+01:00" ,
46
+ "site": {
47
+ "id": "1",
48
+ "name": "Austin TX, USA",
49
+ "location": "AUS",
50
+ "description": "Austin TX, USA"
51
+ },
52
+ "department": {
53
+ "id": "1",
54
+ "name": "Support",
55
+ "description": "Support Department",
56
+ "default_assignee_id": "1"
57
+ },
58
+ "priority": "High",
59
+ "created_by": {
60
+ "id": "1",
61
+ "account_id": "1",
62
+ "user_id": "1",
63
+ "email": "john.doe@email.com",
64
+ "name": "John Doe",
65
+ "disabled": false,
66
+ "avatar": {
67
+ "type": "initials",
68
+ "color": "#fd4165",
69
+ "initials": "JD"
70
+ }
71
+ },
72
+ "assignee": {
73
+ "group_id": "1",
74
+ "is_user": "true",
75
+ "id": "1",
76
+ "name": "John Doe",
77
+ "email": "john.doe@email.com",
78
+ "avatar": {
79
+ "type": "initials",
80
+ "color": "#fd4165",
81
+ "initials": "JD"
82
+ }
83
+ },
84
+ "requester": {
85
+ "id": "1",
86
+ "account_id": "1",
87
+ "user_id": "1",
88
+ "email": "john.doe@email.com",
89
+ "name": "John Doe",
90
+ "disabled": false,
91
+ "avatar": {
92
+ "type": "initials",
93
+ "color": "#fd4165",
94
+ "initials": "JD"
95
+ }
96
+ },
97
+ "custom_fields_values": [
98
+ {
99
+ "id": "10",
100
+ "custom_field_id": "1",
101
+ "name": "field name",
102
+ "value": "content",
103
+ "options": "",
104
+ "type_name": "Text"
105
+ }
106
+ ],
107
+ "tags": [{ "id": 1, "name": "tag1", "taggings_count": 1 }],
108
+ "approvers": [
109
+ {
110
+ "group_id": "1",
111
+ "is_user": "true",
112
+ "id": "1",
113
+ "name": "John Doe",
114
+ "email": "john.doe@email.com",
115
+ "avatar": {
116
+ "type": "initials",
117
+ "color": "#fd4165",
118
+ "initials": "JD"
119
+ }
120
+ }
121
+ ],
122
+ "changes": [{ "id": "100", "href": "https://mydomain.com/changes/100"}],
123
+ "configuration_items": [{ "id": "100", "href": "https://mydomain.com/configuration_items/100"}]
124
+ }
125
+ }
126
+ }
127
+ }
128
+ }