servicenow-mcp-server 2.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.claude/settings.local.json +70 -0
- package/CLAUDE.md +777 -0
- package/LICENSE +21 -0
- package/README.md +562 -0
- package/assets/logo.svg +385 -0
- package/config/servicenow-instances.json.example +28 -0
- package/docs/403_TROUBLESHOOTING.md +329 -0
- package/docs/API_REFERENCE.md +1142 -0
- package/docs/APPLICATION_SCOPE_VALIDATION.md +681 -0
- package/docs/CLAUDE_DESKTOP_SETUP.md +373 -0
- package/docs/CONVENIENCE_TOOLS.md +601 -0
- package/docs/CONVENIENCE_TOOLS_SUMMARY.md +371 -0
- package/docs/FLOW_DESIGNER_GUIDE.md +1021 -0
- package/docs/IMPLEMENTATION_COMPLETE.md +165 -0
- package/docs/INSTANCE_SWITCHING_GUIDE.md +219 -0
- package/docs/MULTI_INSTANCE_CONFIGURATION.md +185 -0
- package/docs/NATURAL_LANGUAGE_SEARCH_IMPLEMENTATION.md +221 -0
- package/docs/PUPPETEER_INTEGRATION_PROPOSAL.md +1322 -0
- package/docs/QUICK_REFERENCE.md +395 -0
- package/docs/README.md +75 -0
- package/docs/RESOURCES_ARCHITECTURE.md +392 -0
- package/docs/RESOURCES_IMPLEMENTATION.md +276 -0
- package/docs/RESOURCES_SUMMARY.md +104 -0
- package/docs/SETUP_GUIDE.md +104 -0
- package/docs/UI_OPERATIONS_ARCHITECTURE.md +1219 -0
- package/docs/UI_OPERATIONS_DECISION_MATRIX.md +542 -0
- package/docs/UI_OPERATIONS_SUMMARY.md +507 -0
- package/docs/UPDATE_SET_VALIDATION.md +598 -0
- package/docs/UPDATE_SET_VALIDATION_SUMMARY.md +209 -0
- package/docs/VALIDATION_SUMMARY.md +479 -0
- package/jest.config.js +24 -0
- package/package.json +61 -0
- package/scripts/background_script_2025-09-29T20-19-35-101Z.js +23 -0
- package/scripts/link_ui_policy_actions_2025-09-29T20-17-15-218Z.js +90 -0
- package/scripts/set_update_set_Integration_Governance_Framework_2025-09-29T19-47-06-790Z.js +30 -0
- package/scripts/set_update_set_Integration_Governance_Framework_2025-09-29T19-59-33-152Z.js +30 -0
- package/scripts/set_update_set_current_2025-09-29T20-16-59-675Z.js +24 -0
- package/scripts/test_sys_dictionary_403.js +85 -0
- package/setup/setup-report.json +5313 -0
- package/src/config/comprehensive-table-definitions.json +2575 -0
- package/src/config/instance-config.json +4693 -0
- package/src/config/prompts.md +59 -0
- package/src/config/table-definitions.json +4681 -0
- package/src/config-manager.js +146 -0
- package/src/mcp-server-consolidated.js +2894 -0
- package/src/natural-language.js +472 -0
- package/src/resources.js +326 -0
- package/src/script-sync.js +428 -0
- package/src/server.js +125 -0
- package/src/servicenow-client.js +1625 -0
- package/src/stdio-server.js +52 -0
- package/start-mcp.sh +7 -0
|
@@ -0,0 +1,4693 @@
|
|
|
1
|
+
{
|
|
2
|
+
"instance_info": {
|
|
3
|
+
"url": "https://dev276360.service-now.com",
|
|
4
|
+
"version": "glide-zurich-07-01-2025__patch1-08-20-2025_09-08-2025_1328.zip",
|
|
5
|
+
"edition": "Service Management",
|
|
6
|
+
"capabilities": [],
|
|
7
|
+
"plugins": []
|
|
8
|
+
},
|
|
9
|
+
"enabled_packages": [
|
|
10
|
+
"service desk"
|
|
11
|
+
],
|
|
12
|
+
"custom_configurations": {
|
|
13
|
+
"source": "Clean comprehensive ServiceNow developer table definitions",
|
|
14
|
+
"total_tables": 94,
|
|
15
|
+
"generated_on": "2025-09-26T13:55:10.451Z",
|
|
16
|
+
"priority_system": "1=Core ITSM, 2=Extended Services, 3=Platform Development, 4=Advanced Integration, 5=Analytics",
|
|
17
|
+
"incident": {
|
|
18
|
+
"label": "Incident",
|
|
19
|
+
"table": "incident",
|
|
20
|
+
"key_field": "number",
|
|
21
|
+
"display_field": "short_description",
|
|
22
|
+
"required_fields": [
|
|
23
|
+
"short_description"
|
|
24
|
+
],
|
|
25
|
+
"common_fields": [
|
|
26
|
+
"sys_created_on",
|
|
27
|
+
"sys_updated_on",
|
|
28
|
+
"sys_created_by",
|
|
29
|
+
"sys_updated_by",
|
|
30
|
+
"state",
|
|
31
|
+
"priority",
|
|
32
|
+
"urgency",
|
|
33
|
+
"impact",
|
|
34
|
+
"category",
|
|
35
|
+
"subcategory",
|
|
36
|
+
"caller_id",
|
|
37
|
+
"assigned_to",
|
|
38
|
+
"assignment_group",
|
|
39
|
+
"description",
|
|
40
|
+
"work_notes"
|
|
41
|
+
],
|
|
42
|
+
"operations": [
|
|
43
|
+
"create",
|
|
44
|
+
"read",
|
|
45
|
+
"update",
|
|
46
|
+
"list",
|
|
47
|
+
"search"
|
|
48
|
+
],
|
|
49
|
+
"priority": 1,
|
|
50
|
+
"package": "service_desk",
|
|
51
|
+
"description": "ServiceNow Incident table"
|
|
52
|
+
},
|
|
53
|
+
"change_request": {
|
|
54
|
+
"label": "Change Request",
|
|
55
|
+
"table": "change_request",
|
|
56
|
+
"key_field": "number",
|
|
57
|
+
"display_field": "short_description",
|
|
58
|
+
"required_fields": [
|
|
59
|
+
"short_description"
|
|
60
|
+
],
|
|
61
|
+
"common_fields": [
|
|
62
|
+
"sys_created_on",
|
|
63
|
+
"sys_updated_on",
|
|
64
|
+
"sys_created_by",
|
|
65
|
+
"sys_updated_by",
|
|
66
|
+
"name",
|
|
67
|
+
"active"
|
|
68
|
+
],
|
|
69
|
+
"operations": [
|
|
70
|
+
"create",
|
|
71
|
+
"read",
|
|
72
|
+
"update",
|
|
73
|
+
"list",
|
|
74
|
+
"search"
|
|
75
|
+
],
|
|
76
|
+
"priority": 1,
|
|
77
|
+
"package": "service_desk",
|
|
78
|
+
"description": "ServiceNow Change Request table"
|
|
79
|
+
},
|
|
80
|
+
"change_task": {
|
|
81
|
+
"label": "Change Task",
|
|
82
|
+
"table": "change_task",
|
|
83
|
+
"key_field": "sys_id",
|
|
84
|
+
"display_field": "name",
|
|
85
|
+
"required_fields": [
|
|
86
|
+
"name"
|
|
87
|
+
],
|
|
88
|
+
"common_fields": [
|
|
89
|
+
"sys_created_on",
|
|
90
|
+
"sys_updated_on",
|
|
91
|
+
"sys_created_by",
|
|
92
|
+
"sys_updated_by",
|
|
93
|
+
"name",
|
|
94
|
+
"active"
|
|
95
|
+
],
|
|
96
|
+
"operations": [
|
|
97
|
+
"create",
|
|
98
|
+
"read",
|
|
99
|
+
"update",
|
|
100
|
+
"list",
|
|
101
|
+
"search"
|
|
102
|
+
],
|
|
103
|
+
"priority": 1,
|
|
104
|
+
"package": "service_desk",
|
|
105
|
+
"description": "ServiceNow Change Task table"
|
|
106
|
+
},
|
|
107
|
+
"problem": {
|
|
108
|
+
"label": "Problem",
|
|
109
|
+
"table": "problem",
|
|
110
|
+
"key_field": "number",
|
|
111
|
+
"display_field": "short_description",
|
|
112
|
+
"required_fields": [
|
|
113
|
+
"short_description"
|
|
114
|
+
],
|
|
115
|
+
"common_fields": [
|
|
116
|
+
"sys_created_on",
|
|
117
|
+
"sys_updated_on",
|
|
118
|
+
"sys_created_by",
|
|
119
|
+
"sys_updated_by",
|
|
120
|
+
"name",
|
|
121
|
+
"active"
|
|
122
|
+
],
|
|
123
|
+
"operations": [
|
|
124
|
+
"create",
|
|
125
|
+
"read",
|
|
126
|
+
"update",
|
|
127
|
+
"list",
|
|
128
|
+
"search"
|
|
129
|
+
],
|
|
130
|
+
"priority": 1,
|
|
131
|
+
"package": "service_desk",
|
|
132
|
+
"description": "ServiceNow Problem table"
|
|
133
|
+
},
|
|
134
|
+
"problem_task": {
|
|
135
|
+
"label": "Problem Task",
|
|
136
|
+
"table": "problem_task",
|
|
137
|
+
"key_field": "sys_id",
|
|
138
|
+
"display_field": "name",
|
|
139
|
+
"required_fields": [
|
|
140
|
+
"name"
|
|
141
|
+
],
|
|
142
|
+
"common_fields": [
|
|
143
|
+
"sys_created_on",
|
|
144
|
+
"sys_updated_on",
|
|
145
|
+
"sys_created_by",
|
|
146
|
+
"sys_updated_by",
|
|
147
|
+
"name",
|
|
148
|
+
"active"
|
|
149
|
+
],
|
|
150
|
+
"operations": [
|
|
151
|
+
"create",
|
|
152
|
+
"read",
|
|
153
|
+
"update",
|
|
154
|
+
"list",
|
|
155
|
+
"search"
|
|
156
|
+
],
|
|
157
|
+
"priority": 1,
|
|
158
|
+
"package": "service_desk",
|
|
159
|
+
"description": "ServiceNow Problem Task table"
|
|
160
|
+
},
|
|
161
|
+
"sc_cat_item": {
|
|
162
|
+
"label": "Sc Cat Item",
|
|
163
|
+
"table": "sc_cat_item",
|
|
164
|
+
"key_field": "sys_id",
|
|
165
|
+
"display_field": "name",
|
|
166
|
+
"required_fields": [
|
|
167
|
+
"name"
|
|
168
|
+
],
|
|
169
|
+
"common_fields": [
|
|
170
|
+
"sys_created_on",
|
|
171
|
+
"sys_updated_on",
|
|
172
|
+
"sys_created_by",
|
|
173
|
+
"sys_updated_by",
|
|
174
|
+
"name",
|
|
175
|
+
"active"
|
|
176
|
+
],
|
|
177
|
+
"operations": [
|
|
178
|
+
"create",
|
|
179
|
+
"read",
|
|
180
|
+
"update",
|
|
181
|
+
"list",
|
|
182
|
+
"search"
|
|
183
|
+
],
|
|
184
|
+
"priority": 2,
|
|
185
|
+
"package": "service_desk",
|
|
186
|
+
"description": "ServiceNow Sc Cat Item table"
|
|
187
|
+
},
|
|
188
|
+
"sc_category": {
|
|
189
|
+
"label": "Sc Category",
|
|
190
|
+
"table": "sc_category",
|
|
191
|
+
"key_field": "sys_id",
|
|
192
|
+
"display_field": "name",
|
|
193
|
+
"required_fields": [
|
|
194
|
+
"name"
|
|
195
|
+
],
|
|
196
|
+
"common_fields": [
|
|
197
|
+
"sys_created_on",
|
|
198
|
+
"sys_updated_on",
|
|
199
|
+
"sys_created_by",
|
|
200
|
+
"sys_updated_by",
|
|
201
|
+
"name",
|
|
202
|
+
"active"
|
|
203
|
+
],
|
|
204
|
+
"operations": [
|
|
205
|
+
"create",
|
|
206
|
+
"read",
|
|
207
|
+
"update",
|
|
208
|
+
"list",
|
|
209
|
+
"search"
|
|
210
|
+
],
|
|
211
|
+
"priority": 2,
|
|
212
|
+
"package": "service_desk",
|
|
213
|
+
"description": "ServiceNow Sc Category table"
|
|
214
|
+
},
|
|
215
|
+
"sc_request": {
|
|
216
|
+
"label": "Sc Request",
|
|
217
|
+
"table": "sc_request",
|
|
218
|
+
"key_field": "number",
|
|
219
|
+
"display_field": "name",
|
|
220
|
+
"required_fields": [
|
|
221
|
+
"name"
|
|
222
|
+
],
|
|
223
|
+
"common_fields": [
|
|
224
|
+
"sys_created_on",
|
|
225
|
+
"sys_updated_on",
|
|
226
|
+
"sys_created_by",
|
|
227
|
+
"sys_updated_by",
|
|
228
|
+
"name",
|
|
229
|
+
"active"
|
|
230
|
+
],
|
|
231
|
+
"operations": [
|
|
232
|
+
"create",
|
|
233
|
+
"read",
|
|
234
|
+
"update",
|
|
235
|
+
"list",
|
|
236
|
+
"search"
|
|
237
|
+
],
|
|
238
|
+
"priority": 2,
|
|
239
|
+
"package": "service_desk",
|
|
240
|
+
"description": "ServiceNow Sc Request table"
|
|
241
|
+
},
|
|
242
|
+
"sc_req_item": {
|
|
243
|
+
"label": "Sc Req Item",
|
|
244
|
+
"table": "sc_req_item",
|
|
245
|
+
"key_field": "sys_id",
|
|
246
|
+
"display_field": "name",
|
|
247
|
+
"required_fields": [
|
|
248
|
+
"name"
|
|
249
|
+
],
|
|
250
|
+
"common_fields": [
|
|
251
|
+
"sys_created_on",
|
|
252
|
+
"sys_updated_on",
|
|
253
|
+
"sys_created_by",
|
|
254
|
+
"sys_updated_by",
|
|
255
|
+
"name",
|
|
256
|
+
"active"
|
|
257
|
+
],
|
|
258
|
+
"operations": [
|
|
259
|
+
"create",
|
|
260
|
+
"read",
|
|
261
|
+
"update",
|
|
262
|
+
"list",
|
|
263
|
+
"search"
|
|
264
|
+
],
|
|
265
|
+
"priority": 2,
|
|
266
|
+
"package": "service_desk",
|
|
267
|
+
"description": "ServiceNow Sc Req Item table"
|
|
268
|
+
},
|
|
269
|
+
"item_option_new": {
|
|
270
|
+
"label": "Item Option New",
|
|
271
|
+
"table": "item_option_new",
|
|
272
|
+
"key_field": "sys_id",
|
|
273
|
+
"display_field": "name",
|
|
274
|
+
"required_fields": [
|
|
275
|
+
"name"
|
|
276
|
+
],
|
|
277
|
+
"common_fields": [
|
|
278
|
+
"sys_created_on",
|
|
279
|
+
"sys_updated_on",
|
|
280
|
+
"sys_created_by",
|
|
281
|
+
"sys_updated_by",
|
|
282
|
+
"name",
|
|
283
|
+
"active"
|
|
284
|
+
],
|
|
285
|
+
"operations": [
|
|
286
|
+
"create",
|
|
287
|
+
"read",
|
|
288
|
+
"update",
|
|
289
|
+
"list",
|
|
290
|
+
"search"
|
|
291
|
+
],
|
|
292
|
+
"priority": 2,
|
|
293
|
+
"package": "service_desk",
|
|
294
|
+
"description": "ServiceNow Item Option New table"
|
|
295
|
+
},
|
|
296
|
+
"sys_user": {
|
|
297
|
+
"label": "Sys User",
|
|
298
|
+
"table": "sys_user",
|
|
299
|
+
"key_field": "sys_id",
|
|
300
|
+
"display_field": "name",
|
|
301
|
+
"required_fields": [
|
|
302
|
+
"user_name"
|
|
303
|
+
],
|
|
304
|
+
"common_fields": [
|
|
305
|
+
"sys_created_on",
|
|
306
|
+
"sys_updated_on",
|
|
307
|
+
"sys_created_by",
|
|
308
|
+
"sys_updated_by",
|
|
309
|
+
"name",
|
|
310
|
+
"active"
|
|
311
|
+
],
|
|
312
|
+
"operations": [
|
|
313
|
+
"create",
|
|
314
|
+
"read",
|
|
315
|
+
"update",
|
|
316
|
+
"list",
|
|
317
|
+
"search"
|
|
318
|
+
],
|
|
319
|
+
"priority": 1,
|
|
320
|
+
"package": "service_desk",
|
|
321
|
+
"description": "ServiceNow Sys User table"
|
|
322
|
+
},
|
|
323
|
+
"sys_user_group": {
|
|
324
|
+
"label": "Sys User Group",
|
|
325
|
+
"table": "sys_user_group",
|
|
326
|
+
"key_field": "sys_id",
|
|
327
|
+
"display_field": "name",
|
|
328
|
+
"required_fields": [
|
|
329
|
+
"name"
|
|
330
|
+
],
|
|
331
|
+
"common_fields": [
|
|
332
|
+
"sys_created_on",
|
|
333
|
+
"sys_updated_on",
|
|
334
|
+
"sys_created_by",
|
|
335
|
+
"sys_updated_by",
|
|
336
|
+
"name",
|
|
337
|
+
"active"
|
|
338
|
+
],
|
|
339
|
+
"operations": [
|
|
340
|
+
"create",
|
|
341
|
+
"read",
|
|
342
|
+
"update",
|
|
343
|
+
"list",
|
|
344
|
+
"search"
|
|
345
|
+
],
|
|
346
|
+
"priority": 1,
|
|
347
|
+
"package": "service_desk",
|
|
348
|
+
"description": "ServiceNow Sys User Group table"
|
|
349
|
+
},
|
|
350
|
+
"sys_user_grmember": {
|
|
351
|
+
"label": "Sys User Grmember",
|
|
352
|
+
"table": "sys_user_grmember",
|
|
353
|
+
"key_field": "sys_id",
|
|
354
|
+
"display_field": "name",
|
|
355
|
+
"required_fields": [
|
|
356
|
+
"name"
|
|
357
|
+
],
|
|
358
|
+
"common_fields": [
|
|
359
|
+
"sys_created_on",
|
|
360
|
+
"sys_updated_on",
|
|
361
|
+
"sys_created_by",
|
|
362
|
+
"sys_updated_by",
|
|
363
|
+
"name",
|
|
364
|
+
"active"
|
|
365
|
+
],
|
|
366
|
+
"operations": [
|
|
367
|
+
"create",
|
|
368
|
+
"read",
|
|
369
|
+
"update",
|
|
370
|
+
"list",
|
|
371
|
+
"search"
|
|
372
|
+
],
|
|
373
|
+
"priority": 1,
|
|
374
|
+
"package": "service_desk",
|
|
375
|
+
"description": "ServiceNow Sys User Grmember table"
|
|
376
|
+
},
|
|
377
|
+
"cmdb_ci": {
|
|
378
|
+
"label": "Cmdb Ci",
|
|
379
|
+
"table": "cmdb_ci",
|
|
380
|
+
"key_field": "sys_id",
|
|
381
|
+
"display_field": "name",
|
|
382
|
+
"required_fields": [
|
|
383
|
+
"name"
|
|
384
|
+
],
|
|
385
|
+
"common_fields": [
|
|
386
|
+
"sys_created_on",
|
|
387
|
+
"sys_updated_on",
|
|
388
|
+
"sys_created_by",
|
|
389
|
+
"sys_updated_by",
|
|
390
|
+
"name",
|
|
391
|
+
"active"
|
|
392
|
+
],
|
|
393
|
+
"operations": [
|
|
394
|
+
"create",
|
|
395
|
+
"read",
|
|
396
|
+
"update",
|
|
397
|
+
"list",
|
|
398
|
+
"search"
|
|
399
|
+
],
|
|
400
|
+
"priority": 2,
|
|
401
|
+
"package": "cmdb",
|
|
402
|
+
"description": "ServiceNow Cmdb Ci table"
|
|
403
|
+
},
|
|
404
|
+
"cmdb_ci_computer": {
|
|
405
|
+
"label": "Cmdb Ci Computer",
|
|
406
|
+
"table": "cmdb_ci_computer",
|
|
407
|
+
"key_field": "sys_id",
|
|
408
|
+
"display_field": "name",
|
|
409
|
+
"required_fields": [
|
|
410
|
+
"name"
|
|
411
|
+
],
|
|
412
|
+
"common_fields": [
|
|
413
|
+
"sys_created_on",
|
|
414
|
+
"sys_updated_on",
|
|
415
|
+
"sys_created_by",
|
|
416
|
+
"sys_updated_by",
|
|
417
|
+
"name",
|
|
418
|
+
"active"
|
|
419
|
+
],
|
|
420
|
+
"operations": [
|
|
421
|
+
"create",
|
|
422
|
+
"read",
|
|
423
|
+
"update",
|
|
424
|
+
"list",
|
|
425
|
+
"search"
|
|
426
|
+
],
|
|
427
|
+
"priority": 2,
|
|
428
|
+
"package": "cmdb",
|
|
429
|
+
"description": "ServiceNow Cmdb Ci Computer table"
|
|
430
|
+
},
|
|
431
|
+
"cmdb_ci_server": {
|
|
432
|
+
"label": "Cmdb Ci Server",
|
|
433
|
+
"table": "cmdb_ci_server",
|
|
434
|
+
"key_field": "sys_id",
|
|
435
|
+
"display_field": "name",
|
|
436
|
+
"required_fields": [
|
|
437
|
+
"name"
|
|
438
|
+
],
|
|
439
|
+
"common_fields": [
|
|
440
|
+
"sys_created_on",
|
|
441
|
+
"sys_updated_on",
|
|
442
|
+
"sys_created_by",
|
|
443
|
+
"sys_updated_by",
|
|
444
|
+
"name",
|
|
445
|
+
"active"
|
|
446
|
+
],
|
|
447
|
+
"operations": [
|
|
448
|
+
"create",
|
|
449
|
+
"read",
|
|
450
|
+
"update",
|
|
451
|
+
"list",
|
|
452
|
+
"search"
|
|
453
|
+
],
|
|
454
|
+
"priority": 2,
|
|
455
|
+
"package": "cmdb",
|
|
456
|
+
"description": "ServiceNow Cmdb Ci Server table"
|
|
457
|
+
},
|
|
458
|
+
"cmdb_rel_ci": {
|
|
459
|
+
"label": "Cmdb Rel Ci",
|
|
460
|
+
"table": "cmdb_rel_ci",
|
|
461
|
+
"key_field": "sys_id",
|
|
462
|
+
"display_field": "name",
|
|
463
|
+
"required_fields": [
|
|
464
|
+
"name"
|
|
465
|
+
],
|
|
466
|
+
"common_fields": [
|
|
467
|
+
"sys_created_on",
|
|
468
|
+
"sys_updated_on",
|
|
469
|
+
"sys_created_by",
|
|
470
|
+
"sys_updated_by",
|
|
471
|
+
"name",
|
|
472
|
+
"active"
|
|
473
|
+
],
|
|
474
|
+
"operations": [
|
|
475
|
+
"create",
|
|
476
|
+
"read",
|
|
477
|
+
"update",
|
|
478
|
+
"list",
|
|
479
|
+
"search"
|
|
480
|
+
],
|
|
481
|
+
"priority": 2,
|
|
482
|
+
"package": "cmdb",
|
|
483
|
+
"description": "ServiceNow Cmdb Rel Ci table"
|
|
484
|
+
},
|
|
485
|
+
"alm_asset": {
|
|
486
|
+
"label": "Alm Asset",
|
|
487
|
+
"table": "alm_asset",
|
|
488
|
+
"key_field": "sys_id",
|
|
489
|
+
"display_field": "name",
|
|
490
|
+
"required_fields": [
|
|
491
|
+
"name"
|
|
492
|
+
],
|
|
493
|
+
"common_fields": [
|
|
494
|
+
"sys_created_on",
|
|
495
|
+
"sys_updated_on",
|
|
496
|
+
"sys_created_by",
|
|
497
|
+
"sys_updated_by",
|
|
498
|
+
"name",
|
|
499
|
+
"active"
|
|
500
|
+
],
|
|
501
|
+
"operations": [
|
|
502
|
+
"create",
|
|
503
|
+
"read",
|
|
504
|
+
"update",
|
|
505
|
+
"list",
|
|
506
|
+
"search"
|
|
507
|
+
],
|
|
508
|
+
"priority": 2,
|
|
509
|
+
"package": "cmdb",
|
|
510
|
+
"description": "ServiceNow Alm Asset table"
|
|
511
|
+
},
|
|
512
|
+
"kb_knowledge": {
|
|
513
|
+
"label": "Kb Knowledge",
|
|
514
|
+
"table": "kb_knowledge",
|
|
515
|
+
"key_field": "sys_id",
|
|
516
|
+
"display_field": "name",
|
|
517
|
+
"required_fields": [
|
|
518
|
+
"name"
|
|
519
|
+
],
|
|
520
|
+
"common_fields": [
|
|
521
|
+
"sys_created_on",
|
|
522
|
+
"sys_updated_on",
|
|
523
|
+
"sys_created_by",
|
|
524
|
+
"sys_updated_by",
|
|
525
|
+
"name",
|
|
526
|
+
"active"
|
|
527
|
+
],
|
|
528
|
+
"operations": [
|
|
529
|
+
"create",
|
|
530
|
+
"read",
|
|
531
|
+
"update",
|
|
532
|
+
"list",
|
|
533
|
+
"search"
|
|
534
|
+
],
|
|
535
|
+
"priority": 2,
|
|
536
|
+
"package": "service_desk",
|
|
537
|
+
"description": "ServiceNow Kb Knowledge table"
|
|
538
|
+
},
|
|
539
|
+
"kb_knowledge_base": {
|
|
540
|
+
"label": "Kb Knowledge Base",
|
|
541
|
+
"table": "kb_knowledge_base",
|
|
542
|
+
"key_field": "sys_id",
|
|
543
|
+
"display_field": "name",
|
|
544
|
+
"required_fields": [
|
|
545
|
+
"name"
|
|
546
|
+
],
|
|
547
|
+
"common_fields": [
|
|
548
|
+
"sys_created_on",
|
|
549
|
+
"sys_updated_on",
|
|
550
|
+
"sys_created_by",
|
|
551
|
+
"sys_updated_by",
|
|
552
|
+
"name",
|
|
553
|
+
"active"
|
|
554
|
+
],
|
|
555
|
+
"operations": [
|
|
556
|
+
"create",
|
|
557
|
+
"read",
|
|
558
|
+
"update",
|
|
559
|
+
"list",
|
|
560
|
+
"search"
|
|
561
|
+
],
|
|
562
|
+
"priority": 2,
|
|
563
|
+
"package": "service_desk",
|
|
564
|
+
"description": "ServiceNow Kb Knowledge Base table"
|
|
565
|
+
},
|
|
566
|
+
"kb_category": {
|
|
567
|
+
"label": "Kb Category",
|
|
568
|
+
"table": "kb_category",
|
|
569
|
+
"key_field": "sys_id",
|
|
570
|
+
"display_field": "name",
|
|
571
|
+
"required_fields": [
|
|
572
|
+
"name"
|
|
573
|
+
],
|
|
574
|
+
"common_fields": [
|
|
575
|
+
"sys_created_on",
|
|
576
|
+
"sys_updated_on",
|
|
577
|
+
"sys_created_by",
|
|
578
|
+
"sys_updated_by",
|
|
579
|
+
"name",
|
|
580
|
+
"active"
|
|
581
|
+
],
|
|
582
|
+
"operations": [
|
|
583
|
+
"create",
|
|
584
|
+
"read",
|
|
585
|
+
"update",
|
|
586
|
+
"list",
|
|
587
|
+
"search"
|
|
588
|
+
],
|
|
589
|
+
"priority": 2,
|
|
590
|
+
"package": "service_desk",
|
|
591
|
+
"description": "ServiceNow Kb Category table"
|
|
592
|
+
},
|
|
593
|
+
"sys_script": {
|
|
594
|
+
"label": "Sys Script",
|
|
595
|
+
"table": "sys_script",
|
|
596
|
+
"key_field": "sys_id",
|
|
597
|
+
"display_field": "name",
|
|
598
|
+
"required_fields": [
|
|
599
|
+
"name"
|
|
600
|
+
],
|
|
601
|
+
"common_fields": [
|
|
602
|
+
"sys_created_on",
|
|
603
|
+
"sys_updated_on",
|
|
604
|
+
"sys_created_by",
|
|
605
|
+
"sys_updated_by",
|
|
606
|
+
"name",
|
|
607
|
+
"active"
|
|
608
|
+
],
|
|
609
|
+
"operations": [
|
|
610
|
+
"create",
|
|
611
|
+
"read",
|
|
612
|
+
"update",
|
|
613
|
+
"list",
|
|
614
|
+
"search"
|
|
615
|
+
],
|
|
616
|
+
"priority": 3,
|
|
617
|
+
"package": "platform_developer",
|
|
618
|
+
"description": "ServiceNow Sys Script table"
|
|
619
|
+
},
|
|
620
|
+
"sys_script_client": {
|
|
621
|
+
"label": "Sys Script Client",
|
|
622
|
+
"table": "sys_script_client",
|
|
623
|
+
"key_field": "sys_id",
|
|
624
|
+
"display_field": "name",
|
|
625
|
+
"required_fields": [
|
|
626
|
+
"name"
|
|
627
|
+
],
|
|
628
|
+
"common_fields": [
|
|
629
|
+
"sys_created_on",
|
|
630
|
+
"sys_updated_on",
|
|
631
|
+
"sys_created_by",
|
|
632
|
+
"sys_updated_by",
|
|
633
|
+
"name",
|
|
634
|
+
"active"
|
|
635
|
+
],
|
|
636
|
+
"operations": [
|
|
637
|
+
"create",
|
|
638
|
+
"read",
|
|
639
|
+
"update",
|
|
640
|
+
"list",
|
|
641
|
+
"search"
|
|
642
|
+
],
|
|
643
|
+
"priority": 3,
|
|
644
|
+
"package": "platform_developer",
|
|
645
|
+
"description": "ServiceNow Sys Script Client table"
|
|
646
|
+
},
|
|
647
|
+
"sys_script_include": {
|
|
648
|
+
"label": "Sys Script Include",
|
|
649
|
+
"table": "sys_script_include",
|
|
650
|
+
"key_field": "sys_id",
|
|
651
|
+
"display_field": "name",
|
|
652
|
+
"required_fields": [
|
|
653
|
+
"name"
|
|
654
|
+
],
|
|
655
|
+
"common_fields": [
|
|
656
|
+
"sys_created_on",
|
|
657
|
+
"sys_updated_on",
|
|
658
|
+
"sys_created_by",
|
|
659
|
+
"sys_updated_by",
|
|
660
|
+
"name",
|
|
661
|
+
"active"
|
|
662
|
+
],
|
|
663
|
+
"operations": [
|
|
664
|
+
"create",
|
|
665
|
+
"read",
|
|
666
|
+
"update",
|
|
667
|
+
"list",
|
|
668
|
+
"search"
|
|
669
|
+
],
|
|
670
|
+
"priority": 3,
|
|
671
|
+
"package": "platform_developer",
|
|
672
|
+
"description": "ServiceNow Sys Script Include table"
|
|
673
|
+
},
|
|
674
|
+
"sys_ui_script": {
|
|
675
|
+
"label": "Sys Ui Script",
|
|
676
|
+
"table": "sys_ui_script",
|
|
677
|
+
"key_field": "sys_id",
|
|
678
|
+
"display_field": "name",
|
|
679
|
+
"required_fields": [
|
|
680
|
+
"name"
|
|
681
|
+
],
|
|
682
|
+
"common_fields": [
|
|
683
|
+
"sys_created_on",
|
|
684
|
+
"sys_updated_on",
|
|
685
|
+
"sys_created_by",
|
|
686
|
+
"sys_updated_by",
|
|
687
|
+
"name",
|
|
688
|
+
"table",
|
|
689
|
+
"view",
|
|
690
|
+
"active"
|
|
691
|
+
],
|
|
692
|
+
"operations": [
|
|
693
|
+
"create",
|
|
694
|
+
"read",
|
|
695
|
+
"update",
|
|
696
|
+
"list",
|
|
697
|
+
"search"
|
|
698
|
+
],
|
|
699
|
+
"priority": 3,
|
|
700
|
+
"package": "platform_developer",
|
|
701
|
+
"description": "ServiceNow Sys Ui Script table"
|
|
702
|
+
},
|
|
703
|
+
"wf_workflow": {
|
|
704
|
+
"label": "Wf Workflow",
|
|
705
|
+
"table": "wf_workflow",
|
|
706
|
+
"key_field": "sys_id",
|
|
707
|
+
"display_field": "name",
|
|
708
|
+
"required_fields": [
|
|
709
|
+
"name"
|
|
710
|
+
],
|
|
711
|
+
"common_fields": [
|
|
712
|
+
"sys_created_on",
|
|
713
|
+
"sys_updated_on",
|
|
714
|
+
"sys_created_by",
|
|
715
|
+
"sys_updated_by",
|
|
716
|
+
"name",
|
|
717
|
+
"active"
|
|
718
|
+
],
|
|
719
|
+
"operations": [
|
|
720
|
+
"create",
|
|
721
|
+
"read",
|
|
722
|
+
"update",
|
|
723
|
+
"list",
|
|
724
|
+
"search"
|
|
725
|
+
],
|
|
726
|
+
"priority": 3,
|
|
727
|
+
"package": "service_desk",
|
|
728
|
+
"description": "ServiceNow Wf Workflow table"
|
|
729
|
+
},
|
|
730
|
+
"wf_activity": {
|
|
731
|
+
"label": "Wf Activity",
|
|
732
|
+
"table": "wf_activity",
|
|
733
|
+
"key_field": "sys_id",
|
|
734
|
+
"display_field": "name",
|
|
735
|
+
"required_fields": [
|
|
736
|
+
"name"
|
|
737
|
+
],
|
|
738
|
+
"common_fields": [
|
|
739
|
+
"sys_created_on",
|
|
740
|
+
"sys_updated_on",
|
|
741
|
+
"sys_created_by",
|
|
742
|
+
"sys_updated_by",
|
|
743
|
+
"name",
|
|
744
|
+
"active"
|
|
745
|
+
],
|
|
746
|
+
"operations": [
|
|
747
|
+
"create",
|
|
748
|
+
"read",
|
|
749
|
+
"update",
|
|
750
|
+
"list",
|
|
751
|
+
"search"
|
|
752
|
+
],
|
|
753
|
+
"priority": 3,
|
|
754
|
+
"package": "service_desk",
|
|
755
|
+
"description": "ServiceNow Wf Activity table"
|
|
756
|
+
},
|
|
757
|
+
"wf_workflow_version": {
|
|
758
|
+
"label": "Wf Workflow Version",
|
|
759
|
+
"table": "wf_workflow_version",
|
|
760
|
+
"key_field": "sys_id",
|
|
761
|
+
"display_field": "name",
|
|
762
|
+
"required_fields": [
|
|
763
|
+
"name",
|
|
764
|
+
"table"
|
|
765
|
+
],
|
|
766
|
+
"common_fields": [
|
|
767
|
+
"sys_created_on",
|
|
768
|
+
"sys_updated_on",
|
|
769
|
+
"sys_created_by",
|
|
770
|
+
"sys_updated_by",
|
|
771
|
+
"name",
|
|
772
|
+
"active",
|
|
773
|
+
"not_cacheable",
|
|
774
|
+
"journal",
|
|
775
|
+
"start",
|
|
776
|
+
"schedule",
|
|
777
|
+
"activity_stages",
|
|
778
|
+
"workflow",
|
|
779
|
+
"run_multiple",
|
|
780
|
+
"requires_ert",
|
|
781
|
+
"order",
|
|
782
|
+
"relative_duration",
|
|
783
|
+
"column_renderer",
|
|
784
|
+
"expected_sequences",
|
|
785
|
+
"validated",
|
|
786
|
+
"published",
|
|
787
|
+
"description"
|
|
788
|
+
],
|
|
789
|
+
"operations": [
|
|
790
|
+
"create",
|
|
791
|
+
"read",
|
|
792
|
+
"update",
|
|
793
|
+
"list",
|
|
794
|
+
"search"
|
|
795
|
+
],
|
|
796
|
+
"priority": 3,
|
|
797
|
+
"package": "service_desk",
|
|
798
|
+
"description": "ServiceNow Wf Workflow Version table",
|
|
799
|
+
"instance_customized": true,
|
|
800
|
+
"field_metadata": {
|
|
801
|
+
"not_cacheable": {
|
|
802
|
+
"label": "Not cacheable",
|
|
803
|
+
"required": false,
|
|
804
|
+
"max_length": "40",
|
|
805
|
+
"reference": ""
|
|
806
|
+
},
|
|
807
|
+
"journal": {
|
|
808
|
+
"label": "Journal",
|
|
809
|
+
"required": false,
|
|
810
|
+
"max_length": "1000",
|
|
811
|
+
"reference": ""
|
|
812
|
+
},
|
|
813
|
+
"start": {
|
|
814
|
+
"label": "Starting activity",
|
|
815
|
+
"required": false,
|
|
816
|
+
"max_length": "32",
|
|
817
|
+
"reference": {
|
|
818
|
+
"link": "https://dev276360.service-now.com/api/now/table/sys_db_object?name=wf_activity",
|
|
819
|
+
"value": "wf_activity"
|
|
820
|
+
}
|
|
821
|
+
},
|
|
822
|
+
"schedule": {
|
|
823
|
+
"label": "Schedule",
|
|
824
|
+
"required": false,
|
|
825
|
+
"max_length": "32",
|
|
826
|
+
"reference": {
|
|
827
|
+
"link": "https://dev276360.service-now.com/api/now/table/sys_db_object?name=cmn_schedule",
|
|
828
|
+
"value": "cmn_schedule"
|
|
829
|
+
}
|
|
830
|
+
},
|
|
831
|
+
"table": {
|
|
832
|
+
"label": "Table",
|
|
833
|
+
"required": true,
|
|
834
|
+
"max_length": "80",
|
|
835
|
+
"reference": ""
|
|
836
|
+
},
|
|
837
|
+
"activity_stages": {
|
|
838
|
+
"label": "Activity stages",
|
|
839
|
+
"required": false,
|
|
840
|
+
"max_length": "8000",
|
|
841
|
+
"reference": ""
|
|
842
|
+
},
|
|
843
|
+
"sys_created_on": {
|
|
844
|
+
"label": "Created",
|
|
845
|
+
"required": false,
|
|
846
|
+
"max_length": "40",
|
|
847
|
+
"reference": ""
|
|
848
|
+
},
|
|
849
|
+
"workflow": {
|
|
850
|
+
"label": "Workflow",
|
|
851
|
+
"required": false,
|
|
852
|
+
"max_length": "32",
|
|
853
|
+
"reference": {
|
|
854
|
+
"link": "https://dev276360.service-now.com/api/now/table/sys_db_object?name=wf_workflow",
|
|
855
|
+
"value": "wf_workflow"
|
|
856
|
+
}
|
|
857
|
+
},
|
|
858
|
+
"active": {
|
|
859
|
+
"label": "Active",
|
|
860
|
+
"required": false,
|
|
861
|
+
"max_length": "40",
|
|
862
|
+
"reference": ""
|
|
863
|
+
},
|
|
864
|
+
"sys_id": {
|
|
865
|
+
"label": "Sys ID",
|
|
866
|
+
"required": false,
|
|
867
|
+
"max_length": "32",
|
|
868
|
+
"reference": ""
|
|
869
|
+
},
|
|
870
|
+
"run_multiple": {
|
|
871
|
+
"label": "Run multiple",
|
|
872
|
+
"required": false,
|
|
873
|
+
"max_length": "40",
|
|
874
|
+
"reference": ""
|
|
875
|
+
},
|
|
876
|
+
"requires_ert": {
|
|
877
|
+
"label": "Requires ERT",
|
|
878
|
+
"required": false,
|
|
879
|
+
"max_length": "40",
|
|
880
|
+
"reference": ""
|
|
881
|
+
},
|
|
882
|
+
"order": {
|
|
883
|
+
"label": "Order",
|
|
884
|
+
"required": false,
|
|
885
|
+
"max_length": "40",
|
|
886
|
+
"reference": ""
|
|
887
|
+
},
|
|
888
|
+
"relative_duration": {
|
|
889
|
+
"label": "Relative duration",
|
|
890
|
+
"required": false,
|
|
891
|
+
"max_length": "32",
|
|
892
|
+
"reference": {
|
|
893
|
+
"link": "https://dev276360.service-now.com/api/now/table/sys_db_object?name=cmn_relative_duration",
|
|
894
|
+
"value": "cmn_relative_duration"
|
|
895
|
+
}
|
|
896
|
+
},
|
|
897
|
+
"column_renderer": {
|
|
898
|
+
"label": "Stage rendering",
|
|
899
|
+
"required": false,
|
|
900
|
+
"max_length": "32",
|
|
901
|
+
"reference": {
|
|
902
|
+
"link": "https://dev276360.service-now.com/api/now/table/sys_db_object?name=column_renderer",
|
|
903
|
+
"value": "column_renderer"
|
|
904
|
+
}
|
|
905
|
+
},
|
|
906
|
+
"expected_sequences": {
|
|
907
|
+
"label": "Expected sequences",
|
|
908
|
+
"required": false,
|
|
909
|
+
"max_length": "8000",
|
|
910
|
+
"reference": ""
|
|
911
|
+
},
|
|
912
|
+
"sys_created_by": {
|
|
913
|
+
"label": "Created by",
|
|
914
|
+
"required": false,
|
|
915
|
+
"max_length": "40",
|
|
916
|
+
"reference": ""
|
|
917
|
+
},
|
|
918
|
+
"validated": {
|
|
919
|
+
"label": "Workflow Runtime Validation Status",
|
|
920
|
+
"required": false,
|
|
921
|
+
"max_length": "40",
|
|
922
|
+
"reference": ""
|
|
923
|
+
},
|
|
924
|
+
"published": {
|
|
925
|
+
"label": "Published",
|
|
926
|
+
"required": false,
|
|
927
|
+
"max_length": "40",
|
|
928
|
+
"reference": ""
|
|
929
|
+
},
|
|
930
|
+
"description": {
|
|
931
|
+
"label": "Description",
|
|
932
|
+
"required": false,
|
|
933
|
+
"max_length": "4000",
|
|
934
|
+
"reference": ""
|
|
935
|
+
},
|
|
936
|
+
"on_cancel": {
|
|
937
|
+
"label": "On-cancel script",
|
|
938
|
+
"required": false,
|
|
939
|
+
"max_length": "1000",
|
|
940
|
+
"reference": ""
|
|
941
|
+
},
|
|
942
|
+
"condition": {
|
|
943
|
+
"label": "Condition",
|
|
944
|
+
"required": false,
|
|
945
|
+
"max_length": "1000",
|
|
946
|
+
"reference": ""
|
|
947
|
+
},
|
|
948
|
+
"expected_time": {
|
|
949
|
+
"label": "Expected time",
|
|
950
|
+
"required": false,
|
|
951
|
+
"max_length": "40",
|
|
952
|
+
"reference": ""
|
|
953
|
+
},
|
|
954
|
+
"stage_order": {
|
|
955
|
+
"label": "Stage order",
|
|
956
|
+
"required": false,
|
|
957
|
+
"max_length": "40",
|
|
958
|
+
"reference": ""
|
|
959
|
+
},
|
|
960
|
+
"full_sequences": {
|
|
961
|
+
"label": "Full sequences",
|
|
962
|
+
"required": false,
|
|
963
|
+
"max_length": "8000",
|
|
964
|
+
"reference": ""
|
|
965
|
+
},
|
|
966
|
+
"sys_updated_on": {
|
|
967
|
+
"label": "Updated",
|
|
968
|
+
"required": false,
|
|
969
|
+
"max_length": "40",
|
|
970
|
+
"reference": ""
|
|
971
|
+
},
|
|
972
|
+
"name": {
|
|
973
|
+
"label": "Name",
|
|
974
|
+
"required": true,
|
|
975
|
+
"max_length": "100",
|
|
976
|
+
"reference": ""
|
|
977
|
+
},
|
|
978
|
+
"checked_out": {
|
|
979
|
+
"label": "Checked out",
|
|
980
|
+
"required": false,
|
|
981
|
+
"max_length": "40",
|
|
982
|
+
"reference": ""
|
|
983
|
+
},
|
|
984
|
+
"max_activity_count": {
|
|
985
|
+
"label": "Max activity count",
|
|
986
|
+
"required": false,
|
|
987
|
+
"max_length": "40",
|
|
988
|
+
"reference": ""
|
|
989
|
+
},
|
|
990
|
+
"timezone": {
|
|
991
|
+
"label": "Timezone",
|
|
992
|
+
"required": false,
|
|
993
|
+
"max_length": "40",
|
|
994
|
+
"reference": ""
|
|
995
|
+
},
|
|
996
|
+
"condition_type": {
|
|
997
|
+
"label": "If condition matches",
|
|
998
|
+
"required": false,
|
|
999
|
+
"max_length": "40",
|
|
1000
|
+
"reference": ""
|
|
1001
|
+
},
|
|
1002
|
+
"expected_time_type": {
|
|
1003
|
+
"label": "Delivery based on",
|
|
1004
|
+
"required": false,
|
|
1005
|
+
"max_length": "40",
|
|
1006
|
+
"reference": ""
|
|
1007
|
+
},
|
|
1008
|
+
"sys_mod_count": {
|
|
1009
|
+
"label": "Updates",
|
|
1010
|
+
"required": false,
|
|
1011
|
+
"max_length": "40",
|
|
1012
|
+
"reference": ""
|
|
1013
|
+
},
|
|
1014
|
+
"stage_field": {
|
|
1015
|
+
"label": "Stage field",
|
|
1016
|
+
"required": false,
|
|
1017
|
+
"max_length": "80",
|
|
1018
|
+
"reference": ""
|
|
1019
|
+
},
|
|
1020
|
+
"after_business_rules": {
|
|
1021
|
+
"label": "Run after bus. rules run",
|
|
1022
|
+
"required": false,
|
|
1023
|
+
"max_length": "40",
|
|
1024
|
+
"reference": ""
|
|
1025
|
+
},
|
|
1026
|
+
"sys_updated_by": {
|
|
1027
|
+
"label": "Updated by",
|
|
1028
|
+
"required": false,
|
|
1029
|
+
"max_length": "40",
|
|
1030
|
+
"reference": ""
|
|
1031
|
+
},
|
|
1032
|
+
"checked_out_by": {
|
|
1033
|
+
"label": "Checked out by",
|
|
1034
|
+
"required": false,
|
|
1035
|
+
"max_length": "32",
|
|
1036
|
+
"reference": {
|
|
1037
|
+
"link": "https://dev276360.service-now.com/api/now/table/sys_db_object?name=sys_user",
|
|
1038
|
+
"value": "sys_user"
|
|
1039
|
+
}
|
|
1040
|
+
},
|
|
1041
|
+
"pin_type": {
|
|
1042
|
+
"label": "Activity pinning",
|
|
1043
|
+
"required": false,
|
|
1044
|
+
"max_length": "40",
|
|
1045
|
+
"reference": ""
|
|
1046
|
+
}
|
|
1047
|
+
}
|
|
1048
|
+
},
|
|
1049
|
+
"sys_update_set": {
|
|
1050
|
+
"label": "Sys Update Set",
|
|
1051
|
+
"table": "sys_update_set",
|
|
1052
|
+
"key_field": "sys_id",
|
|
1053
|
+
"display_field": "name",
|
|
1054
|
+
"required_fields": [
|
|
1055
|
+
"name"
|
|
1056
|
+
],
|
|
1057
|
+
"common_fields": [
|
|
1058
|
+
"sys_created_on",
|
|
1059
|
+
"sys_updated_on",
|
|
1060
|
+
"sys_created_by",
|
|
1061
|
+
"sys_updated_by",
|
|
1062
|
+
"name",
|
|
1063
|
+
"active"
|
|
1064
|
+
],
|
|
1065
|
+
"operations": [
|
|
1066
|
+
"create",
|
|
1067
|
+
"read",
|
|
1068
|
+
"update",
|
|
1069
|
+
"list",
|
|
1070
|
+
"search"
|
|
1071
|
+
],
|
|
1072
|
+
"priority": 3,
|
|
1073
|
+
"package": "service_desk",
|
|
1074
|
+
"description": "ServiceNow Sys Update Set table"
|
|
1075
|
+
},
|
|
1076
|
+
"sys_update_xml": {
|
|
1077
|
+
"label": "Sys Update Xml",
|
|
1078
|
+
"table": "sys_update_xml",
|
|
1079
|
+
"key_field": "sys_id",
|
|
1080
|
+
"display_field": "name",
|
|
1081
|
+
"required_fields": [
|
|
1082
|
+
"name"
|
|
1083
|
+
],
|
|
1084
|
+
"common_fields": [
|
|
1085
|
+
"sys_created_on",
|
|
1086
|
+
"sys_updated_on",
|
|
1087
|
+
"sys_created_by",
|
|
1088
|
+
"sys_updated_by",
|
|
1089
|
+
"name",
|
|
1090
|
+
"active"
|
|
1091
|
+
],
|
|
1092
|
+
"operations": [
|
|
1093
|
+
"create",
|
|
1094
|
+
"read",
|
|
1095
|
+
"update",
|
|
1096
|
+
"list",
|
|
1097
|
+
"search"
|
|
1098
|
+
],
|
|
1099
|
+
"priority": 3,
|
|
1100
|
+
"package": "service_desk",
|
|
1101
|
+
"description": "ServiceNow Sys Update Xml table"
|
|
1102
|
+
},
|
|
1103
|
+
"sys_update_set_merge": {
|
|
1104
|
+
"label": "Sys Update Set Merge",
|
|
1105
|
+
"table": "sys_update_set_merge",
|
|
1106
|
+
"key_field": "sys_id",
|
|
1107
|
+
"display_field": "name",
|
|
1108
|
+
"required_fields": [
|
|
1109
|
+
"name"
|
|
1110
|
+
],
|
|
1111
|
+
"common_fields": [
|
|
1112
|
+
"sys_created_on",
|
|
1113
|
+
"sys_updated_on",
|
|
1114
|
+
"sys_created_by",
|
|
1115
|
+
"sys_updated_by",
|
|
1116
|
+
"name",
|
|
1117
|
+
"active"
|
|
1118
|
+
],
|
|
1119
|
+
"operations": [
|
|
1120
|
+
"create",
|
|
1121
|
+
"read",
|
|
1122
|
+
"update",
|
|
1123
|
+
"list",
|
|
1124
|
+
"search"
|
|
1125
|
+
],
|
|
1126
|
+
"priority": 3,
|
|
1127
|
+
"package": "service_desk",
|
|
1128
|
+
"description": "ServiceNow Sys Update Set Merge table"
|
|
1129
|
+
},
|
|
1130
|
+
"rm_story": {
|
|
1131
|
+
"label": "Rm Story",
|
|
1132
|
+
"table": "rm_story",
|
|
1133
|
+
"key_field": "sys_id",
|
|
1134
|
+
"display_field": "name",
|
|
1135
|
+
"required_fields": [
|
|
1136
|
+
"name"
|
|
1137
|
+
],
|
|
1138
|
+
"common_fields": [
|
|
1139
|
+
"sys_created_on",
|
|
1140
|
+
"sys_updated_on",
|
|
1141
|
+
"sys_created_by",
|
|
1142
|
+
"sys_updated_by",
|
|
1143
|
+
"name",
|
|
1144
|
+
"active"
|
|
1145
|
+
],
|
|
1146
|
+
"operations": [
|
|
1147
|
+
"create",
|
|
1148
|
+
"read",
|
|
1149
|
+
"update",
|
|
1150
|
+
"list",
|
|
1151
|
+
"search"
|
|
1152
|
+
],
|
|
1153
|
+
"priority": 3,
|
|
1154
|
+
"package": "agile_management",
|
|
1155
|
+
"description": "ServiceNow Rm Story table"
|
|
1156
|
+
},
|
|
1157
|
+
"rm_epic": {
|
|
1158
|
+
"label": "Rm Epic",
|
|
1159
|
+
"table": "rm_epic",
|
|
1160
|
+
"key_field": "sys_id",
|
|
1161
|
+
"display_field": "name",
|
|
1162
|
+
"required_fields": [
|
|
1163
|
+
"name"
|
|
1164
|
+
],
|
|
1165
|
+
"common_fields": [
|
|
1166
|
+
"sys_created_on",
|
|
1167
|
+
"sys_updated_on",
|
|
1168
|
+
"sys_created_by",
|
|
1169
|
+
"sys_updated_by",
|
|
1170
|
+
"name",
|
|
1171
|
+
"active"
|
|
1172
|
+
],
|
|
1173
|
+
"operations": [
|
|
1174
|
+
"create",
|
|
1175
|
+
"read",
|
|
1176
|
+
"update",
|
|
1177
|
+
"list",
|
|
1178
|
+
"search"
|
|
1179
|
+
],
|
|
1180
|
+
"priority": 3,
|
|
1181
|
+
"package": "agile_management",
|
|
1182
|
+
"description": "ServiceNow Rm Epic table"
|
|
1183
|
+
},
|
|
1184
|
+
"rm_scrum_task": {
|
|
1185
|
+
"label": "Rm Scrum Task",
|
|
1186
|
+
"table": "rm_scrum_task",
|
|
1187
|
+
"key_field": "sys_id",
|
|
1188
|
+
"display_field": "name",
|
|
1189
|
+
"required_fields": [
|
|
1190
|
+
"name"
|
|
1191
|
+
],
|
|
1192
|
+
"common_fields": [
|
|
1193
|
+
"sys_created_on",
|
|
1194
|
+
"sys_updated_on",
|
|
1195
|
+
"sys_created_by",
|
|
1196
|
+
"sys_updated_by",
|
|
1197
|
+
"name",
|
|
1198
|
+
"active"
|
|
1199
|
+
],
|
|
1200
|
+
"operations": [
|
|
1201
|
+
"create",
|
|
1202
|
+
"read",
|
|
1203
|
+
"update",
|
|
1204
|
+
"list",
|
|
1205
|
+
"search"
|
|
1206
|
+
],
|
|
1207
|
+
"priority": 3,
|
|
1208
|
+
"package": "agile_management",
|
|
1209
|
+
"description": "ServiceNow Rm Scrum Task table"
|
|
1210
|
+
},
|
|
1211
|
+
"pm_project": {
|
|
1212
|
+
"label": "Pm Project",
|
|
1213
|
+
"table": "pm_project",
|
|
1214
|
+
"key_field": "sys_id",
|
|
1215
|
+
"display_field": "name",
|
|
1216
|
+
"required_fields": [
|
|
1217
|
+
"name"
|
|
1218
|
+
],
|
|
1219
|
+
"common_fields": [
|
|
1220
|
+
"sys_created_on",
|
|
1221
|
+
"sys_updated_on",
|
|
1222
|
+
"sys_created_by",
|
|
1223
|
+
"sys_updated_by",
|
|
1224
|
+
"name",
|
|
1225
|
+
"active"
|
|
1226
|
+
],
|
|
1227
|
+
"operations": [
|
|
1228
|
+
"create",
|
|
1229
|
+
"read",
|
|
1230
|
+
"update",
|
|
1231
|
+
"list",
|
|
1232
|
+
"search"
|
|
1233
|
+
],
|
|
1234
|
+
"priority": 3,
|
|
1235
|
+
"package": "agile_management",
|
|
1236
|
+
"description": "ServiceNow Pm Project table"
|
|
1237
|
+
},
|
|
1238
|
+
"m2m_story_dependencies": {
|
|
1239
|
+
"label": "M2m Story Dependencies",
|
|
1240
|
+
"table": "m2m_story_dependencies",
|
|
1241
|
+
"key_field": "sys_id",
|
|
1242
|
+
"display_field": "name",
|
|
1243
|
+
"required_fields": [
|
|
1244
|
+
"name"
|
|
1245
|
+
],
|
|
1246
|
+
"common_fields": [
|
|
1247
|
+
"sys_created_on",
|
|
1248
|
+
"sys_updated_on",
|
|
1249
|
+
"sys_created_by",
|
|
1250
|
+
"sys_updated_by",
|
|
1251
|
+
"name",
|
|
1252
|
+
"active"
|
|
1253
|
+
],
|
|
1254
|
+
"operations": [
|
|
1255
|
+
"create",
|
|
1256
|
+
"read",
|
|
1257
|
+
"update",
|
|
1258
|
+
"list",
|
|
1259
|
+
"search"
|
|
1260
|
+
],
|
|
1261
|
+
"priority": 3,
|
|
1262
|
+
"package": "agile_management",
|
|
1263
|
+
"description": "ServiceNow M2m Story Dependencies table"
|
|
1264
|
+
},
|
|
1265
|
+
"sys_ws_definition": {
|
|
1266
|
+
"label": "Sys Ws Definition",
|
|
1267
|
+
"table": "sys_ws_definition",
|
|
1268
|
+
"key_field": "sys_id",
|
|
1269
|
+
"display_field": "name",
|
|
1270
|
+
"required_fields": [
|
|
1271
|
+
"name"
|
|
1272
|
+
],
|
|
1273
|
+
"common_fields": [
|
|
1274
|
+
"sys_created_on",
|
|
1275
|
+
"sys_updated_on",
|
|
1276
|
+
"sys_created_by",
|
|
1277
|
+
"sys_updated_by",
|
|
1278
|
+
"name",
|
|
1279
|
+
"active"
|
|
1280
|
+
],
|
|
1281
|
+
"operations": [
|
|
1282
|
+
"create",
|
|
1283
|
+
"read",
|
|
1284
|
+
"update",
|
|
1285
|
+
"list",
|
|
1286
|
+
"search"
|
|
1287
|
+
],
|
|
1288
|
+
"priority": 4,
|
|
1289
|
+
"package": "integration_specialist",
|
|
1290
|
+
"description": "ServiceNow Sys Ws Definition table"
|
|
1291
|
+
},
|
|
1292
|
+
"sys_rest_message": {
|
|
1293
|
+
"label": "Sys Rest Message",
|
|
1294
|
+
"table": "sys_rest_message",
|
|
1295
|
+
"key_field": "sys_id",
|
|
1296
|
+
"display_field": "name",
|
|
1297
|
+
"required_fields": [
|
|
1298
|
+
"name"
|
|
1299
|
+
],
|
|
1300
|
+
"common_fields": [
|
|
1301
|
+
"sys_created_on",
|
|
1302
|
+
"sys_updated_on",
|
|
1303
|
+
"sys_created_by",
|
|
1304
|
+
"sys_updated_by",
|
|
1305
|
+
"name",
|
|
1306
|
+
"active"
|
|
1307
|
+
],
|
|
1308
|
+
"operations": [
|
|
1309
|
+
"create",
|
|
1310
|
+
"read",
|
|
1311
|
+
"update",
|
|
1312
|
+
"list",
|
|
1313
|
+
"search"
|
|
1314
|
+
],
|
|
1315
|
+
"priority": 4,
|
|
1316
|
+
"package": "integration_specialist",
|
|
1317
|
+
"description": "ServiceNow Sys Rest Message table"
|
|
1318
|
+
},
|
|
1319
|
+
"sys_rest_message_fn": {
|
|
1320
|
+
"label": "Sys Rest Message Fn",
|
|
1321
|
+
"table": "sys_rest_message_fn",
|
|
1322
|
+
"key_field": "sys_id",
|
|
1323
|
+
"display_field": "name",
|
|
1324
|
+
"required_fields": [
|
|
1325
|
+
"name"
|
|
1326
|
+
],
|
|
1327
|
+
"common_fields": [
|
|
1328
|
+
"sys_created_on",
|
|
1329
|
+
"sys_updated_on",
|
|
1330
|
+
"sys_created_by",
|
|
1331
|
+
"sys_updated_by",
|
|
1332
|
+
"name",
|
|
1333
|
+
"active"
|
|
1334
|
+
],
|
|
1335
|
+
"operations": [
|
|
1336
|
+
"create",
|
|
1337
|
+
"read",
|
|
1338
|
+
"update",
|
|
1339
|
+
"list",
|
|
1340
|
+
"search"
|
|
1341
|
+
],
|
|
1342
|
+
"priority": 4,
|
|
1343
|
+
"package": "integration_specialist",
|
|
1344
|
+
"description": "ServiceNow Sys Rest Message Fn table"
|
|
1345
|
+
},
|
|
1346
|
+
"sys_import_set": {
|
|
1347
|
+
"label": "Sys Import Set",
|
|
1348
|
+
"table": "sys_import_set",
|
|
1349
|
+
"key_field": "sys_id",
|
|
1350
|
+
"display_field": "name",
|
|
1351
|
+
"required_fields": [
|
|
1352
|
+
"name"
|
|
1353
|
+
],
|
|
1354
|
+
"common_fields": [
|
|
1355
|
+
"sys_created_on",
|
|
1356
|
+
"sys_updated_on",
|
|
1357
|
+
"sys_created_by",
|
|
1358
|
+
"sys_updated_by",
|
|
1359
|
+
"name",
|
|
1360
|
+
"active"
|
|
1361
|
+
],
|
|
1362
|
+
"operations": [
|
|
1363
|
+
"create",
|
|
1364
|
+
"read",
|
|
1365
|
+
"update",
|
|
1366
|
+
"list",
|
|
1367
|
+
"search"
|
|
1368
|
+
],
|
|
1369
|
+
"priority": 4,
|
|
1370
|
+
"package": "integration_specialist",
|
|
1371
|
+
"description": "ServiceNow Sys Import Set table"
|
|
1372
|
+
},
|
|
1373
|
+
"sys_transform_map": {
|
|
1374
|
+
"label": "Sys Transform Map",
|
|
1375
|
+
"table": "sys_transform_map",
|
|
1376
|
+
"key_field": "sys_id",
|
|
1377
|
+
"display_field": "name",
|
|
1378
|
+
"required_fields": [
|
|
1379
|
+
"name"
|
|
1380
|
+
],
|
|
1381
|
+
"common_fields": [
|
|
1382
|
+
"sys_created_on",
|
|
1383
|
+
"sys_updated_on",
|
|
1384
|
+
"sys_created_by",
|
|
1385
|
+
"sys_updated_by",
|
|
1386
|
+
"name",
|
|
1387
|
+
"active"
|
|
1388
|
+
],
|
|
1389
|
+
"operations": [
|
|
1390
|
+
"create",
|
|
1391
|
+
"read",
|
|
1392
|
+
"update",
|
|
1393
|
+
"list",
|
|
1394
|
+
"search"
|
|
1395
|
+
],
|
|
1396
|
+
"priority": 4,
|
|
1397
|
+
"package": "integration_specialist",
|
|
1398
|
+
"description": "ServiceNow Sys Transform Map table"
|
|
1399
|
+
},
|
|
1400
|
+
"cmn_cost_center": {
|
|
1401
|
+
"label": "Cmn Cost Center",
|
|
1402
|
+
"table": "cmn_cost_center",
|
|
1403
|
+
"key_field": "sys_id",
|
|
1404
|
+
"display_field": "name",
|
|
1405
|
+
"required_fields": [
|
|
1406
|
+
"name"
|
|
1407
|
+
],
|
|
1408
|
+
"common_fields": [
|
|
1409
|
+
"sys_created_on",
|
|
1410
|
+
"sys_updated_on",
|
|
1411
|
+
"sys_created_by",
|
|
1412
|
+
"sys_updated_by",
|
|
1413
|
+
"name",
|
|
1414
|
+
"active"
|
|
1415
|
+
],
|
|
1416
|
+
"operations": [
|
|
1417
|
+
"create",
|
|
1418
|
+
"read",
|
|
1419
|
+
"update",
|
|
1420
|
+
"list",
|
|
1421
|
+
"search"
|
|
1422
|
+
],
|
|
1423
|
+
"priority": 4,
|
|
1424
|
+
"package": "enterprise",
|
|
1425
|
+
"description": "ServiceNow Cmn Cost Center table"
|
|
1426
|
+
},
|
|
1427
|
+
"cmn_department": {
|
|
1428
|
+
"label": "Cmn Department",
|
|
1429
|
+
"table": "cmn_department",
|
|
1430
|
+
"key_field": "sys_id",
|
|
1431
|
+
"display_field": "name",
|
|
1432
|
+
"required_fields": [
|
|
1433
|
+
"name"
|
|
1434
|
+
],
|
|
1435
|
+
"common_fields": [
|
|
1436
|
+
"sys_created_on",
|
|
1437
|
+
"sys_updated_on",
|
|
1438
|
+
"sys_created_by",
|
|
1439
|
+
"sys_updated_by",
|
|
1440
|
+
"name",
|
|
1441
|
+
"active"
|
|
1442
|
+
],
|
|
1443
|
+
"operations": [
|
|
1444
|
+
"create",
|
|
1445
|
+
"read",
|
|
1446
|
+
"update",
|
|
1447
|
+
"list",
|
|
1448
|
+
"search"
|
|
1449
|
+
],
|
|
1450
|
+
"priority": 4,
|
|
1451
|
+
"package": "enterprise",
|
|
1452
|
+
"description": "ServiceNow Cmn Department table"
|
|
1453
|
+
},
|
|
1454
|
+
"cmn_location": {
|
|
1455
|
+
"label": "Cmn Location",
|
|
1456
|
+
"table": "cmn_location",
|
|
1457
|
+
"key_field": "sys_id",
|
|
1458
|
+
"display_field": "name",
|
|
1459
|
+
"required_fields": [
|
|
1460
|
+
"name"
|
|
1461
|
+
],
|
|
1462
|
+
"common_fields": [
|
|
1463
|
+
"sys_created_on",
|
|
1464
|
+
"sys_updated_on",
|
|
1465
|
+
"sys_created_by",
|
|
1466
|
+
"sys_updated_by",
|
|
1467
|
+
"name",
|
|
1468
|
+
"active"
|
|
1469
|
+
],
|
|
1470
|
+
"operations": [
|
|
1471
|
+
"create",
|
|
1472
|
+
"read",
|
|
1473
|
+
"update",
|
|
1474
|
+
"list",
|
|
1475
|
+
"search"
|
|
1476
|
+
],
|
|
1477
|
+
"priority": 4,
|
|
1478
|
+
"package": "enterprise",
|
|
1479
|
+
"description": "ServiceNow Cmn Location table"
|
|
1480
|
+
},
|
|
1481
|
+
"core_company": {
|
|
1482
|
+
"label": "Core Company",
|
|
1483
|
+
"table": "core_company",
|
|
1484
|
+
"key_field": "sys_id",
|
|
1485
|
+
"display_field": "name",
|
|
1486
|
+
"required_fields": [
|
|
1487
|
+
"name"
|
|
1488
|
+
],
|
|
1489
|
+
"common_fields": [
|
|
1490
|
+
"sys_created_on",
|
|
1491
|
+
"sys_updated_on",
|
|
1492
|
+
"sys_created_by",
|
|
1493
|
+
"sys_updated_by",
|
|
1494
|
+
"name",
|
|
1495
|
+
"active"
|
|
1496
|
+
],
|
|
1497
|
+
"operations": [
|
|
1498
|
+
"create",
|
|
1499
|
+
"read",
|
|
1500
|
+
"update",
|
|
1501
|
+
"list",
|
|
1502
|
+
"search"
|
|
1503
|
+
],
|
|
1504
|
+
"priority": 4,
|
|
1505
|
+
"package": "enterprise",
|
|
1506
|
+
"description": "ServiceNow Core Company table"
|
|
1507
|
+
},
|
|
1508
|
+
"ast_contract": {
|
|
1509
|
+
"label": "Ast Contract",
|
|
1510
|
+
"table": "ast_contract",
|
|
1511
|
+
"key_field": "sys_id",
|
|
1512
|
+
"display_field": "name",
|
|
1513
|
+
"required_fields": [
|
|
1514
|
+
"name"
|
|
1515
|
+
],
|
|
1516
|
+
"common_fields": [
|
|
1517
|
+
"sys_created_on",
|
|
1518
|
+
"sys_updated_on",
|
|
1519
|
+
"sys_created_by",
|
|
1520
|
+
"sys_updated_by",
|
|
1521
|
+
"name",
|
|
1522
|
+
"active"
|
|
1523
|
+
],
|
|
1524
|
+
"operations": [
|
|
1525
|
+
"create",
|
|
1526
|
+
"read",
|
|
1527
|
+
"update",
|
|
1528
|
+
"list",
|
|
1529
|
+
"search"
|
|
1530
|
+
],
|
|
1531
|
+
"priority": 4,
|
|
1532
|
+
"package": "enterprise",
|
|
1533
|
+
"description": "ServiceNow Ast Contract table"
|
|
1534
|
+
},
|
|
1535
|
+
"sysapproval_approver": {
|
|
1536
|
+
"label": "Sysapproval Approver",
|
|
1537
|
+
"table": "sysapproval_approver",
|
|
1538
|
+
"key_field": "sys_id",
|
|
1539
|
+
"display_field": "name",
|
|
1540
|
+
"required_fields": [
|
|
1541
|
+
"name"
|
|
1542
|
+
],
|
|
1543
|
+
"common_fields": [
|
|
1544
|
+
"sys_created_on",
|
|
1545
|
+
"sys_updated_on",
|
|
1546
|
+
"sys_created_by",
|
|
1547
|
+
"sys_updated_by",
|
|
1548
|
+
"name",
|
|
1549
|
+
"active"
|
|
1550
|
+
],
|
|
1551
|
+
"operations": [
|
|
1552
|
+
"create",
|
|
1553
|
+
"read",
|
|
1554
|
+
"update",
|
|
1555
|
+
"list",
|
|
1556
|
+
"search"
|
|
1557
|
+
],
|
|
1558
|
+
"priority": 2,
|
|
1559
|
+
"package": "service_desk",
|
|
1560
|
+
"description": "ServiceNow Sysapproval Approver table"
|
|
1561
|
+
},
|
|
1562
|
+
"sys_approval": {
|
|
1563
|
+
"label": "Sys Approval",
|
|
1564
|
+
"table": "sys_approval",
|
|
1565
|
+
"key_field": "sys_id",
|
|
1566
|
+
"display_field": "name",
|
|
1567
|
+
"required_fields": [
|
|
1568
|
+
"name"
|
|
1569
|
+
],
|
|
1570
|
+
"common_fields": [
|
|
1571
|
+
"sys_created_on",
|
|
1572
|
+
"sys_updated_on",
|
|
1573
|
+
"sys_created_by",
|
|
1574
|
+
"sys_updated_by",
|
|
1575
|
+
"name",
|
|
1576
|
+
"active"
|
|
1577
|
+
],
|
|
1578
|
+
"operations": [
|
|
1579
|
+
"create",
|
|
1580
|
+
"read",
|
|
1581
|
+
"update",
|
|
1582
|
+
"list",
|
|
1583
|
+
"search"
|
|
1584
|
+
],
|
|
1585
|
+
"priority": 2,
|
|
1586
|
+
"package": "service_desk",
|
|
1587
|
+
"description": "ServiceNow Sys Approval table"
|
|
1588
|
+
},
|
|
1589
|
+
"sp_page": {
|
|
1590
|
+
"label": "Sp Page",
|
|
1591
|
+
"table": "sp_page",
|
|
1592
|
+
"key_field": "sys_id",
|
|
1593
|
+
"display_field": "name",
|
|
1594
|
+
"required_fields": [
|
|
1595
|
+
"name"
|
|
1596
|
+
],
|
|
1597
|
+
"common_fields": [
|
|
1598
|
+
"sys_created_on",
|
|
1599
|
+
"sys_updated_on",
|
|
1600
|
+
"sys_created_by",
|
|
1601
|
+
"sys_updated_by",
|
|
1602
|
+
"name",
|
|
1603
|
+
"active"
|
|
1604
|
+
],
|
|
1605
|
+
"operations": [
|
|
1606
|
+
"create",
|
|
1607
|
+
"read",
|
|
1608
|
+
"update",
|
|
1609
|
+
"list",
|
|
1610
|
+
"search"
|
|
1611
|
+
],
|
|
1612
|
+
"priority": 4,
|
|
1613
|
+
"package": "ui_developer",
|
|
1614
|
+
"description": "ServiceNow Sp Page table"
|
|
1615
|
+
},
|
|
1616
|
+
"sp_widget": {
|
|
1617
|
+
"label": "Sp Widget",
|
|
1618
|
+
"table": "sp_widget",
|
|
1619
|
+
"key_field": "sys_id",
|
|
1620
|
+
"display_field": "name",
|
|
1621
|
+
"required_fields": [
|
|
1622
|
+
"name"
|
|
1623
|
+
],
|
|
1624
|
+
"common_fields": [
|
|
1625
|
+
"sys_created_on",
|
|
1626
|
+
"sys_updated_on",
|
|
1627
|
+
"sys_created_by",
|
|
1628
|
+
"sys_updated_by",
|
|
1629
|
+
"name",
|
|
1630
|
+
"active"
|
|
1631
|
+
],
|
|
1632
|
+
"operations": [
|
|
1633
|
+
"create",
|
|
1634
|
+
"read",
|
|
1635
|
+
"update",
|
|
1636
|
+
"list",
|
|
1637
|
+
"search"
|
|
1638
|
+
],
|
|
1639
|
+
"priority": 4,
|
|
1640
|
+
"package": "ui_developer",
|
|
1641
|
+
"description": "ServiceNow Sp Widget table"
|
|
1642
|
+
},
|
|
1643
|
+
"sp_theme": {
|
|
1644
|
+
"label": "Sp Theme",
|
|
1645
|
+
"table": "sp_theme",
|
|
1646
|
+
"key_field": "sys_id",
|
|
1647
|
+
"display_field": "name",
|
|
1648
|
+
"required_fields": [
|
|
1649
|
+
"name"
|
|
1650
|
+
],
|
|
1651
|
+
"common_fields": [
|
|
1652
|
+
"sys_created_on",
|
|
1653
|
+
"sys_updated_on",
|
|
1654
|
+
"sys_created_by",
|
|
1655
|
+
"sys_updated_by",
|
|
1656
|
+
"name",
|
|
1657
|
+
"active"
|
|
1658
|
+
],
|
|
1659
|
+
"operations": [
|
|
1660
|
+
"create",
|
|
1661
|
+
"read",
|
|
1662
|
+
"update",
|
|
1663
|
+
"list",
|
|
1664
|
+
"search"
|
|
1665
|
+
],
|
|
1666
|
+
"priority": 4,
|
|
1667
|
+
"package": "ui_developer",
|
|
1668
|
+
"description": "ServiceNow Sp Theme table"
|
|
1669
|
+
},
|
|
1670
|
+
"sys_ux_page": {
|
|
1671
|
+
"label": "Sys Ux Page",
|
|
1672
|
+
"table": "sys_ux_page",
|
|
1673
|
+
"key_field": "sys_id",
|
|
1674
|
+
"display_field": "name",
|
|
1675
|
+
"required_fields": [
|
|
1676
|
+
"name"
|
|
1677
|
+
],
|
|
1678
|
+
"common_fields": [
|
|
1679
|
+
"sys_created_on",
|
|
1680
|
+
"sys_updated_on",
|
|
1681
|
+
"sys_created_by",
|
|
1682
|
+
"sys_updated_by",
|
|
1683
|
+
"name",
|
|
1684
|
+
"active"
|
|
1685
|
+
],
|
|
1686
|
+
"operations": [
|
|
1687
|
+
"create",
|
|
1688
|
+
"read",
|
|
1689
|
+
"update",
|
|
1690
|
+
"list",
|
|
1691
|
+
"search"
|
|
1692
|
+
],
|
|
1693
|
+
"priority": 4,
|
|
1694
|
+
"package": "ui_developer",
|
|
1695
|
+
"description": "ServiceNow Sys Ux Page table"
|
|
1696
|
+
},
|
|
1697
|
+
"sys_ux_component": {
|
|
1698
|
+
"label": "Sys Ux Component",
|
|
1699
|
+
"table": "sys_ux_component",
|
|
1700
|
+
"key_field": "sys_id",
|
|
1701
|
+
"display_field": "name",
|
|
1702
|
+
"required_fields": [
|
|
1703
|
+
"name"
|
|
1704
|
+
],
|
|
1705
|
+
"common_fields": [
|
|
1706
|
+
"sys_created_on",
|
|
1707
|
+
"sys_updated_on",
|
|
1708
|
+
"sys_created_by",
|
|
1709
|
+
"sys_updated_by",
|
|
1710
|
+
"name",
|
|
1711
|
+
"active"
|
|
1712
|
+
],
|
|
1713
|
+
"operations": [
|
|
1714
|
+
"create",
|
|
1715
|
+
"read",
|
|
1716
|
+
"update",
|
|
1717
|
+
"list",
|
|
1718
|
+
"search"
|
|
1719
|
+
],
|
|
1720
|
+
"priority": 4,
|
|
1721
|
+
"package": "ui_developer",
|
|
1722
|
+
"description": "ServiceNow Sys Ux Component table"
|
|
1723
|
+
},
|
|
1724
|
+
"sys_ux_macroponent": {
|
|
1725
|
+
"label": "Sys Ux Macroponent",
|
|
1726
|
+
"table": "sys_ux_macroponent",
|
|
1727
|
+
"key_field": "sys_id",
|
|
1728
|
+
"display_field": "name",
|
|
1729
|
+
"required_fields": [
|
|
1730
|
+
"name"
|
|
1731
|
+
],
|
|
1732
|
+
"common_fields": [
|
|
1733
|
+
"sys_created_on",
|
|
1734
|
+
"sys_updated_on",
|
|
1735
|
+
"sys_created_by",
|
|
1736
|
+
"sys_updated_by",
|
|
1737
|
+
"name",
|
|
1738
|
+
"active"
|
|
1739
|
+
],
|
|
1740
|
+
"operations": [
|
|
1741
|
+
"create",
|
|
1742
|
+
"read",
|
|
1743
|
+
"update",
|
|
1744
|
+
"list",
|
|
1745
|
+
"search"
|
|
1746
|
+
],
|
|
1747
|
+
"priority": 4,
|
|
1748
|
+
"package": "ui_developer",
|
|
1749
|
+
"description": "ServiceNow Sys Ux Macroponent table"
|
|
1750
|
+
},
|
|
1751
|
+
"sys_ux_data_resource": {
|
|
1752
|
+
"label": "Sys Ux Data Resource",
|
|
1753
|
+
"table": "sys_ux_data_resource",
|
|
1754
|
+
"key_field": "sys_id",
|
|
1755
|
+
"display_field": "name",
|
|
1756
|
+
"required_fields": [
|
|
1757
|
+
"name"
|
|
1758
|
+
],
|
|
1759
|
+
"common_fields": [
|
|
1760
|
+
"sys_created_on",
|
|
1761
|
+
"sys_updated_on",
|
|
1762
|
+
"sys_created_by",
|
|
1763
|
+
"sys_updated_by",
|
|
1764
|
+
"name",
|
|
1765
|
+
"active"
|
|
1766
|
+
],
|
|
1767
|
+
"operations": [
|
|
1768
|
+
"create",
|
|
1769
|
+
"read",
|
|
1770
|
+
"update",
|
|
1771
|
+
"list",
|
|
1772
|
+
"search"
|
|
1773
|
+
],
|
|
1774
|
+
"priority": 4,
|
|
1775
|
+
"package": "ui_developer",
|
|
1776
|
+
"description": "ServiceNow Sys Ux Data Resource table"
|
|
1777
|
+
},
|
|
1778
|
+
"sys_atf_test": {
|
|
1779
|
+
"label": "Sys Atf Test",
|
|
1780
|
+
"table": "sys_atf_test",
|
|
1781
|
+
"key_field": "sys_id",
|
|
1782
|
+
"display_field": "name",
|
|
1783
|
+
"required_fields": [
|
|
1784
|
+
"name"
|
|
1785
|
+
],
|
|
1786
|
+
"common_fields": [
|
|
1787
|
+
"sys_created_on",
|
|
1788
|
+
"sys_updated_on",
|
|
1789
|
+
"sys_created_by",
|
|
1790
|
+
"sys_updated_by",
|
|
1791
|
+
"name",
|
|
1792
|
+
"active"
|
|
1793
|
+
],
|
|
1794
|
+
"operations": [
|
|
1795
|
+
"create",
|
|
1796
|
+
"read",
|
|
1797
|
+
"update",
|
|
1798
|
+
"list",
|
|
1799
|
+
"search"
|
|
1800
|
+
],
|
|
1801
|
+
"priority": 3,
|
|
1802
|
+
"package": "service_desk",
|
|
1803
|
+
"description": "ServiceNow Sys Atf Test table"
|
|
1804
|
+
},
|
|
1805
|
+
"sys_atf_test_suite": {
|
|
1806
|
+
"label": "Sys Atf Test Suite",
|
|
1807
|
+
"table": "sys_atf_test_suite",
|
|
1808
|
+
"key_field": "sys_id",
|
|
1809
|
+
"display_field": "name",
|
|
1810
|
+
"required_fields": [
|
|
1811
|
+
"name"
|
|
1812
|
+
],
|
|
1813
|
+
"common_fields": [
|
|
1814
|
+
"sys_created_on",
|
|
1815
|
+
"sys_updated_on",
|
|
1816
|
+
"sys_created_by",
|
|
1817
|
+
"sys_updated_by",
|
|
1818
|
+
"name",
|
|
1819
|
+
"active"
|
|
1820
|
+
],
|
|
1821
|
+
"operations": [
|
|
1822
|
+
"create",
|
|
1823
|
+
"read",
|
|
1824
|
+
"update",
|
|
1825
|
+
"list",
|
|
1826
|
+
"search"
|
|
1827
|
+
],
|
|
1828
|
+
"priority": 3,
|
|
1829
|
+
"package": "service_desk",
|
|
1830
|
+
"description": "ServiceNow Sys Atf Test Suite table"
|
|
1831
|
+
},
|
|
1832
|
+
"sys_report": {
|
|
1833
|
+
"label": "Sys Report",
|
|
1834
|
+
"table": "sys_report",
|
|
1835
|
+
"key_field": "sys_id",
|
|
1836
|
+
"display_field": "name",
|
|
1837
|
+
"required_fields": [
|
|
1838
|
+
"name"
|
|
1839
|
+
],
|
|
1840
|
+
"common_fields": [
|
|
1841
|
+
"sys_created_on",
|
|
1842
|
+
"sys_updated_on",
|
|
1843
|
+
"sys_created_by",
|
|
1844
|
+
"sys_updated_by",
|
|
1845
|
+
"name",
|
|
1846
|
+
"active"
|
|
1847
|
+
],
|
|
1848
|
+
"operations": [
|
|
1849
|
+
"create",
|
|
1850
|
+
"read",
|
|
1851
|
+
"update",
|
|
1852
|
+
"list",
|
|
1853
|
+
"search"
|
|
1854
|
+
],
|
|
1855
|
+
"priority": 5,
|
|
1856
|
+
"package": "service_desk",
|
|
1857
|
+
"description": "ServiceNow Sys Report table"
|
|
1858
|
+
},
|
|
1859
|
+
"pa_dashboards": {
|
|
1860
|
+
"label": "Pa Dashboards",
|
|
1861
|
+
"table": "pa_dashboards",
|
|
1862
|
+
"key_field": "sys_id",
|
|
1863
|
+
"display_field": "name",
|
|
1864
|
+
"required_fields": [
|
|
1865
|
+
"name"
|
|
1866
|
+
],
|
|
1867
|
+
"common_fields": [
|
|
1868
|
+
"sys_created_on",
|
|
1869
|
+
"sys_updated_on",
|
|
1870
|
+
"sys_created_by",
|
|
1871
|
+
"sys_updated_by",
|
|
1872
|
+
"name",
|
|
1873
|
+
"active"
|
|
1874
|
+
],
|
|
1875
|
+
"operations": [
|
|
1876
|
+
"create",
|
|
1877
|
+
"read",
|
|
1878
|
+
"update",
|
|
1879
|
+
"list",
|
|
1880
|
+
"search"
|
|
1881
|
+
],
|
|
1882
|
+
"priority": 5,
|
|
1883
|
+
"package": "service_desk",
|
|
1884
|
+
"description": "ServiceNow Pa Dashboards table"
|
|
1885
|
+
},
|
|
1886
|
+
"sys_db_object": {
|
|
1887
|
+
"label": "Database Table",
|
|
1888
|
+
"table": "sys_db_object",
|
|
1889
|
+
"key_field": "sys_id",
|
|
1890
|
+
"display_field": "label",
|
|
1891
|
+
"required_fields": [
|
|
1892
|
+
"name",
|
|
1893
|
+
"label"
|
|
1894
|
+
],
|
|
1895
|
+
"common_fields": [
|
|
1896
|
+
"sys_created_on",
|
|
1897
|
+
"sys_updated_on",
|
|
1898
|
+
"sys_created_by",
|
|
1899
|
+
"sys_updated_by",
|
|
1900
|
+
"name",
|
|
1901
|
+
"active"
|
|
1902
|
+
],
|
|
1903
|
+
"operations": [
|
|
1904
|
+
"create",
|
|
1905
|
+
"read",
|
|
1906
|
+
"update",
|
|
1907
|
+
"list",
|
|
1908
|
+
"search"
|
|
1909
|
+
],
|
|
1910
|
+
"priority": 2,
|
|
1911
|
+
"package": "platform_developer",
|
|
1912
|
+
"description": "Core table that stores metadata about every table in ServiceNow"
|
|
1913
|
+
},
|
|
1914
|
+
"sys_dictionary": {
|
|
1915
|
+
"label": "Dictionary Entry",
|
|
1916
|
+
"table": "sys_dictionary",
|
|
1917
|
+
"key_field": "sys_id",
|
|
1918
|
+
"display_field": "column_label",
|
|
1919
|
+
"required_fields": [
|
|
1920
|
+
"name",
|
|
1921
|
+
"element"
|
|
1922
|
+
],
|
|
1923
|
+
"common_fields": [
|
|
1924
|
+
"sys_created_on",
|
|
1925
|
+
"sys_updated_on",
|
|
1926
|
+
"sys_created_by",
|
|
1927
|
+
"sys_updated_by",
|
|
1928
|
+
"name",
|
|
1929
|
+
"active"
|
|
1930
|
+
],
|
|
1931
|
+
"operations": [
|
|
1932
|
+
"create",
|
|
1933
|
+
"read",
|
|
1934
|
+
"update",
|
|
1935
|
+
"list",
|
|
1936
|
+
"search"
|
|
1937
|
+
],
|
|
1938
|
+
"priority": 2,
|
|
1939
|
+
"package": "platform_developer",
|
|
1940
|
+
"description": "Dictionary entries defining field metadata for all tables"
|
|
1941
|
+
},
|
|
1942
|
+
"sys_properties": {
|
|
1943
|
+
"label": "System Property",
|
|
1944
|
+
"table": "sys_properties",
|
|
1945
|
+
"key_field": "sys_id",
|
|
1946
|
+
"display_field": "name",
|
|
1947
|
+
"required_fields": [
|
|
1948
|
+
"name"
|
|
1949
|
+
],
|
|
1950
|
+
"common_fields": [
|
|
1951
|
+
"sys_created_on",
|
|
1952
|
+
"sys_updated_on",
|
|
1953
|
+
"sys_created_by",
|
|
1954
|
+
"sys_updated_by",
|
|
1955
|
+
"name",
|
|
1956
|
+
"active"
|
|
1957
|
+
],
|
|
1958
|
+
"operations": [
|
|
1959
|
+
"create",
|
|
1960
|
+
"read",
|
|
1961
|
+
"update",
|
|
1962
|
+
"list",
|
|
1963
|
+
"search"
|
|
1964
|
+
],
|
|
1965
|
+
"priority": 2,
|
|
1966
|
+
"package": "platform_developer",
|
|
1967
|
+
"description": "System properties and configuration settings"
|
|
1968
|
+
},
|
|
1969
|
+
"sys_app": {
|
|
1970
|
+
"label": "Application",
|
|
1971
|
+
"table": "sys_app",
|
|
1972
|
+
"key_field": "sys_id",
|
|
1973
|
+
"display_field": "name",
|
|
1974
|
+
"required_fields": [
|
|
1975
|
+
"name"
|
|
1976
|
+
],
|
|
1977
|
+
"common_fields": [
|
|
1978
|
+
"sys_created_on",
|
|
1979
|
+
"sys_updated_on",
|
|
1980
|
+
"sys_created_by",
|
|
1981
|
+
"sys_updated_by",
|
|
1982
|
+
"name",
|
|
1983
|
+
"active"
|
|
1984
|
+
],
|
|
1985
|
+
"operations": [
|
|
1986
|
+
"create",
|
|
1987
|
+
"read",
|
|
1988
|
+
"update",
|
|
1989
|
+
"list",
|
|
1990
|
+
"search"
|
|
1991
|
+
],
|
|
1992
|
+
"priority": 2,
|
|
1993
|
+
"package": "platform_developer",
|
|
1994
|
+
"description": "Application definitions and metadata"
|
|
1995
|
+
},
|
|
1996
|
+
"sys_scope": {
|
|
1997
|
+
"label": "Application Scope",
|
|
1998
|
+
"table": "sys_scope",
|
|
1999
|
+
"key_field": "sys_id",
|
|
2000
|
+
"display_field": "name",
|
|
2001
|
+
"required_fields": [
|
|
2002
|
+
"name"
|
|
2003
|
+
],
|
|
2004
|
+
"common_fields": [
|
|
2005
|
+
"sys_created_on",
|
|
2006
|
+
"sys_updated_on",
|
|
2007
|
+
"sys_created_by",
|
|
2008
|
+
"sys_updated_by",
|
|
2009
|
+
"name",
|
|
2010
|
+
"active"
|
|
2011
|
+
],
|
|
2012
|
+
"operations": [
|
|
2013
|
+
"create",
|
|
2014
|
+
"read",
|
|
2015
|
+
"update",
|
|
2016
|
+
"list",
|
|
2017
|
+
"search"
|
|
2018
|
+
],
|
|
2019
|
+
"priority": 2,
|
|
2020
|
+
"package": "platform_developer",
|
|
2021
|
+
"description": "Application scope definitions for scoped applications"
|
|
2022
|
+
},
|
|
2023
|
+
"sys_ui_form": {
|
|
2024
|
+
"label": "Form",
|
|
2025
|
+
"table": "sys_ui_form",
|
|
2026
|
+
"key_field": "sys_id",
|
|
2027
|
+
"display_field": "name",
|
|
2028
|
+
"required_fields": [
|
|
2029
|
+
"name"
|
|
2030
|
+
],
|
|
2031
|
+
"common_fields": [
|
|
2032
|
+
"sys_created_on",
|
|
2033
|
+
"sys_updated_on",
|
|
2034
|
+
"sys_created_by",
|
|
2035
|
+
"sys_updated_by",
|
|
2036
|
+
"name",
|
|
2037
|
+
"table",
|
|
2038
|
+
"view",
|
|
2039
|
+
"active"
|
|
2040
|
+
],
|
|
2041
|
+
"operations": [
|
|
2042
|
+
"create",
|
|
2043
|
+
"read",
|
|
2044
|
+
"update",
|
|
2045
|
+
"list",
|
|
2046
|
+
"search"
|
|
2047
|
+
],
|
|
2048
|
+
"priority": 3,
|
|
2049
|
+
"package": "ui_developer",
|
|
2050
|
+
"description": "ServiceNow Form table"
|
|
2051
|
+
},
|
|
2052
|
+
"sys_ui_form_section": {
|
|
2053
|
+
"label": "Sys Ui Form Section",
|
|
2054
|
+
"table": "sys_ui_form_section",
|
|
2055
|
+
"key_field": "sys_id",
|
|
2056
|
+
"display_field": "name",
|
|
2057
|
+
"required_fields": [
|
|
2058
|
+
"name"
|
|
2059
|
+
],
|
|
2060
|
+
"common_fields": [
|
|
2061
|
+
"sys_created_on",
|
|
2062
|
+
"sys_updated_on",
|
|
2063
|
+
"sys_created_by",
|
|
2064
|
+
"sys_updated_by",
|
|
2065
|
+
"name",
|
|
2066
|
+
"table",
|
|
2067
|
+
"view",
|
|
2068
|
+
"active"
|
|
2069
|
+
],
|
|
2070
|
+
"operations": [
|
|
2071
|
+
"create",
|
|
2072
|
+
"read",
|
|
2073
|
+
"update",
|
|
2074
|
+
"list",
|
|
2075
|
+
"search"
|
|
2076
|
+
],
|
|
2077
|
+
"priority": 3,
|
|
2078
|
+
"package": "ui_developer",
|
|
2079
|
+
"description": "ServiceNow Sys Ui Form Section table"
|
|
2080
|
+
},
|
|
2081
|
+
"sys_ui_element": {
|
|
2082
|
+
"label": "Sys Ui Element",
|
|
2083
|
+
"table": "sys_ui_element",
|
|
2084
|
+
"key_field": "sys_id",
|
|
2085
|
+
"display_field": "name",
|
|
2086
|
+
"required_fields": [
|
|
2087
|
+
"name"
|
|
2088
|
+
],
|
|
2089
|
+
"common_fields": [
|
|
2090
|
+
"sys_created_on",
|
|
2091
|
+
"sys_updated_on",
|
|
2092
|
+
"sys_created_by",
|
|
2093
|
+
"sys_updated_by",
|
|
2094
|
+
"name",
|
|
2095
|
+
"table",
|
|
2096
|
+
"view",
|
|
2097
|
+
"active",
|
|
2098
|
+
"sys_ui_formatter",
|
|
2099
|
+
"sys_ui_section",
|
|
2100
|
+
"element",
|
|
2101
|
+
"type",
|
|
2102
|
+
"sys_mod_count",
|
|
2103
|
+
"position",
|
|
2104
|
+
"sys_user"
|
|
2105
|
+
],
|
|
2106
|
+
"operations": [
|
|
2107
|
+
"create",
|
|
2108
|
+
"read",
|
|
2109
|
+
"update",
|
|
2110
|
+
"list",
|
|
2111
|
+
"search"
|
|
2112
|
+
],
|
|
2113
|
+
"priority": 3,
|
|
2114
|
+
"package": "ui_developer",
|
|
2115
|
+
"description": "ServiceNow Sys Ui Element table",
|
|
2116
|
+
"instance_customized": true,
|
|
2117
|
+
"field_metadata": {
|
|
2118
|
+
"sys_ui_formatter": {
|
|
2119
|
+
"label": "Sys UI formatter",
|
|
2120
|
+
"required": false,
|
|
2121
|
+
"max_length": "32",
|
|
2122
|
+
"reference": {
|
|
2123
|
+
"link": "https://dev276360.service-now.com/api/now/table/sys_db_object?name=sys_ui_formatter",
|
|
2124
|
+
"value": "sys_ui_formatter"
|
|
2125
|
+
}
|
|
2126
|
+
},
|
|
2127
|
+
"sys_ui_section": {
|
|
2128
|
+
"label": "Sys UI section",
|
|
2129
|
+
"required": false,
|
|
2130
|
+
"max_length": "32",
|
|
2131
|
+
"reference": {
|
|
2132
|
+
"link": "https://dev276360.service-now.com/api/now/table/sys_db_object?name=sys_ui_section",
|
|
2133
|
+
"value": "sys_ui_section"
|
|
2134
|
+
}
|
|
2135
|
+
},
|
|
2136
|
+
"sys_created_on": {
|
|
2137
|
+
"label": "Created",
|
|
2138
|
+
"required": false,
|
|
2139
|
+
"max_length": "40",
|
|
2140
|
+
"reference": ""
|
|
2141
|
+
},
|
|
2142
|
+
"element": {
|
|
2143
|
+
"label": "Element",
|
|
2144
|
+
"required": false,
|
|
2145
|
+
"max_length": "255",
|
|
2146
|
+
"reference": ""
|
|
2147
|
+
},
|
|
2148
|
+
"sys_updated_on": {
|
|
2149
|
+
"label": "Updated",
|
|
2150
|
+
"required": false,
|
|
2151
|
+
"max_length": "40",
|
|
2152
|
+
"reference": ""
|
|
2153
|
+
},
|
|
2154
|
+
"sys_id": {
|
|
2155
|
+
"label": "Sys ID",
|
|
2156
|
+
"required": false,
|
|
2157
|
+
"max_length": "32",
|
|
2158
|
+
"reference": ""
|
|
2159
|
+
},
|
|
2160
|
+
"type": {
|
|
2161
|
+
"label": "Type",
|
|
2162
|
+
"required": false,
|
|
2163
|
+
"max_length": "40",
|
|
2164
|
+
"reference": ""
|
|
2165
|
+
},
|
|
2166
|
+
"sys_mod_count": {
|
|
2167
|
+
"label": "Updates",
|
|
2168
|
+
"required": false,
|
|
2169
|
+
"max_length": "40",
|
|
2170
|
+
"reference": ""
|
|
2171
|
+
},
|
|
2172
|
+
"position": {
|
|
2173
|
+
"label": "Position",
|
|
2174
|
+
"required": false,
|
|
2175
|
+
"max_length": "40",
|
|
2176
|
+
"reference": ""
|
|
2177
|
+
},
|
|
2178
|
+
"sys_created_by": {
|
|
2179
|
+
"label": "Created by",
|
|
2180
|
+
"required": false,
|
|
2181
|
+
"max_length": "40",
|
|
2182
|
+
"reference": ""
|
|
2183
|
+
},
|
|
2184
|
+
"sys_user": {
|
|
2185
|
+
"label": "Sys user",
|
|
2186
|
+
"required": false,
|
|
2187
|
+
"max_length": "32",
|
|
2188
|
+
"reference": {
|
|
2189
|
+
"link": "https://dev276360.service-now.com/api/now/table/sys_db_object?name=sys_user",
|
|
2190
|
+
"value": "sys_user"
|
|
2191
|
+
}
|
|
2192
|
+
},
|
|
2193
|
+
"sys_updated_by": {
|
|
2194
|
+
"label": "Updated by",
|
|
2195
|
+
"required": false,
|
|
2196
|
+
"max_length": "40",
|
|
2197
|
+
"reference": ""
|
|
2198
|
+
}
|
|
2199
|
+
}
|
|
2200
|
+
},
|
|
2201
|
+
"sys_ui_list": {
|
|
2202
|
+
"label": "List View",
|
|
2203
|
+
"table": "sys_ui_list",
|
|
2204
|
+
"key_field": "sys_id",
|
|
2205
|
+
"display_field": "name",
|
|
2206
|
+
"required_fields": [
|
|
2207
|
+
"name"
|
|
2208
|
+
],
|
|
2209
|
+
"common_fields": [
|
|
2210
|
+
"sys_created_on",
|
|
2211
|
+
"sys_updated_on",
|
|
2212
|
+
"sys_created_by",
|
|
2213
|
+
"sys_updated_by",
|
|
2214
|
+
"name",
|
|
2215
|
+
"table",
|
|
2216
|
+
"view",
|
|
2217
|
+
"active"
|
|
2218
|
+
],
|
|
2219
|
+
"operations": [
|
|
2220
|
+
"create",
|
|
2221
|
+
"read",
|
|
2222
|
+
"update",
|
|
2223
|
+
"list",
|
|
2224
|
+
"search"
|
|
2225
|
+
],
|
|
2226
|
+
"priority": 3,
|
|
2227
|
+
"package": "ui_developer",
|
|
2228
|
+
"description": "ServiceNow List View table"
|
|
2229
|
+
},
|
|
2230
|
+
"sys_ui_policy": {
|
|
2231
|
+
"label": "UI Policy",
|
|
2232
|
+
"table": "sys_ui_policy",
|
|
2233
|
+
"key_field": "sys_id",
|
|
2234
|
+
"display_field": "name",
|
|
2235
|
+
"required_fields": [
|
|
2236
|
+
"name"
|
|
2237
|
+
],
|
|
2238
|
+
"common_fields": [
|
|
2239
|
+
"sys_created_on",
|
|
2240
|
+
"sys_updated_on",
|
|
2241
|
+
"sys_created_by",
|
|
2242
|
+
"sys_updated_by",
|
|
2243
|
+
"name",
|
|
2244
|
+
"table",
|
|
2245
|
+
"view",
|
|
2246
|
+
"active"
|
|
2247
|
+
],
|
|
2248
|
+
"operations": [
|
|
2249
|
+
"create",
|
|
2250
|
+
"read",
|
|
2251
|
+
"update",
|
|
2252
|
+
"list",
|
|
2253
|
+
"search"
|
|
2254
|
+
],
|
|
2255
|
+
"priority": 3,
|
|
2256
|
+
"package": "ui_developer",
|
|
2257
|
+
"description": "ServiceNow UI Policy table"
|
|
2258
|
+
},
|
|
2259
|
+
"sys_ui_policy_action": {
|
|
2260
|
+
"label": "Sys Ui Policy Action",
|
|
2261
|
+
"table": "sys_ui_policy_action",
|
|
2262
|
+
"key_field": "sys_id",
|
|
2263
|
+
"display_field": "name",
|
|
2264
|
+
"required_fields": [
|
|
2265
|
+
"name"
|
|
2266
|
+
],
|
|
2267
|
+
"common_fields": [
|
|
2268
|
+
"sys_created_on",
|
|
2269
|
+
"sys_updated_on",
|
|
2270
|
+
"sys_created_by",
|
|
2271
|
+
"sys_updated_by",
|
|
2272
|
+
"name",
|
|
2273
|
+
"table",
|
|
2274
|
+
"view",
|
|
2275
|
+
"active"
|
|
2276
|
+
],
|
|
2277
|
+
"operations": [
|
|
2278
|
+
"create",
|
|
2279
|
+
"read",
|
|
2280
|
+
"update",
|
|
2281
|
+
"list",
|
|
2282
|
+
"search"
|
|
2283
|
+
],
|
|
2284
|
+
"priority": 3,
|
|
2285
|
+
"package": "ui_developer",
|
|
2286
|
+
"description": "ServiceNow Sys Ui Policy Action table"
|
|
2287
|
+
},
|
|
2288
|
+
"sys_ui_action": {
|
|
2289
|
+
"label": "UI Action",
|
|
2290
|
+
"table": "sys_ui_action",
|
|
2291
|
+
"key_field": "sys_id",
|
|
2292
|
+
"display_field": "name",
|
|
2293
|
+
"required_fields": [
|
|
2294
|
+
"name"
|
|
2295
|
+
],
|
|
2296
|
+
"common_fields": [
|
|
2297
|
+
"sys_created_on",
|
|
2298
|
+
"sys_updated_on",
|
|
2299
|
+
"sys_created_by",
|
|
2300
|
+
"sys_updated_by",
|
|
2301
|
+
"name",
|
|
2302
|
+
"table",
|
|
2303
|
+
"view",
|
|
2304
|
+
"active"
|
|
2305
|
+
],
|
|
2306
|
+
"operations": [
|
|
2307
|
+
"create",
|
|
2308
|
+
"read",
|
|
2309
|
+
"update",
|
|
2310
|
+
"list",
|
|
2311
|
+
"search"
|
|
2312
|
+
],
|
|
2313
|
+
"priority": 3,
|
|
2314
|
+
"package": "ui_developer",
|
|
2315
|
+
"description": "ServiceNow UI Action table"
|
|
2316
|
+
},
|
|
2317
|
+
"sys_ui_macro": {
|
|
2318
|
+
"label": "UI Macro",
|
|
2319
|
+
"table": "sys_ui_macro",
|
|
2320
|
+
"key_field": "sys_id",
|
|
2321
|
+
"display_field": "name",
|
|
2322
|
+
"required_fields": [
|
|
2323
|
+
"name"
|
|
2324
|
+
],
|
|
2325
|
+
"common_fields": [
|
|
2326
|
+
"sys_created_on",
|
|
2327
|
+
"sys_updated_on",
|
|
2328
|
+
"sys_created_by",
|
|
2329
|
+
"sys_updated_by",
|
|
2330
|
+
"name",
|
|
2331
|
+
"table",
|
|
2332
|
+
"view",
|
|
2333
|
+
"active"
|
|
2334
|
+
],
|
|
2335
|
+
"operations": [
|
|
2336
|
+
"create",
|
|
2337
|
+
"read",
|
|
2338
|
+
"update",
|
|
2339
|
+
"list",
|
|
2340
|
+
"search"
|
|
2341
|
+
],
|
|
2342
|
+
"priority": 3,
|
|
2343
|
+
"package": "ui_developer",
|
|
2344
|
+
"description": "ServiceNow UI Macro table"
|
|
2345
|
+
},
|
|
2346
|
+
"sp_portal": {
|
|
2347
|
+
"label": "Service Portal",
|
|
2348
|
+
"table": "sp_portal",
|
|
2349
|
+
"key_field": "sys_id",
|
|
2350
|
+
"display_field": "name",
|
|
2351
|
+
"required_fields": [
|
|
2352
|
+
"name"
|
|
2353
|
+
],
|
|
2354
|
+
"common_fields": [
|
|
2355
|
+
"sys_created_on",
|
|
2356
|
+
"sys_updated_on",
|
|
2357
|
+
"sys_created_by",
|
|
2358
|
+
"sys_updated_by",
|
|
2359
|
+
"name",
|
|
2360
|
+
"active"
|
|
2361
|
+
],
|
|
2362
|
+
"operations": [
|
|
2363
|
+
"create",
|
|
2364
|
+
"read",
|
|
2365
|
+
"update",
|
|
2366
|
+
"list",
|
|
2367
|
+
"search"
|
|
2368
|
+
],
|
|
2369
|
+
"priority": 4,
|
|
2370
|
+
"package": "ui_developer",
|
|
2371
|
+
"description": "Service Portal configuration and settings"
|
|
2372
|
+
},
|
|
2373
|
+
"sp_instance": {
|
|
2374
|
+
"label": "Portal Instance",
|
|
2375
|
+
"table": "sp_instance",
|
|
2376
|
+
"key_field": "sys_id",
|
|
2377
|
+
"display_field": "name",
|
|
2378
|
+
"required_fields": [
|
|
2379
|
+
"name"
|
|
2380
|
+
],
|
|
2381
|
+
"common_fields": [
|
|
2382
|
+
"sys_created_on",
|
|
2383
|
+
"sys_updated_on",
|
|
2384
|
+
"sys_created_by",
|
|
2385
|
+
"sys_updated_by",
|
|
2386
|
+
"name",
|
|
2387
|
+
"active"
|
|
2388
|
+
],
|
|
2389
|
+
"operations": [
|
|
2390
|
+
"create",
|
|
2391
|
+
"read",
|
|
2392
|
+
"update",
|
|
2393
|
+
"list",
|
|
2394
|
+
"search"
|
|
2395
|
+
],
|
|
2396
|
+
"priority": 4,
|
|
2397
|
+
"package": "ui_developer",
|
|
2398
|
+
"description": "Portal instance configurations"
|
|
2399
|
+
},
|
|
2400
|
+
"sp_dependency": {
|
|
2401
|
+
"label": "Portal Dependency",
|
|
2402
|
+
"table": "sp_dependency",
|
|
2403
|
+
"key_field": "sys_id",
|
|
2404
|
+
"display_field": "name",
|
|
2405
|
+
"required_fields": [
|
|
2406
|
+
"name"
|
|
2407
|
+
],
|
|
2408
|
+
"common_fields": [
|
|
2409
|
+
"sys_created_on",
|
|
2410
|
+
"sys_updated_on",
|
|
2411
|
+
"sys_created_by",
|
|
2412
|
+
"sys_updated_by",
|
|
2413
|
+
"name",
|
|
2414
|
+
"active"
|
|
2415
|
+
],
|
|
2416
|
+
"operations": [
|
|
2417
|
+
"create",
|
|
2418
|
+
"read",
|
|
2419
|
+
"update",
|
|
2420
|
+
"list",
|
|
2421
|
+
"search"
|
|
2422
|
+
],
|
|
2423
|
+
"priority": 4,
|
|
2424
|
+
"package": "ui_developer",
|
|
2425
|
+
"description": "ServiceNow Portal Dependency table"
|
|
2426
|
+
},
|
|
2427
|
+
"sp_header_footer": {
|
|
2428
|
+
"label": "Portal Header/Footer",
|
|
2429
|
+
"table": "sp_header_footer",
|
|
2430
|
+
"key_field": "sys_id",
|
|
2431
|
+
"display_field": "name",
|
|
2432
|
+
"required_fields": [
|
|
2433
|
+
"name"
|
|
2434
|
+
],
|
|
2435
|
+
"common_fields": [
|
|
2436
|
+
"sys_created_on",
|
|
2437
|
+
"sys_updated_on",
|
|
2438
|
+
"sys_created_by",
|
|
2439
|
+
"sys_updated_by",
|
|
2440
|
+
"name",
|
|
2441
|
+
"active"
|
|
2442
|
+
],
|
|
2443
|
+
"operations": [
|
|
2444
|
+
"create",
|
|
2445
|
+
"read",
|
|
2446
|
+
"update",
|
|
2447
|
+
"list",
|
|
2448
|
+
"search"
|
|
2449
|
+
],
|
|
2450
|
+
"priority": 4,
|
|
2451
|
+
"package": "ui_developer",
|
|
2452
|
+
"description": "ServiceNow Portal Header/Footer table"
|
|
2453
|
+
},
|
|
2454
|
+
"sys_ux_event": {
|
|
2455
|
+
"label": "UX Event",
|
|
2456
|
+
"table": "sys_ux_event",
|
|
2457
|
+
"key_field": "sys_id",
|
|
2458
|
+
"display_field": "name",
|
|
2459
|
+
"required_fields": [
|
|
2460
|
+
"name"
|
|
2461
|
+
],
|
|
2462
|
+
"common_fields": [
|
|
2463
|
+
"sys_created_on",
|
|
2464
|
+
"sys_updated_on",
|
|
2465
|
+
"sys_created_by",
|
|
2466
|
+
"sys_updated_by",
|
|
2467
|
+
"name",
|
|
2468
|
+
"active"
|
|
2469
|
+
],
|
|
2470
|
+
"operations": [
|
|
2471
|
+
"create",
|
|
2472
|
+
"read",
|
|
2473
|
+
"update",
|
|
2474
|
+
"list",
|
|
2475
|
+
"search"
|
|
2476
|
+
],
|
|
2477
|
+
"priority": 4,
|
|
2478
|
+
"package": "ui_developer",
|
|
2479
|
+
"description": "Next Experience UX event definitions"
|
|
2480
|
+
},
|
|
2481
|
+
"sys_ux_addon_event_mapping": {
|
|
2482
|
+
"label": "Sys Ux Addon Event Mapping",
|
|
2483
|
+
"table": "sys_ux_addon_event_mapping",
|
|
2484
|
+
"key_field": "sys_id",
|
|
2485
|
+
"display_field": "name",
|
|
2486
|
+
"required_fields": [
|
|
2487
|
+
"name"
|
|
2488
|
+
],
|
|
2489
|
+
"common_fields": [
|
|
2490
|
+
"sys_created_on",
|
|
2491
|
+
"sys_updated_on",
|
|
2492
|
+
"sys_created_by",
|
|
2493
|
+
"sys_updated_by",
|
|
2494
|
+
"name",
|
|
2495
|
+
"active"
|
|
2496
|
+
],
|
|
2497
|
+
"operations": [
|
|
2498
|
+
"create",
|
|
2499
|
+
"read",
|
|
2500
|
+
"update",
|
|
2501
|
+
"list",
|
|
2502
|
+
"search"
|
|
2503
|
+
],
|
|
2504
|
+
"priority": 4,
|
|
2505
|
+
"package": "ui_developer",
|
|
2506
|
+
"description": "ServiceNow Sys Ux Addon Event Mapping table"
|
|
2507
|
+
},
|
|
2508
|
+
"sys_ux_page_element": {
|
|
2509
|
+
"label": "UX Page Element",
|
|
2510
|
+
"table": "sys_ux_page_element",
|
|
2511
|
+
"key_field": "sys_id",
|
|
2512
|
+
"display_field": "name",
|
|
2513
|
+
"required_fields": [
|
|
2514
|
+
"name"
|
|
2515
|
+
],
|
|
2516
|
+
"common_fields": [
|
|
2517
|
+
"sys_created_on",
|
|
2518
|
+
"sys_updated_on",
|
|
2519
|
+
"sys_created_by",
|
|
2520
|
+
"sys_updated_by",
|
|
2521
|
+
"name",
|
|
2522
|
+
"active"
|
|
2523
|
+
],
|
|
2524
|
+
"operations": [
|
|
2525
|
+
"create",
|
|
2526
|
+
"read",
|
|
2527
|
+
"update",
|
|
2528
|
+
"list",
|
|
2529
|
+
"search"
|
|
2530
|
+
],
|
|
2531
|
+
"priority": 4,
|
|
2532
|
+
"package": "ui_developer",
|
|
2533
|
+
"description": "ServiceNow UX Page Element table"
|
|
2534
|
+
},
|
|
2535
|
+
"sys_ux_page_registry": {
|
|
2536
|
+
"label": "UX Page Registry",
|
|
2537
|
+
"table": "sys_ux_page_registry",
|
|
2538
|
+
"key_field": "sys_id",
|
|
2539
|
+
"display_field": "name",
|
|
2540
|
+
"required_fields": [
|
|
2541
|
+
"name"
|
|
2542
|
+
],
|
|
2543
|
+
"common_fields": [
|
|
2544
|
+
"sys_created_on",
|
|
2545
|
+
"sys_updated_on",
|
|
2546
|
+
"sys_created_by",
|
|
2547
|
+
"sys_updated_by",
|
|
2548
|
+
"name",
|
|
2549
|
+
"active"
|
|
2550
|
+
],
|
|
2551
|
+
"operations": [
|
|
2552
|
+
"create",
|
|
2553
|
+
"read",
|
|
2554
|
+
"update",
|
|
2555
|
+
"list",
|
|
2556
|
+
"search"
|
|
2557
|
+
],
|
|
2558
|
+
"priority": 4,
|
|
2559
|
+
"package": "ui_developer",
|
|
2560
|
+
"description": "ServiceNow UX Page Registry table"
|
|
2561
|
+
},
|
|
2562
|
+
"sys_ux_lib_component": {
|
|
2563
|
+
"label": "UX Library Component",
|
|
2564
|
+
"table": "sys_ux_lib_component",
|
|
2565
|
+
"key_field": "sys_id",
|
|
2566
|
+
"display_field": "name",
|
|
2567
|
+
"required_fields": [
|
|
2568
|
+
"name"
|
|
2569
|
+
],
|
|
2570
|
+
"common_fields": [
|
|
2571
|
+
"sys_created_on",
|
|
2572
|
+
"sys_updated_on",
|
|
2573
|
+
"sys_created_by",
|
|
2574
|
+
"sys_updated_by",
|
|
2575
|
+
"name",
|
|
2576
|
+
"active"
|
|
2577
|
+
],
|
|
2578
|
+
"operations": [
|
|
2579
|
+
"create",
|
|
2580
|
+
"read",
|
|
2581
|
+
"update",
|
|
2582
|
+
"list",
|
|
2583
|
+
"search"
|
|
2584
|
+
],
|
|
2585
|
+
"priority": 4,
|
|
2586
|
+
"package": "ui_developer",
|
|
2587
|
+
"description": "ServiceNow UX Library Component table"
|
|
2588
|
+
},
|
|
2589
|
+
"sys_email": {
|
|
2590
|
+
"label": "Email",
|
|
2591
|
+
"table": "sys_email",
|
|
2592
|
+
"key_field": "sys_id",
|
|
2593
|
+
"display_field": "name",
|
|
2594
|
+
"required_fields": [
|
|
2595
|
+
"name"
|
|
2596
|
+
],
|
|
2597
|
+
"common_fields": [
|
|
2598
|
+
"sys_created_on",
|
|
2599
|
+
"sys_updated_on",
|
|
2600
|
+
"sys_created_by",
|
|
2601
|
+
"sys_updated_by",
|
|
2602
|
+
"name",
|
|
2603
|
+
"active"
|
|
2604
|
+
],
|
|
2605
|
+
"operations": [
|
|
2606
|
+
"create",
|
|
2607
|
+
"read",
|
|
2608
|
+
"update",
|
|
2609
|
+
"list",
|
|
2610
|
+
"search"
|
|
2611
|
+
],
|
|
2612
|
+
"priority": 3,
|
|
2613
|
+
"package": "service_desk",
|
|
2614
|
+
"description": "Email message records"
|
|
2615
|
+
},
|
|
2616
|
+
"sys_email_log": {
|
|
2617
|
+
"label": "Email Log",
|
|
2618
|
+
"table": "sys_email_log",
|
|
2619
|
+
"key_field": "sys_id",
|
|
2620
|
+
"display_field": "name",
|
|
2621
|
+
"required_fields": [
|
|
2622
|
+
"name"
|
|
2623
|
+
],
|
|
2624
|
+
"common_fields": [
|
|
2625
|
+
"sys_created_on",
|
|
2626
|
+
"sys_updated_on",
|
|
2627
|
+
"sys_created_by",
|
|
2628
|
+
"sys_updated_by",
|
|
2629
|
+
"name",
|
|
2630
|
+
"active"
|
|
2631
|
+
],
|
|
2632
|
+
"operations": [
|
|
2633
|
+
"create",
|
|
2634
|
+
"read",
|
|
2635
|
+
"update",
|
|
2636
|
+
"list",
|
|
2637
|
+
"search"
|
|
2638
|
+
],
|
|
2639
|
+
"priority": 3,
|
|
2640
|
+
"package": "service_desk",
|
|
2641
|
+
"description": "ServiceNow Email Log table"
|
|
2642
|
+
},
|
|
2643
|
+
"sys_email_attachment": {
|
|
2644
|
+
"label": "Sys Email Attachment",
|
|
2645
|
+
"table": "sys_email_attachment",
|
|
2646
|
+
"key_field": "sys_id",
|
|
2647
|
+
"display_field": "name",
|
|
2648
|
+
"required_fields": [
|
|
2649
|
+
"name"
|
|
2650
|
+
],
|
|
2651
|
+
"common_fields": [
|
|
2652
|
+
"sys_created_on",
|
|
2653
|
+
"sys_updated_on",
|
|
2654
|
+
"sys_created_by",
|
|
2655
|
+
"sys_updated_by",
|
|
2656
|
+
"name",
|
|
2657
|
+
"active"
|
|
2658
|
+
],
|
|
2659
|
+
"operations": [
|
|
2660
|
+
"create",
|
|
2661
|
+
"read",
|
|
2662
|
+
"update",
|
|
2663
|
+
"list",
|
|
2664
|
+
"search"
|
|
2665
|
+
],
|
|
2666
|
+
"priority": 3,
|
|
2667
|
+
"package": "service_desk",
|
|
2668
|
+
"description": "ServiceNow Sys Email Attachment table"
|
|
2669
|
+
},
|
|
2670
|
+
"sysevent_email_action": {
|
|
2671
|
+
"label": "Sysevent Email Action",
|
|
2672
|
+
"table": "sysevent_email_action",
|
|
2673
|
+
"key_field": "sys_id",
|
|
2674
|
+
"display_field": "name",
|
|
2675
|
+
"required_fields": [
|
|
2676
|
+
"name"
|
|
2677
|
+
],
|
|
2678
|
+
"common_fields": [
|
|
2679
|
+
"sys_created_on",
|
|
2680
|
+
"sys_updated_on",
|
|
2681
|
+
"sys_created_by",
|
|
2682
|
+
"sys_updated_by",
|
|
2683
|
+
"name",
|
|
2684
|
+
"active"
|
|
2685
|
+
],
|
|
2686
|
+
"operations": [
|
|
2687
|
+
"create",
|
|
2688
|
+
"read",
|
|
2689
|
+
"update",
|
|
2690
|
+
"list",
|
|
2691
|
+
"search"
|
|
2692
|
+
],
|
|
2693
|
+
"priority": 3,
|
|
2694
|
+
"package": "service_desk",
|
|
2695
|
+
"description": "ServiceNow Sysevent Email Action table"
|
|
2696
|
+
},
|
|
2697
|
+
"sys_email_template": {
|
|
2698
|
+
"label": "Email Template",
|
|
2699
|
+
"table": "sys_email_template",
|
|
2700
|
+
"key_field": "sys_id",
|
|
2701
|
+
"display_field": "name",
|
|
2702
|
+
"required_fields": [
|
|
2703
|
+
"name"
|
|
2704
|
+
],
|
|
2705
|
+
"common_fields": [
|
|
2706
|
+
"sys_created_on",
|
|
2707
|
+
"sys_updated_on",
|
|
2708
|
+
"sys_created_by",
|
|
2709
|
+
"sys_updated_by",
|
|
2710
|
+
"name",
|
|
2711
|
+
"active"
|
|
2712
|
+
],
|
|
2713
|
+
"operations": [
|
|
2714
|
+
"create",
|
|
2715
|
+
"read",
|
|
2716
|
+
"update",
|
|
2717
|
+
"list",
|
|
2718
|
+
"search"
|
|
2719
|
+
],
|
|
2720
|
+
"priority": 3,
|
|
2721
|
+
"package": "service_desk",
|
|
2722
|
+
"description": "ServiceNow Email Template table"
|
|
2723
|
+
},
|
|
2724
|
+
"sys_notification": {
|
|
2725
|
+
"label": "Notification",
|
|
2726
|
+
"table": "sys_notification",
|
|
2727
|
+
"key_field": "sys_id",
|
|
2728
|
+
"display_field": "name",
|
|
2729
|
+
"required_fields": [
|
|
2730
|
+
"name"
|
|
2731
|
+
],
|
|
2732
|
+
"common_fields": [
|
|
2733
|
+
"sys_created_on",
|
|
2734
|
+
"sys_updated_on",
|
|
2735
|
+
"sys_created_by",
|
|
2736
|
+
"sys_updated_by",
|
|
2737
|
+
"name",
|
|
2738
|
+
"active"
|
|
2739
|
+
],
|
|
2740
|
+
"operations": [
|
|
2741
|
+
"create",
|
|
2742
|
+
"read",
|
|
2743
|
+
"update",
|
|
2744
|
+
"list",
|
|
2745
|
+
"search"
|
|
2746
|
+
],
|
|
2747
|
+
"priority": 3,
|
|
2748
|
+
"package": "service_desk",
|
|
2749
|
+
"description": "Notification rules and configurations"
|
|
2750
|
+
},
|
|
2751
|
+
"sys_push_notif": {
|
|
2752
|
+
"label": "Sys Push Notif",
|
|
2753
|
+
"table": "sys_push_notif",
|
|
2754
|
+
"key_field": "sys_id",
|
|
2755
|
+
"display_field": "name",
|
|
2756
|
+
"required_fields": [
|
|
2757
|
+
"name"
|
|
2758
|
+
],
|
|
2759
|
+
"common_fields": [
|
|
2760
|
+
"sys_created_on",
|
|
2761
|
+
"sys_updated_on",
|
|
2762
|
+
"sys_created_by",
|
|
2763
|
+
"sys_updated_by",
|
|
2764
|
+
"name",
|
|
2765
|
+
"active"
|
|
2766
|
+
],
|
|
2767
|
+
"operations": [
|
|
2768
|
+
"create",
|
|
2769
|
+
"read",
|
|
2770
|
+
"update",
|
|
2771
|
+
"list",
|
|
2772
|
+
"search"
|
|
2773
|
+
],
|
|
2774
|
+
"priority": 3,
|
|
2775
|
+
"package": "service_desk",
|
|
2776
|
+
"description": "ServiceNow Sys Push Notif table"
|
|
2777
|
+
},
|
|
2778
|
+
"sys_user_role": {
|
|
2779
|
+
"label": "User Role",
|
|
2780
|
+
"table": "sys_user_role",
|
|
2781
|
+
"key_field": "sys_id",
|
|
2782
|
+
"display_field": "name",
|
|
2783
|
+
"required_fields": [
|
|
2784
|
+
"name"
|
|
2785
|
+
],
|
|
2786
|
+
"common_fields": [
|
|
2787
|
+
"sys_created_on",
|
|
2788
|
+
"sys_updated_on",
|
|
2789
|
+
"sys_created_by",
|
|
2790
|
+
"sys_updated_by",
|
|
2791
|
+
"name",
|
|
2792
|
+
"active"
|
|
2793
|
+
],
|
|
2794
|
+
"operations": [
|
|
2795
|
+
"create",
|
|
2796
|
+
"read",
|
|
2797
|
+
"update",
|
|
2798
|
+
"list",
|
|
2799
|
+
"search"
|
|
2800
|
+
],
|
|
2801
|
+
"priority": 3,
|
|
2802
|
+
"package": "service_desk",
|
|
2803
|
+
"description": "ServiceNow User Role table"
|
|
2804
|
+
},
|
|
2805
|
+
"sys_user_has_role": {
|
|
2806
|
+
"label": "User Role Assignment",
|
|
2807
|
+
"table": "sys_user_has_role",
|
|
2808
|
+
"key_field": "sys_id",
|
|
2809
|
+
"display_field": "name",
|
|
2810
|
+
"required_fields": [
|
|
2811
|
+
"name"
|
|
2812
|
+
],
|
|
2813
|
+
"common_fields": [
|
|
2814
|
+
"sys_created_on",
|
|
2815
|
+
"sys_updated_on",
|
|
2816
|
+
"sys_created_by",
|
|
2817
|
+
"sys_updated_by",
|
|
2818
|
+
"name",
|
|
2819
|
+
"active"
|
|
2820
|
+
],
|
|
2821
|
+
"operations": [
|
|
2822
|
+
"create",
|
|
2823
|
+
"read",
|
|
2824
|
+
"update",
|
|
2825
|
+
"list",
|
|
2826
|
+
"search"
|
|
2827
|
+
],
|
|
2828
|
+
"priority": 3,
|
|
2829
|
+
"package": "service_desk",
|
|
2830
|
+
"description": "ServiceNow User Role Assignment table"
|
|
2831
|
+
},
|
|
2832
|
+
"sys_security_acl": {
|
|
2833
|
+
"label": "Access Control Rule",
|
|
2834
|
+
"table": "sys_security_acl",
|
|
2835
|
+
"key_field": "sys_id",
|
|
2836
|
+
"display_field": "name",
|
|
2837
|
+
"required_fields": [
|
|
2838
|
+
"name"
|
|
2839
|
+
],
|
|
2840
|
+
"common_fields": [
|
|
2841
|
+
"sys_created_on",
|
|
2842
|
+
"sys_updated_on",
|
|
2843
|
+
"sys_created_by",
|
|
2844
|
+
"sys_updated_by",
|
|
2845
|
+
"name",
|
|
2846
|
+
"active"
|
|
2847
|
+
],
|
|
2848
|
+
"operations": [
|
|
2849
|
+
"create",
|
|
2850
|
+
"read",
|
|
2851
|
+
"update",
|
|
2852
|
+
"list",
|
|
2853
|
+
"search"
|
|
2854
|
+
],
|
|
2855
|
+
"priority": 3,
|
|
2856
|
+
"package": "service_desk",
|
|
2857
|
+
"description": "ServiceNow Access Control Rule table"
|
|
2858
|
+
},
|
|
2859
|
+
"sys_choice": {
|
|
2860
|
+
"label": "Choice",
|
|
2861
|
+
"table": "sys_choice",
|
|
2862
|
+
"key_field": "sys_id",
|
|
2863
|
+
"display_field": "name",
|
|
2864
|
+
"required_fields": [
|
|
2865
|
+
"name"
|
|
2866
|
+
],
|
|
2867
|
+
"common_fields": [
|
|
2868
|
+
"sys_created_on",
|
|
2869
|
+
"sys_updated_on",
|
|
2870
|
+
"sys_created_by",
|
|
2871
|
+
"sys_updated_by",
|
|
2872
|
+
"name",
|
|
2873
|
+
"active"
|
|
2874
|
+
],
|
|
2875
|
+
"operations": [
|
|
2876
|
+
"create",
|
|
2877
|
+
"read",
|
|
2878
|
+
"update",
|
|
2879
|
+
"list",
|
|
2880
|
+
"search"
|
|
2881
|
+
],
|
|
2882
|
+
"priority": 3,
|
|
2883
|
+
"package": "service_desk",
|
|
2884
|
+
"description": "ServiceNow Choice table"
|
|
2885
|
+
},
|
|
2886
|
+
"sys_metadata": {
|
|
2887
|
+
"label": "Metadata",
|
|
2888
|
+
"table": "sys_metadata",
|
|
2889
|
+
"key_field": "sys_id",
|
|
2890
|
+
"display_field": "name",
|
|
2891
|
+
"required_fields": [
|
|
2892
|
+
"name"
|
|
2893
|
+
],
|
|
2894
|
+
"common_fields": [
|
|
2895
|
+
"sys_created_on",
|
|
2896
|
+
"sys_updated_on",
|
|
2897
|
+
"sys_created_by",
|
|
2898
|
+
"sys_updated_by",
|
|
2899
|
+
"name",
|
|
2900
|
+
"active"
|
|
2901
|
+
],
|
|
2902
|
+
"operations": [
|
|
2903
|
+
"create",
|
|
2904
|
+
"read",
|
|
2905
|
+
"update",
|
|
2906
|
+
"list",
|
|
2907
|
+
"search"
|
|
2908
|
+
],
|
|
2909
|
+
"priority": 3,
|
|
2910
|
+
"package": "service_desk",
|
|
2911
|
+
"description": "ServiceNow Metadata table"
|
|
2912
|
+
},
|
|
2913
|
+
"sys_attachment": {
|
|
2914
|
+
"label": "Attachment",
|
|
2915
|
+
"table": "sys_attachment",
|
|
2916
|
+
"key_field": "sys_id",
|
|
2917
|
+
"display_field": "name",
|
|
2918
|
+
"required_fields": [
|
|
2919
|
+
"name"
|
|
2920
|
+
],
|
|
2921
|
+
"common_fields": [
|
|
2922
|
+
"sys_created_on",
|
|
2923
|
+
"sys_updated_on",
|
|
2924
|
+
"sys_created_by",
|
|
2925
|
+
"sys_updated_by",
|
|
2926
|
+
"name",
|
|
2927
|
+
"active"
|
|
2928
|
+
],
|
|
2929
|
+
"operations": [
|
|
2930
|
+
"create",
|
|
2931
|
+
"read",
|
|
2932
|
+
"update",
|
|
2933
|
+
"list",
|
|
2934
|
+
"search"
|
|
2935
|
+
],
|
|
2936
|
+
"priority": 3,
|
|
2937
|
+
"package": "service_desk",
|
|
2938
|
+
"description": "ServiceNow Attachment table"
|
|
2939
|
+
},
|
|
2940
|
+
"contract_rel_location": {
|
|
2941
|
+
"label": "contract rel location",
|
|
2942
|
+
"table": "contract_rel_location",
|
|
2943
|
+
"key_field": "sys_id",
|
|
2944
|
+
"display_field": "sys_id",
|
|
2945
|
+
"required_fields": [],
|
|
2946
|
+
"common_fields": [
|
|
2947
|
+
"sys_updated_on",
|
|
2948
|
+
"sys_mod_count",
|
|
2949
|
+
"sys_updated_by",
|
|
2950
|
+
"contract",
|
|
2951
|
+
"sys_created_on",
|
|
2952
|
+
"location",
|
|
2953
|
+
"sys_created_by"
|
|
2954
|
+
],
|
|
2955
|
+
"operations": [
|
|
2956
|
+
"create",
|
|
2957
|
+
"read",
|
|
2958
|
+
"update",
|
|
2959
|
+
"list",
|
|
2960
|
+
"search"
|
|
2961
|
+
],
|
|
2962
|
+
"discovered": true
|
|
2963
|
+
},
|
|
2964
|
+
"ts_stop": {
|
|
2965
|
+
"label": "ts stop",
|
|
2966
|
+
"table": "ts_stop",
|
|
2967
|
+
"key_field": "sys_id",
|
|
2968
|
+
"display_field": "sys_id",
|
|
2969
|
+
"required_fields": [],
|
|
2970
|
+
"common_fields": [
|
|
2971
|
+
"sys_updated_by",
|
|
2972
|
+
"sys_mod_count",
|
|
2973
|
+
"comment",
|
|
2974
|
+
"sys_created_on",
|
|
2975
|
+
"active",
|
|
2976
|
+
"sys_created_by",
|
|
2977
|
+
"word",
|
|
2978
|
+
"sys_updated_on"
|
|
2979
|
+
],
|
|
2980
|
+
"operations": [
|
|
2981
|
+
"create",
|
|
2982
|
+
"read",
|
|
2983
|
+
"update",
|
|
2984
|
+
"list",
|
|
2985
|
+
"search"
|
|
2986
|
+
],
|
|
2987
|
+
"discovered": true
|
|
2988
|
+
},
|
|
2989
|
+
"ts_japanese_token_dictionary": {
|
|
2990
|
+
"label": "ts japanese token dictionary",
|
|
2991
|
+
"table": "ts_japanese_token_dictionary",
|
|
2992
|
+
"key_field": "sys_id",
|
|
2993
|
+
"display_field": "sys_id",
|
|
2994
|
+
"required_fields": [
|
|
2995
|
+
"tokens",
|
|
2996
|
+
"text"
|
|
2997
|
+
],
|
|
2998
|
+
"common_fields": [
|
|
2999
|
+
"sys_mod_count",
|
|
3000
|
+
"sys_updated_by",
|
|
3001
|
+
"pos",
|
|
3002
|
+
"sys_created_on",
|
|
3003
|
+
"reading",
|
|
3004
|
+
"sys_created_by",
|
|
3005
|
+
"sys_updated_on"
|
|
3006
|
+
],
|
|
3007
|
+
"operations": [
|
|
3008
|
+
"create",
|
|
3009
|
+
"read",
|
|
3010
|
+
"update",
|
|
3011
|
+
"list",
|
|
3012
|
+
"search"
|
|
3013
|
+
],
|
|
3014
|
+
"discovered": true
|
|
3015
|
+
},
|
|
3016
|
+
"sn_sub_man_st_cloud_entitlement_subscription": {
|
|
3017
|
+
"label": "sn sub man st cloud entitlement subscription",
|
|
3018
|
+
"table": "sn_sub_man_st_cloud_entitlement_subscription",
|
|
3019
|
+
"key_field": "sys_id",
|
|
3020
|
+
"display_field": "sys_id",
|
|
3021
|
+
"required_fields": [],
|
|
3022
|
+
"common_fields": [
|
|
3023
|
+
"total_purchased_pool_capacity_tb",
|
|
3024
|
+
"start_date",
|
|
3025
|
+
"purchased_quantity",
|
|
3026
|
+
"type",
|
|
3027
|
+
"capacity_per_unit_tb",
|
|
3028
|
+
"product",
|
|
3029
|
+
"end_date",
|
|
3030
|
+
"product_code"
|
|
3031
|
+
],
|
|
3032
|
+
"operations": [
|
|
3033
|
+
"create",
|
|
3034
|
+
"read",
|
|
3035
|
+
"update",
|
|
3036
|
+
"list",
|
|
3037
|
+
"search"
|
|
3038
|
+
],
|
|
3039
|
+
"discovered": true
|
|
3040
|
+
},
|
|
3041
|
+
"ua_ih_feature_usage": {
|
|
3042
|
+
"label": "ua ih feature usage",
|
|
3043
|
+
"table": "ua_ih_feature_usage",
|
|
3044
|
+
"key_field": "sys_id",
|
|
3045
|
+
"display_field": "sys_id",
|
|
3046
|
+
"required_fields": [],
|
|
3047
|
+
"common_fields": [
|
|
3048
|
+
"license_id",
|
|
3049
|
+
"caller_scope_ref",
|
|
3050
|
+
"spoke_name",
|
|
3051
|
+
"sys_updated_on",
|
|
3052
|
+
"update_time",
|
|
3053
|
+
"caller_scope",
|
|
3054
|
+
"sys_mod_count",
|
|
3055
|
+
"spoke_id",
|
|
3056
|
+
"sys_updated_by",
|
|
3057
|
+
"originating_scope_ref"
|
|
3058
|
+
],
|
|
3059
|
+
"operations": [
|
|
3060
|
+
"create",
|
|
3061
|
+
"read",
|
|
3062
|
+
"update",
|
|
3063
|
+
"list",
|
|
3064
|
+
"search"
|
|
3065
|
+
],
|
|
3066
|
+
"discovered": true
|
|
3067
|
+
},
|
|
3068
|
+
"ua_blocking": {
|
|
3069
|
+
"label": "ua blocking",
|
|
3070
|
+
"table": "ua_blocking",
|
|
3071
|
+
"key_field": "sys_id",
|
|
3072
|
+
"display_field": "sys_id",
|
|
3073
|
+
"required_fields": [],
|
|
3074
|
+
"common_fields": [
|
|
3075
|
+
"sys_created_on",
|
|
3076
|
+
"event_type",
|
|
3077
|
+
"sys_created_by",
|
|
3078
|
+
"stream_id",
|
|
3079
|
+
"sys_updated_on",
|
|
3080
|
+
"sys_updated_by",
|
|
3081
|
+
"block_source",
|
|
3082
|
+
"sys_mod_count"
|
|
3083
|
+
],
|
|
3084
|
+
"operations": [
|
|
3085
|
+
"create",
|
|
3086
|
+
"read",
|
|
3087
|
+
"update",
|
|
3088
|
+
"list",
|
|
3089
|
+
"search"
|
|
3090
|
+
],
|
|
3091
|
+
"discovered": true
|
|
3092
|
+
},
|
|
3093
|
+
"ua_ct_usage": {
|
|
3094
|
+
"label": "ua ct usage",
|
|
3095
|
+
"table": "ua_ct_usage",
|
|
3096
|
+
"key_field": "sys_id",
|
|
3097
|
+
"display_field": "sys_id",
|
|
3098
|
+
"required_fields": [],
|
|
3099
|
+
"common_fields": [
|
|
3100
|
+
"insert_count",
|
|
3101
|
+
"user",
|
|
3102
|
+
"sys_created_by",
|
|
3103
|
+
"time_stamp",
|
|
3104
|
+
"table_name",
|
|
3105
|
+
"sys_updated_on",
|
|
3106
|
+
"delete_count",
|
|
3107
|
+
"app_scope",
|
|
3108
|
+
"sys_mod_count",
|
|
3109
|
+
"sys_updated_by"
|
|
3110
|
+
],
|
|
3111
|
+
"operations": [
|
|
3112
|
+
"create",
|
|
3113
|
+
"read",
|
|
3114
|
+
"update",
|
|
3115
|
+
"list",
|
|
3116
|
+
"search"
|
|
3117
|
+
],
|
|
3118
|
+
"discovered": true
|
|
3119
|
+
},
|
|
3120
|
+
"sn_aisearch_global_job_log": {
|
|
3121
|
+
"label": "sn aisearch global job log",
|
|
3122
|
+
"table": "sn_aisearch_global_job_log",
|
|
3123
|
+
"key_field": "sys_id",
|
|
3124
|
+
"display_field": "sys_id",
|
|
3125
|
+
"required_fields": [],
|
|
3126
|
+
"common_fields": [
|
|
3127
|
+
"sys_created_on",
|
|
3128
|
+
"sn_aisearch_global_migration_job",
|
|
3129
|
+
"sys_created_by",
|
|
3130
|
+
"message",
|
|
3131
|
+
"sys_updated_on",
|
|
3132
|
+
"level",
|
|
3133
|
+
"sys_updated_by",
|
|
3134
|
+
"sequence",
|
|
3135
|
+
"sys_mod_count"
|
|
3136
|
+
],
|
|
3137
|
+
"operations": [
|
|
3138
|
+
"create",
|
|
3139
|
+
"read",
|
|
3140
|
+
"update",
|
|
3141
|
+
"list",
|
|
3142
|
+
"search"
|
|
3143
|
+
],
|
|
3144
|
+
"discovered": true
|
|
3145
|
+
},
|
|
3146
|
+
"syslog_client_trans_det0000": {
|
|
3147
|
+
"label": "syslog client trans det0000",
|
|
3148
|
+
"table": "syslog_client_trans_det0000",
|
|
3149
|
+
"key_field": "name",
|
|
3150
|
+
"display_field": "name",
|
|
3151
|
+
"required_fields": [],
|
|
3152
|
+
"common_fields": [
|
|
3153
|
+
"sys_updated_on",
|
|
3154
|
+
"name",
|
|
3155
|
+
"sys_updated_by",
|
|
3156
|
+
"order",
|
|
3157
|
+
"duration",
|
|
3158
|
+
"sys_mod_count",
|
|
3159
|
+
"table",
|
|
3160
|
+
"type",
|
|
3161
|
+
"sys_created_on",
|
|
3162
|
+
"client_transaction"
|
|
3163
|
+
],
|
|
3164
|
+
"operations": [
|
|
3165
|
+
"create",
|
|
3166
|
+
"read",
|
|
3167
|
+
"update",
|
|
3168
|
+
"list",
|
|
3169
|
+
"search"
|
|
3170
|
+
],
|
|
3171
|
+
"discovered": true
|
|
3172
|
+
},
|
|
3173
|
+
"ts_c_4_7": {
|
|
3174
|
+
"label": "ts c 4 7",
|
|
3175
|
+
"table": "ts_c_4_7",
|
|
3176
|
+
"key_field": "sys_id",
|
|
3177
|
+
"display_field": "sys_id",
|
|
3178
|
+
"required_fields": [],
|
|
3179
|
+
"common_fields": [
|
|
3180
|
+
"word",
|
|
3181
|
+
"document_number",
|
|
3182
|
+
"total_weight",
|
|
3183
|
+
"positions"
|
|
3184
|
+
],
|
|
3185
|
+
"operations": [
|
|
3186
|
+
"create",
|
|
3187
|
+
"read",
|
|
3188
|
+
"update",
|
|
3189
|
+
"list",
|
|
3190
|
+
"search"
|
|
3191
|
+
],
|
|
3192
|
+
"discovered": true
|
|
3193
|
+
},
|
|
3194
|
+
"ts_phrase": {
|
|
3195
|
+
"label": "ts phrase",
|
|
3196
|
+
"table": "ts_phrase",
|
|
3197
|
+
"key_field": "number",
|
|
3198
|
+
"display_field": "number",
|
|
3199
|
+
"required_fields": [],
|
|
3200
|
+
"common_fields": [
|
|
3201
|
+
"number",
|
|
3202
|
+
"phrase"
|
|
3203
|
+
],
|
|
3204
|
+
"operations": [
|
|
3205
|
+
"create",
|
|
3206
|
+
"read",
|
|
3207
|
+
"update",
|
|
3208
|
+
"list",
|
|
3209
|
+
"search"
|
|
3210
|
+
],
|
|
3211
|
+
"discovered": true
|
|
3212
|
+
},
|
|
3213
|
+
"ts_c_28_5": {
|
|
3214
|
+
"label": "ts c 28 5",
|
|
3215
|
+
"table": "ts_c_28_5",
|
|
3216
|
+
"key_field": "sys_id",
|
|
3217
|
+
"display_field": "sys_id",
|
|
3218
|
+
"required_fields": [],
|
|
3219
|
+
"common_fields": [
|
|
3220
|
+
"word",
|
|
3221
|
+
"document_number",
|
|
3222
|
+
"total_weight",
|
|
3223
|
+
"positions"
|
|
3224
|
+
],
|
|
3225
|
+
"operations": [
|
|
3226
|
+
"create",
|
|
3227
|
+
"read",
|
|
3228
|
+
"update",
|
|
3229
|
+
"list",
|
|
3230
|
+
"search"
|
|
3231
|
+
],
|
|
3232
|
+
"discovered": true
|
|
3233
|
+
},
|
|
3234
|
+
"v_cluster_transaction": {
|
|
3235
|
+
"label": "v cluster transaction",
|
|
3236
|
+
"table": "v_cluster_transaction",
|
|
3237
|
+
"key_field": "sys_id",
|
|
3238
|
+
"display_field": "sys_id",
|
|
3239
|
+
"required_fields": [],
|
|
3240
|
+
"common_fields": [
|
|
3241
|
+
"age",
|
|
3242
|
+
"job_count",
|
|
3243
|
+
"business_rule",
|
|
3244
|
+
"sys_created_by",
|
|
3245
|
+
"foreground",
|
|
3246
|
+
"br_count",
|
|
3247
|
+
"transaction_id",
|
|
3248
|
+
"sys_updated_by",
|
|
3249
|
+
"scope_name",
|
|
3250
|
+
"acl_time"
|
|
3251
|
+
],
|
|
3252
|
+
"operations": [
|
|
3253
|
+
"create",
|
|
3254
|
+
"read",
|
|
3255
|
+
"update",
|
|
3256
|
+
"list",
|
|
3257
|
+
"search"
|
|
3258
|
+
],
|
|
3259
|
+
"discovered": true
|
|
3260
|
+
},
|
|
3261
|
+
"sn_cmdb_ws_dm_certification_attribute_status": {
|
|
3262
|
+
"label": "sn cmdb ws dm certification attribute status",
|
|
3263
|
+
"table": "sn_cmdb_ws_dm_certification_attribute_status",
|
|
3264
|
+
"key_field": "sys_id",
|
|
3265
|
+
"display_field": "sys_id",
|
|
3266
|
+
"required_fields": [],
|
|
3267
|
+
"common_fields": [
|
|
3268
|
+
"sys_updated_by",
|
|
3269
|
+
"comment",
|
|
3270
|
+
"element",
|
|
3271
|
+
"cmdb_data_management_task",
|
|
3272
|
+
"sys_mod_count",
|
|
3273
|
+
"status",
|
|
3274
|
+
"certification_record",
|
|
3275
|
+
"sys_created_on",
|
|
3276
|
+
"certified_value",
|
|
3277
|
+
"table"
|
|
3278
|
+
],
|
|
3279
|
+
"operations": [
|
|
3280
|
+
"create",
|
|
3281
|
+
"read",
|
|
3282
|
+
"update",
|
|
3283
|
+
"list",
|
|
3284
|
+
"search"
|
|
3285
|
+
],
|
|
3286
|
+
"discovered": true
|
|
3287
|
+
},
|
|
3288
|
+
"statemgmt_compat_actions": {
|
|
3289
|
+
"label": "statemgmt compat actions",
|
|
3290
|
+
"table": "statemgmt_compat_actions",
|
|
3291
|
+
"key_field": "sys_id",
|
|
3292
|
+
"display_field": "sys_id",
|
|
3293
|
+
"required_fields": [
|
|
3294
|
+
"compatible_action",
|
|
3295
|
+
"action"
|
|
3296
|
+
],
|
|
3297
|
+
"common_fields": [
|
|
3298
|
+
"sys_updated_on",
|
|
3299
|
+
"sys_mod_count",
|
|
3300
|
+
"sys_updated_by",
|
|
3301
|
+
"sys_created_on",
|
|
3302
|
+
"sys_created_by"
|
|
3303
|
+
],
|
|
3304
|
+
"operations": [
|
|
3305
|
+
"create",
|
|
3306
|
+
"read",
|
|
3307
|
+
"update",
|
|
3308
|
+
"list",
|
|
3309
|
+
"search"
|
|
3310
|
+
],
|
|
3311
|
+
"discovered": true
|
|
3312
|
+
},
|
|
3313
|
+
"svc_model_obj_constraint": {
|
|
3314
|
+
"label": "svc model obj constraint",
|
|
3315
|
+
"table": "svc_model_obj_constraint",
|
|
3316
|
+
"key_field": "name",
|
|
3317
|
+
"display_field": "name",
|
|
3318
|
+
"required_fields": [],
|
|
3319
|
+
"common_fields": [
|
|
3320
|
+
"sys_created_on",
|
|
3321
|
+
"name",
|
|
3322
|
+
"sys_created_by",
|
|
3323
|
+
"last_mark",
|
|
3324
|
+
"ci_type",
|
|
3325
|
+
"state_key",
|
|
3326
|
+
"template_stable_id",
|
|
3327
|
+
"state"
|
|
3328
|
+
],
|
|
3329
|
+
"operations": [
|
|
3330
|
+
"create",
|
|
3331
|
+
"read",
|
|
3332
|
+
"update",
|
|
3333
|
+
"list",
|
|
3334
|
+
"search"
|
|
3335
|
+
],
|
|
3336
|
+
"discovered": true
|
|
3337
|
+
},
|
|
3338
|
+
"cmdb_discovery": {
|
|
3339
|
+
"label": "cmdb discovery",
|
|
3340
|
+
"table": "cmdb_discovery",
|
|
3341
|
+
"key_field": "sys_id",
|
|
3342
|
+
"display_field": "sys_id",
|
|
3343
|
+
"required_fields": [],
|
|
3344
|
+
"common_fields": [
|
|
3345
|
+
"ecc_queue_name",
|
|
3346
|
+
"discoverer",
|
|
3347
|
+
"sys_created_by",
|
|
3348
|
+
"ecc_queue_topic",
|
|
3349
|
+
"cmdb_ci",
|
|
3350
|
+
"sys_updated_on",
|
|
3351
|
+
"status",
|
|
3352
|
+
"cmdb_class_name",
|
|
3353
|
+
"sys_mod_count",
|
|
3354
|
+
"sys_updated_by"
|
|
3355
|
+
],
|
|
3356
|
+
"operations": [
|
|
3357
|
+
"create",
|
|
3358
|
+
"read",
|
|
3359
|
+
"update",
|
|
3360
|
+
"list",
|
|
3361
|
+
"search"
|
|
3362
|
+
],
|
|
3363
|
+
"discovered": true
|
|
3364
|
+
},
|
|
3365
|
+
"ecc_event0000": {
|
|
3366
|
+
"label": "ecc event0000",
|
|
3367
|
+
"table": "ecc_event0000",
|
|
3368
|
+
"key_field": "name",
|
|
3369
|
+
"display_field": "name",
|
|
3370
|
+
"required_fields": [],
|
|
3371
|
+
"common_fields": [
|
|
3372
|
+
"task",
|
|
3373
|
+
"agent_correlator",
|
|
3374
|
+
"outage",
|
|
3375
|
+
"sys_updated_on",
|
|
3376
|
+
"component",
|
|
3377
|
+
"source",
|
|
3378
|
+
"sys_mod_count",
|
|
3379
|
+
"severity",
|
|
3380
|
+
"sys_updated_by",
|
|
3381
|
+
"status"
|
|
3382
|
+
],
|
|
3383
|
+
"operations": [
|
|
3384
|
+
"create",
|
|
3385
|
+
"read",
|
|
3386
|
+
"update",
|
|
3387
|
+
"list",
|
|
3388
|
+
"search"
|
|
3389
|
+
],
|
|
3390
|
+
"discovered": true
|
|
3391
|
+
},
|
|
3392
|
+
"ts_c_8_1": {
|
|
3393
|
+
"label": "ts c 8 1",
|
|
3394
|
+
"table": "ts_c_8_1",
|
|
3395
|
+
"key_field": "sys_id",
|
|
3396
|
+
"display_field": "sys_id",
|
|
3397
|
+
"required_fields": [],
|
|
3398
|
+
"common_fields": [
|
|
3399
|
+
"total_weight",
|
|
3400
|
+
"positions",
|
|
3401
|
+
"word",
|
|
3402
|
+
"document_number"
|
|
3403
|
+
],
|
|
3404
|
+
"operations": [
|
|
3405
|
+
"create",
|
|
3406
|
+
"read",
|
|
3407
|
+
"update",
|
|
3408
|
+
"list",
|
|
3409
|
+
"search"
|
|
3410
|
+
],
|
|
3411
|
+
"discovered": true
|
|
3412
|
+
},
|
|
3413
|
+
"sn_employee_employment_history": {
|
|
3414
|
+
"label": "sn employee employment history",
|
|
3415
|
+
"table": "sn_employee_employment_history",
|
|
3416
|
+
"key_field": "sys_id",
|
|
3417
|
+
"display_field": "sys_id",
|
|
3418
|
+
"required_fields": [],
|
|
3419
|
+
"common_fields": [
|
|
3420
|
+
"gap_reason",
|
|
3421
|
+
"zip",
|
|
3422
|
+
"employment_type",
|
|
3423
|
+
"sys_updated_on",
|
|
3424
|
+
"end_date",
|
|
3425
|
+
"state",
|
|
3426
|
+
"sys_mod_count",
|
|
3427
|
+
"employment_history_type",
|
|
3428
|
+
"sys_updated_by",
|
|
3429
|
+
"status"
|
|
3430
|
+
],
|
|
3431
|
+
"operations": [
|
|
3432
|
+
"create",
|
|
3433
|
+
"read",
|
|
3434
|
+
"update",
|
|
3435
|
+
"list",
|
|
3436
|
+
"search"
|
|
3437
|
+
],
|
|
3438
|
+
"discovered": true
|
|
3439
|
+
},
|
|
3440
|
+
"sys_cs_channel_user_profile": {
|
|
3441
|
+
"label": "sys cs channel user profile",
|
|
3442
|
+
"table": "sys_cs_channel_user_profile",
|
|
3443
|
+
"key_field": "sys_id",
|
|
3444
|
+
"display_field": "sys_id",
|
|
3445
|
+
"required_fields": [
|
|
3446
|
+
"channel_user_id",
|
|
3447
|
+
"channel"
|
|
3448
|
+
],
|
|
3449
|
+
"common_fields": [
|
|
3450
|
+
"user_table",
|
|
3451
|
+
"sys_created_on",
|
|
3452
|
+
"user_document",
|
|
3453
|
+
"sys_created_by",
|
|
3454
|
+
"expired_on",
|
|
3455
|
+
"display_name",
|
|
3456
|
+
"sys_updated_on",
|
|
3457
|
+
"timezone",
|
|
3458
|
+
"active",
|
|
3459
|
+
"sys_mod_count"
|
|
3460
|
+
],
|
|
3461
|
+
"operations": [
|
|
3462
|
+
"create",
|
|
3463
|
+
"read",
|
|
3464
|
+
"update",
|
|
3465
|
+
"list",
|
|
3466
|
+
"search"
|
|
3467
|
+
],
|
|
3468
|
+
"discovered": true
|
|
3469
|
+
},
|
|
3470
|
+
"sla_definition_sla_breakdown": {
|
|
3471
|
+
"label": "sla definition sla breakdown",
|
|
3472
|
+
"table": "sla_definition_sla_breakdown",
|
|
3473
|
+
"key_field": "sys_id",
|
|
3474
|
+
"display_field": "sys_id",
|
|
3475
|
+
"required_fields": [
|
|
3476
|
+
"contract_sla",
|
|
3477
|
+
"sla_breakdown_definition"
|
|
3478
|
+
],
|
|
3479
|
+
"common_fields": [
|
|
3480
|
+
"sys_created_on",
|
|
3481
|
+
"sys_created_by",
|
|
3482
|
+
"sys_updated_on",
|
|
3483
|
+
"sys_mod_count",
|
|
3484
|
+
"sys_updated_by"
|
|
3485
|
+
],
|
|
3486
|
+
"operations": [
|
|
3487
|
+
"create",
|
|
3488
|
+
"read",
|
|
3489
|
+
"update",
|
|
3490
|
+
"list",
|
|
3491
|
+
"search"
|
|
3492
|
+
],
|
|
3493
|
+
"discovered": true
|
|
3494
|
+
},
|
|
3495
|
+
"sla_breakdown_core": {
|
|
3496
|
+
"label": "sla breakdown core",
|
|
3497
|
+
"table": "sla_breakdown_core",
|
|
3498
|
+
"key_field": "sys_id",
|
|
3499
|
+
"display_field": "sys_id",
|
|
3500
|
+
"required_fields": [],
|
|
3501
|
+
"common_fields": [
|
|
3502
|
+
"retroactive",
|
|
3503
|
+
"business_duration",
|
|
3504
|
+
"sys_created_by",
|
|
3505
|
+
"task_sla",
|
|
3506
|
+
"pause_time",
|
|
3507
|
+
"business_pause_duration",
|
|
3508
|
+
"duration",
|
|
3509
|
+
"sys_updated_on",
|
|
3510
|
+
"task",
|
|
3511
|
+
"start"
|
|
3512
|
+
],
|
|
3513
|
+
"operations": [
|
|
3514
|
+
"create",
|
|
3515
|
+
"read",
|
|
3516
|
+
"update",
|
|
3517
|
+
"list",
|
|
3518
|
+
"search"
|
|
3519
|
+
],
|
|
3520
|
+
"discovered": true
|
|
3521
|
+
},
|
|
3522
|
+
"ts_c_24_7": {
|
|
3523
|
+
"label": "ts c 24 7",
|
|
3524
|
+
"table": "ts_c_24_7",
|
|
3525
|
+
"key_field": "sys_id",
|
|
3526
|
+
"display_field": "sys_id",
|
|
3527
|
+
"required_fields": [],
|
|
3528
|
+
"common_fields": [
|
|
3529
|
+
"total_weight",
|
|
3530
|
+
"positions",
|
|
3531
|
+
"word",
|
|
3532
|
+
"document_number"
|
|
3533
|
+
],
|
|
3534
|
+
"operations": [
|
|
3535
|
+
"create",
|
|
3536
|
+
"read",
|
|
3537
|
+
"update",
|
|
3538
|
+
"list",
|
|
3539
|
+
"search"
|
|
3540
|
+
],
|
|
3541
|
+
"discovered": true
|
|
3542
|
+
},
|
|
3543
|
+
"sn_cmdb_ws_ms_discovery_sources_not_reporting": {
|
|
3544
|
+
"label": "sn cmdb ws ms discovery sources not reporting",
|
|
3545
|
+
"table": "sn_cmdb_ws_ms_discovery_sources_not_reporting",
|
|
3546
|
+
"key_field": "sys_id",
|
|
3547
|
+
"display_field": "sys_id",
|
|
3548
|
+
"required_fields": [
|
|
3549
|
+
"last_discovered",
|
|
3550
|
+
"ci",
|
|
3551
|
+
"discovery_source",
|
|
3552
|
+
"class"
|
|
3553
|
+
],
|
|
3554
|
+
"common_fields": [
|
|
3555
|
+
"sys_created_by",
|
|
3556
|
+
"sys_updated_on",
|
|
3557
|
+
"sys_updated_by",
|
|
3558
|
+
"sys_domain",
|
|
3559
|
+
"sys_mod_count",
|
|
3560
|
+
"state",
|
|
3561
|
+
"cmdb_reference",
|
|
3562
|
+
"sys_created_on"
|
|
3563
|
+
],
|
|
3564
|
+
"operations": [
|
|
3565
|
+
"create",
|
|
3566
|
+
"read",
|
|
3567
|
+
"update",
|
|
3568
|
+
"list",
|
|
3569
|
+
"search"
|
|
3570
|
+
],
|
|
3571
|
+
"discovered": true
|
|
3572
|
+
},
|
|
3573
|
+
"cmdb_class_relationships": {
|
|
3574
|
+
"label": "cmdb class relationships",
|
|
3575
|
+
"table": "cmdb_class_relationships",
|
|
3576
|
+
"key_field": "sys_id",
|
|
3577
|
+
"display_field": "sys_id",
|
|
3578
|
+
"required_fields": [
|
|
3579
|
+
"parent"
|
|
3580
|
+
],
|
|
3581
|
+
"common_fields": [
|
|
3582
|
+
"sys_updated_on",
|
|
3583
|
+
"sys_mod_count",
|
|
3584
|
+
"sys_updated_by",
|
|
3585
|
+
"sys_created_on",
|
|
3586
|
+
"class_relationships",
|
|
3587
|
+
"sys_created_by"
|
|
3588
|
+
],
|
|
3589
|
+
"operations": [
|
|
3590
|
+
"create",
|
|
3591
|
+
"read",
|
|
3592
|
+
"update",
|
|
3593
|
+
"list",
|
|
3594
|
+
"search"
|
|
3595
|
+
],
|
|
3596
|
+
"discovered": true
|
|
3597
|
+
},
|
|
3598
|
+
"cmdb_m2m_model_compatibility": {
|
|
3599
|
+
"label": "cmdb m2m model compatibility",
|
|
3600
|
+
"table": "cmdb_m2m_model_compatibility",
|
|
3601
|
+
"key_field": "sys_id",
|
|
3602
|
+
"display_field": "sys_id",
|
|
3603
|
+
"required_fields": [],
|
|
3604
|
+
"common_fields": [
|
|
3605
|
+
"sys_created_on",
|
|
3606
|
+
"model_2",
|
|
3607
|
+
"sys_created_by",
|
|
3608
|
+
"model_1",
|
|
3609
|
+
"sys_updated_on",
|
|
3610
|
+
"sys_mod_count",
|
|
3611
|
+
"sys_domain_path",
|
|
3612
|
+
"sys_updated_by",
|
|
3613
|
+
"sys_domain"
|
|
3614
|
+
],
|
|
3615
|
+
"operations": [
|
|
3616
|
+
"create",
|
|
3617
|
+
"read",
|
|
3618
|
+
"update",
|
|
3619
|
+
"list",
|
|
3620
|
+
"search"
|
|
3621
|
+
],
|
|
3622
|
+
"discovered": true
|
|
3623
|
+
},
|
|
3624
|
+
"ts_c_11_0": {
|
|
3625
|
+
"label": "ts c 11 0",
|
|
3626
|
+
"table": "ts_c_11_0",
|
|
3627
|
+
"key_field": "sys_id",
|
|
3628
|
+
"display_field": "sys_id",
|
|
3629
|
+
"required_fields": [],
|
|
3630
|
+
"common_fields": [
|
|
3631
|
+
"positions",
|
|
3632
|
+
"document_number",
|
|
3633
|
+
"total_weight",
|
|
3634
|
+
"word"
|
|
3635
|
+
],
|
|
3636
|
+
"operations": [
|
|
3637
|
+
"create",
|
|
3638
|
+
"read",
|
|
3639
|
+
"update",
|
|
3640
|
+
"list",
|
|
3641
|
+
"search"
|
|
3642
|
+
],
|
|
3643
|
+
"discovered": true
|
|
3644
|
+
},
|
|
3645
|
+
"visualization_migration_storage": {
|
|
3646
|
+
"label": "visualization migration storage",
|
|
3647
|
+
"table": "visualization_migration_storage",
|
|
3648
|
+
"key_field": "sys_id",
|
|
3649
|
+
"display_field": "sys_id",
|
|
3650
|
+
"required_fields": [],
|
|
3651
|
+
"common_fields": [
|
|
3652
|
+
"sys_created_by",
|
|
3653
|
+
"sys_updated_on",
|
|
3654
|
+
"sys_mod_count",
|
|
3655
|
+
"sys_updated_by",
|
|
3656
|
+
"macroponent",
|
|
3657
|
+
"sys_created_on",
|
|
3658
|
+
"json"
|
|
3659
|
+
],
|
|
3660
|
+
"operations": [
|
|
3661
|
+
"create",
|
|
3662
|
+
"read",
|
|
3663
|
+
"update",
|
|
3664
|
+
"list",
|
|
3665
|
+
"search"
|
|
3666
|
+
],
|
|
3667
|
+
"discovered": true
|
|
3668
|
+
},
|
|
3669
|
+
"pa_indicator_data_snapshot_status": {
|
|
3670
|
+
"label": "pa indicator data snapshot status",
|
|
3671
|
+
"table": "pa_indicator_data_snapshot_status",
|
|
3672
|
+
"key_field": "sys_id",
|
|
3673
|
+
"display_field": "sys_id",
|
|
3674
|
+
"required_fields": [
|
|
3675
|
+
"data_snapshot_status",
|
|
3676
|
+
"indicator"
|
|
3677
|
+
],
|
|
3678
|
+
"common_fields": [
|
|
3679
|
+
"sys_created_by",
|
|
3680
|
+
"sys_updated_on",
|
|
3681
|
+
"sys_mod_count",
|
|
3682
|
+
"sys_updated_by",
|
|
3683
|
+
"sys_created_on"
|
|
3684
|
+
],
|
|
3685
|
+
"operations": [
|
|
3686
|
+
"create",
|
|
3687
|
+
"read",
|
|
3688
|
+
"update",
|
|
3689
|
+
"list",
|
|
3690
|
+
"search"
|
|
3691
|
+
],
|
|
3692
|
+
"discovered": true
|
|
3693
|
+
},
|
|
3694
|
+
"license_role_to_custom_table": {
|
|
3695
|
+
"label": "license role to custom table",
|
|
3696
|
+
"table": "license_role_to_custom_table",
|
|
3697
|
+
"key_field": "sys_id",
|
|
3698
|
+
"display_field": "sys_id",
|
|
3699
|
+
"required_fields": [
|
|
3700
|
+
"table_ref"
|
|
3701
|
+
],
|
|
3702
|
+
"common_fields": [
|
|
3703
|
+
"sys_updated_on",
|
|
3704
|
+
"sys_user_role",
|
|
3705
|
+
"sys_mod_count",
|
|
3706
|
+
"sys_updated_by",
|
|
3707
|
+
"role_name",
|
|
3708
|
+
"sys_created_on",
|
|
3709
|
+
"table_name",
|
|
3710
|
+
"active",
|
|
3711
|
+
"sys_created_by",
|
|
3712
|
+
"license_role_type"
|
|
3713
|
+
],
|
|
3714
|
+
"operations": [
|
|
3715
|
+
"create",
|
|
3716
|
+
"read",
|
|
3717
|
+
"update",
|
|
3718
|
+
"list",
|
|
3719
|
+
"search"
|
|
3720
|
+
],
|
|
3721
|
+
"discovered": true
|
|
3722
|
+
},
|
|
3723
|
+
"sa_notification0001": {
|
|
3724
|
+
"label": "sa notification0001",
|
|
3725
|
+
"table": "sa_notification0001",
|
|
3726
|
+
"key_field": "name",
|
|
3727
|
+
"display_field": "name",
|
|
3728
|
+
"required_fields": [],
|
|
3729
|
+
"common_fields": [
|
|
3730
|
+
"sys_domain",
|
|
3731
|
+
"sys_created_by",
|
|
3732
|
+
"content",
|
|
3733
|
+
"ci",
|
|
3734
|
+
"timestamp",
|
|
3735
|
+
"sys_mod_count",
|
|
3736
|
+
"name",
|
|
3737
|
+
"sys_updated_by",
|
|
3738
|
+
"sys_created_on",
|
|
3739
|
+
"service"
|
|
3740
|
+
],
|
|
3741
|
+
"operations": [
|
|
3742
|
+
"create",
|
|
3743
|
+
"read",
|
|
3744
|
+
"update",
|
|
3745
|
+
"list",
|
|
3746
|
+
"search"
|
|
3747
|
+
],
|
|
3748
|
+
"discovered": true
|
|
3749
|
+
},
|
|
3750
|
+
"sn_collab_request_permission_section": {
|
|
3751
|
+
"label": "sn collab request permission section",
|
|
3752
|
+
"table": "sn_collab_request_permission_section",
|
|
3753
|
+
"key_field": "sys_id",
|
|
3754
|
+
"display_field": "sys_id",
|
|
3755
|
+
"required_fields": [
|
|
3756
|
+
"info",
|
|
3757
|
+
"title"
|
|
3758
|
+
],
|
|
3759
|
+
"common_fields": [
|
|
3760
|
+
"sys_mod_count",
|
|
3761
|
+
"sys_updated_on",
|
|
3762
|
+
"sys_updated_by",
|
|
3763
|
+
"order",
|
|
3764
|
+
"sys_created_on",
|
|
3765
|
+
"sys_created_by",
|
|
3766
|
+
"active"
|
|
3767
|
+
],
|
|
3768
|
+
"operations": [
|
|
3769
|
+
"create",
|
|
3770
|
+
"read",
|
|
3771
|
+
"update",
|
|
3772
|
+
"list",
|
|
3773
|
+
"search"
|
|
3774
|
+
],
|
|
3775
|
+
"discovered": true
|
|
3776
|
+
},
|
|
3777
|
+
"ts_c_20_9": {
|
|
3778
|
+
"label": "ts c 20 9",
|
|
3779
|
+
"table": "ts_c_20_9",
|
|
3780
|
+
"key_field": "sys_id",
|
|
3781
|
+
"display_field": "sys_id",
|
|
3782
|
+
"required_fields": [],
|
|
3783
|
+
"common_fields": [
|
|
3784
|
+
"word",
|
|
3785
|
+
"document_number",
|
|
3786
|
+
"total_weight",
|
|
3787
|
+
"positions"
|
|
3788
|
+
],
|
|
3789
|
+
"operations": [
|
|
3790
|
+
"create",
|
|
3791
|
+
"read",
|
|
3792
|
+
"update",
|
|
3793
|
+
"list",
|
|
3794
|
+
"search"
|
|
3795
|
+
],
|
|
3796
|
+
"discovered": true
|
|
3797
|
+
},
|
|
3798
|
+
"unauth_chg_notifications": {
|
|
3799
|
+
"label": "unauth chg notifications",
|
|
3800
|
+
"table": "unauth_chg_notifications",
|
|
3801
|
+
"key_field": "sys_id",
|
|
3802
|
+
"display_field": "sys_id",
|
|
3803
|
+
"required_fields": [],
|
|
3804
|
+
"common_fields": [
|
|
3805
|
+
"sys_updated_on",
|
|
3806
|
+
"sys_updated_by",
|
|
3807
|
+
"sys_mod_count",
|
|
3808
|
+
"last_event_sent",
|
|
3809
|
+
"sys_created_on",
|
|
3810
|
+
"cmdb_ci",
|
|
3811
|
+
"sys_created_by"
|
|
3812
|
+
],
|
|
3813
|
+
"operations": [
|
|
3814
|
+
"create",
|
|
3815
|
+
"read",
|
|
3816
|
+
"update",
|
|
3817
|
+
"list",
|
|
3818
|
+
"search"
|
|
3819
|
+
],
|
|
3820
|
+
"discovered": true
|
|
3821
|
+
},
|
|
3822
|
+
"experiment": {
|
|
3823
|
+
"label": "experiment",
|
|
3824
|
+
"table": "experiment",
|
|
3825
|
+
"key_field": "name",
|
|
3826
|
+
"display_field": "name",
|
|
3827
|
+
"required_fields": [
|
|
3828
|
+
"experiment_parameter",
|
|
3829
|
+
"start_time",
|
|
3830
|
+
"name"
|
|
3831
|
+
],
|
|
3832
|
+
"common_fields": [
|
|
3833
|
+
"category",
|
|
3834
|
+
"sync_version",
|
|
3835
|
+
"description",
|
|
3836
|
+
"sys_updated_on",
|
|
3837
|
+
"experiment_id",
|
|
3838
|
+
"instance_type",
|
|
3839
|
+
"opt_out",
|
|
3840
|
+
"sys_mod_count",
|
|
3841
|
+
"sys_updated_by",
|
|
3842
|
+
"gcf_definition_id"
|
|
3843
|
+
],
|
|
3844
|
+
"operations": [
|
|
3845
|
+
"create",
|
|
3846
|
+
"read",
|
|
3847
|
+
"update",
|
|
3848
|
+
"list",
|
|
3849
|
+
"search"
|
|
3850
|
+
],
|
|
3851
|
+
"discovered": true
|
|
3852
|
+
},
|
|
3853
|
+
"ml_language_x_prediction_result": {
|
|
3854
|
+
"label": "ml language x prediction result",
|
|
3855
|
+
"table": "ml_language_x_prediction_result",
|
|
3856
|
+
"key_field": "sys_id",
|
|
3857
|
+
"display_field": "sys_id",
|
|
3858
|
+
"required_fields": [],
|
|
3859
|
+
"common_fields": [
|
|
3860
|
+
"sys_created_by",
|
|
3861
|
+
"prediction_feedback",
|
|
3862
|
+
"language_x_solution",
|
|
3863
|
+
"sys_updated_on",
|
|
3864
|
+
"prediction_result",
|
|
3865
|
+
"language_x_config",
|
|
3866
|
+
"sys_domain_path",
|
|
3867
|
+
"sys_updated_by",
|
|
3868
|
+
"composite_solution_id",
|
|
3869
|
+
"prediction_input"
|
|
3870
|
+
],
|
|
3871
|
+
"operations": [
|
|
3872
|
+
"create",
|
|
3873
|
+
"read",
|
|
3874
|
+
"update",
|
|
3875
|
+
"list",
|
|
3876
|
+
"search"
|
|
3877
|
+
],
|
|
3878
|
+
"discovered": true
|
|
3879
|
+
},
|
|
3880
|
+
"hermes_audit_records": {
|
|
3881
|
+
"label": "hermes audit records",
|
|
3882
|
+
"table": "hermes_audit_records",
|
|
3883
|
+
"key_field": "sys_id",
|
|
3884
|
+
"display_field": "sys_id",
|
|
3885
|
+
"required_fields": [
|
|
3886
|
+
"service_id"
|
|
3887
|
+
],
|
|
3888
|
+
"common_fields": [
|
|
3889
|
+
"sys_updated_on",
|
|
3890
|
+
"ip_address",
|
|
3891
|
+
"resource",
|
|
3892
|
+
"sys_updated_by",
|
|
3893
|
+
"principal_type",
|
|
3894
|
+
"sys_mod_count",
|
|
3895
|
+
"data_center",
|
|
3896
|
+
"principal_name",
|
|
3897
|
+
"sys_created_on",
|
|
3898
|
+
"timestamp"
|
|
3899
|
+
],
|
|
3900
|
+
"operations": [
|
|
3901
|
+
"create",
|
|
3902
|
+
"read",
|
|
3903
|
+
"update",
|
|
3904
|
+
"list",
|
|
3905
|
+
"search"
|
|
3906
|
+
],
|
|
3907
|
+
"discovered": true
|
|
3908
|
+
},
|
|
3909
|
+
"promin_process_category_kpi": {
|
|
3910
|
+
"label": "promin process category kpi",
|
|
3911
|
+
"table": "promin_process_category_kpi",
|
|
3912
|
+
"key_field": "sys_id",
|
|
3913
|
+
"display_field": "sys_id",
|
|
3914
|
+
"required_fields": [
|
|
3915
|
+
"impacted_kpis",
|
|
3916
|
+
"category",
|
|
3917
|
+
"process_def"
|
|
3918
|
+
],
|
|
3919
|
+
"common_fields": [
|
|
3920
|
+
"sys_created_on",
|
|
3921
|
+
"sys_created_by",
|
|
3922
|
+
"sys_updated_on",
|
|
3923
|
+
"sys_mod_count",
|
|
3924
|
+
"sys_updated_by",
|
|
3925
|
+
"sys_domain"
|
|
3926
|
+
],
|
|
3927
|
+
"operations": [
|
|
3928
|
+
"create",
|
|
3929
|
+
"read",
|
|
3930
|
+
"update",
|
|
3931
|
+
"list",
|
|
3932
|
+
"search"
|
|
3933
|
+
],
|
|
3934
|
+
"discovered": true
|
|
3935
|
+
},
|
|
3936
|
+
"cmn_user_schedule": {
|
|
3937
|
+
"label": "cmn user schedule",
|
|
3938
|
+
"table": "cmn_user_schedule",
|
|
3939
|
+
"key_field": "sys_id",
|
|
3940
|
+
"display_field": "sys_id",
|
|
3941
|
+
"required_fields": [],
|
|
3942
|
+
"common_fields": [
|
|
3943
|
+
"sys_mod_count",
|
|
3944
|
+
"sys_updated_by",
|
|
3945
|
+
"sys_domain",
|
|
3946
|
+
"start_date",
|
|
3947
|
+
"sys_created_on",
|
|
3948
|
+
"sys_class_name",
|
|
3949
|
+
"schedule",
|
|
3950
|
+
"sys_created_by",
|
|
3951
|
+
"active",
|
|
3952
|
+
"user"
|
|
3953
|
+
],
|
|
3954
|
+
"operations": [
|
|
3955
|
+
"create",
|
|
3956
|
+
"read",
|
|
3957
|
+
"update",
|
|
3958
|
+
"list",
|
|
3959
|
+
"search"
|
|
3960
|
+
],
|
|
3961
|
+
"discovered": true
|
|
3962
|
+
},
|
|
3963
|
+
"cmdb_fc_initiator": {
|
|
3964
|
+
"label": "cmdb fc initiator",
|
|
3965
|
+
"table": "cmdb_fc_initiator",
|
|
3966
|
+
"key_field": "sys_id",
|
|
3967
|
+
"display_field": "sys_id",
|
|
3968
|
+
"required_fields": [],
|
|
3969
|
+
"common_fields": [
|
|
3970
|
+
"sys_created_on",
|
|
3971
|
+
"wwpn",
|
|
3972
|
+
"sys_created_by",
|
|
3973
|
+
"wwnn",
|
|
3974
|
+
"sys_domain_path",
|
|
3975
|
+
"sys_updated_on",
|
|
3976
|
+
"fc_disk",
|
|
3977
|
+
"sys_mod_count",
|
|
3978
|
+
"sys_updated_by",
|
|
3979
|
+
"sys_domain"
|
|
3980
|
+
],
|
|
3981
|
+
"operations": [
|
|
3982
|
+
"create",
|
|
3983
|
+
"read",
|
|
3984
|
+
"update",
|
|
3985
|
+
"list",
|
|
3986
|
+
"search"
|
|
3987
|
+
],
|
|
3988
|
+
"discovered": true
|
|
3989
|
+
},
|
|
3990
|
+
"ecc_event0002": {
|
|
3991
|
+
"label": "ecc event0002",
|
|
3992
|
+
"table": "ecc_event0002",
|
|
3993
|
+
"key_field": "name",
|
|
3994
|
+
"display_field": "name",
|
|
3995
|
+
"required_fields": [],
|
|
3996
|
+
"common_fields": [
|
|
3997
|
+
"name",
|
|
3998
|
+
"sys_class_name",
|
|
3999
|
+
"outage",
|
|
4000
|
+
"sys_created_on",
|
|
4001
|
+
"payload",
|
|
4002
|
+
"type",
|
|
4003
|
+
"sys_created_by",
|
|
4004
|
+
"severity",
|
|
4005
|
+
"task",
|
|
4006
|
+
"agent_correlator"
|
|
4007
|
+
],
|
|
4008
|
+
"operations": [
|
|
4009
|
+
"create",
|
|
4010
|
+
"read",
|
|
4011
|
+
"update",
|
|
4012
|
+
"list",
|
|
4013
|
+
"search"
|
|
4014
|
+
],
|
|
4015
|
+
"discovered": true
|
|
4016
|
+
},
|
|
4017
|
+
"ts_c_24_0": {
|
|
4018
|
+
"label": "ts c 24 0",
|
|
4019
|
+
"table": "ts_c_24_0",
|
|
4020
|
+
"key_field": "sys_id",
|
|
4021
|
+
"display_field": "sys_id",
|
|
4022
|
+
"required_fields": [],
|
|
4023
|
+
"common_fields": [
|
|
4024
|
+
"word",
|
|
4025
|
+
"total_weight",
|
|
4026
|
+
"positions",
|
|
4027
|
+
"document_number"
|
|
4028
|
+
],
|
|
4029
|
+
"operations": [
|
|
4030
|
+
"create",
|
|
4031
|
+
"read",
|
|
4032
|
+
"update",
|
|
4033
|
+
"list",
|
|
4034
|
+
"search"
|
|
4035
|
+
],
|
|
4036
|
+
"discovered": true
|
|
4037
|
+
},
|
|
4038
|
+
"svc_recomputation_log0004": {
|
|
4039
|
+
"label": "svc recomputation log0004",
|
|
4040
|
+
"table": "svc_recomputation_log0004",
|
|
4041
|
+
"key_field": "sys_id",
|
|
4042
|
+
"display_field": "sys_id",
|
|
4043
|
+
"required_fields": [],
|
|
4044
|
+
"common_fields": [
|
|
4045
|
+
"guid",
|
|
4046
|
+
"sys_updated_by",
|
|
4047
|
+
"metric_key",
|
|
4048
|
+
"row_num",
|
|
4049
|
+
"metric_value",
|
|
4050
|
+
"sys_mod_count",
|
|
4051
|
+
"sys_created_by",
|
|
4052
|
+
"topic",
|
|
4053
|
+
"environment",
|
|
4054
|
+
"layer"
|
|
4055
|
+
],
|
|
4056
|
+
"operations": [
|
|
4057
|
+
"create",
|
|
4058
|
+
"read",
|
|
4059
|
+
"update",
|
|
4060
|
+
"list",
|
|
4061
|
+
"search"
|
|
4062
|
+
],
|
|
4063
|
+
"discovered": true
|
|
4064
|
+
},
|
|
4065
|
+
"sn_publications_workflow_config": {
|
|
4066
|
+
"label": "sn publications workflow config",
|
|
4067
|
+
"table": "sn_publications_workflow_config",
|
|
4068
|
+
"key_field": "sys_id",
|
|
4069
|
+
"display_field": "sys_id",
|
|
4070
|
+
"required_fields": [
|
|
4071
|
+
"process_workflow",
|
|
4072
|
+
"workflow"
|
|
4073
|
+
],
|
|
4074
|
+
"common_fields": [
|
|
4075
|
+
"sys_mod_count",
|
|
4076
|
+
"sys_updated_by",
|
|
4077
|
+
"sys_created_on",
|
|
4078
|
+
"sys_created_by",
|
|
4079
|
+
"approvers",
|
|
4080
|
+
"sys_updated_on"
|
|
4081
|
+
],
|
|
4082
|
+
"operations": [
|
|
4083
|
+
"create",
|
|
4084
|
+
"read",
|
|
4085
|
+
"update",
|
|
4086
|
+
"list",
|
|
4087
|
+
"search"
|
|
4088
|
+
],
|
|
4089
|
+
"discovered": true
|
|
4090
|
+
},
|
|
4091
|
+
"cmdb_ci_end_of_life_ledger": {
|
|
4092
|
+
"label": "cmdb ci end of life ledger",
|
|
4093
|
+
"table": "cmdb_ci_end_of_life_ledger",
|
|
4094
|
+
"key_field": "sys_id",
|
|
4095
|
+
"display_field": "sys_id",
|
|
4096
|
+
"required_fields": [],
|
|
4097
|
+
"common_fields": [
|
|
4098
|
+
"sys_mod_count",
|
|
4099
|
+
"state",
|
|
4100
|
+
"sys_created_on",
|
|
4101
|
+
"cmdb_ci",
|
|
4102
|
+
"sys_updated_on",
|
|
4103
|
+
"sys_created_by",
|
|
4104
|
+
"sys_domain",
|
|
4105
|
+
"sys_updated_by",
|
|
4106
|
+
"system_id"
|
|
4107
|
+
],
|
|
4108
|
+
"operations": [
|
|
4109
|
+
"create",
|
|
4110
|
+
"read",
|
|
4111
|
+
"update",
|
|
4112
|
+
"list",
|
|
4113
|
+
"search"
|
|
4114
|
+
],
|
|
4115
|
+
"discovered": true
|
|
4116
|
+
},
|
|
4117
|
+
"cmdb_data_management_policy_execution": {
|
|
4118
|
+
"label": "cmdb data management policy execution",
|
|
4119
|
+
"table": "cmdb_data_management_policy_execution",
|
|
4120
|
+
"key_field": "number",
|
|
4121
|
+
"display_field": "number",
|
|
4122
|
+
"required_fields": [],
|
|
4123
|
+
"common_fields": [
|
|
4124
|
+
"percent_complete",
|
|
4125
|
+
"sys_created_on",
|
|
4126
|
+
"number",
|
|
4127
|
+
"execution_state",
|
|
4128
|
+
"sys_domain",
|
|
4129
|
+
"end_time",
|
|
4130
|
+
"sys_created_by",
|
|
4131
|
+
"start_time",
|
|
4132
|
+
"open_task_count",
|
|
4133
|
+
"sys_updated_on"
|
|
4134
|
+
],
|
|
4135
|
+
"operations": [
|
|
4136
|
+
"create",
|
|
4137
|
+
"read",
|
|
4138
|
+
"update",
|
|
4139
|
+
"list",
|
|
4140
|
+
"search"
|
|
4141
|
+
],
|
|
4142
|
+
"discovered": true
|
|
4143
|
+
},
|
|
4144
|
+
"ui_notification_payload_processor": {
|
|
4145
|
+
"label": "ui notification payload processor",
|
|
4146
|
+
"table": "ui_notification_payload_processor",
|
|
4147
|
+
"key_field": "name",
|
|
4148
|
+
"display_field": "name",
|
|
4149
|
+
"required_fields": [
|
|
4150
|
+
"name"
|
|
4151
|
+
],
|
|
4152
|
+
"common_fields": [
|
|
4153
|
+
"sys_created_by",
|
|
4154
|
+
"sys_updated_on",
|
|
4155
|
+
"sys_mod_count",
|
|
4156
|
+
"sys_updated_by",
|
|
4157
|
+
"class_name",
|
|
4158
|
+
"sys_created_on",
|
|
4159
|
+
"description"
|
|
4160
|
+
],
|
|
4161
|
+
"operations": [
|
|
4162
|
+
"create",
|
|
4163
|
+
"read",
|
|
4164
|
+
"update",
|
|
4165
|
+
"list",
|
|
4166
|
+
"search"
|
|
4167
|
+
],
|
|
4168
|
+
"discovered": true
|
|
4169
|
+
},
|
|
4170
|
+
"sn_wn_app_config": {
|
|
4171
|
+
"label": "sn wn app config",
|
|
4172
|
+
"table": "sn_wn_app_config",
|
|
4173
|
+
"key_field": "sys_id",
|
|
4174
|
+
"display_field": "short_description",
|
|
4175
|
+
"required_fields": [],
|
|
4176
|
+
"common_fields": [
|
|
4177
|
+
"active",
|
|
4178
|
+
"sys_updated_by",
|
|
4179
|
+
"sys_mod_count",
|
|
4180
|
+
"short_description",
|
|
4181
|
+
"sys_created_on",
|
|
4182
|
+
"title",
|
|
4183
|
+
"sys_created_by",
|
|
4184
|
+
"base_path",
|
|
4185
|
+
"sys_updated_on"
|
|
4186
|
+
],
|
|
4187
|
+
"operations": [
|
|
4188
|
+
"create",
|
|
4189
|
+
"read",
|
|
4190
|
+
"update",
|
|
4191
|
+
"list",
|
|
4192
|
+
"search"
|
|
4193
|
+
],
|
|
4194
|
+
"discovered": true
|
|
4195
|
+
},
|
|
4196
|
+
"fx_currency2_instance": {
|
|
4197
|
+
"label": "fx currency2 instance",
|
|
4198
|
+
"table": "fx_currency2_instance",
|
|
4199
|
+
"key_field": "sys_id",
|
|
4200
|
+
"display_field": "sys_id",
|
|
4201
|
+
"required_fields": [],
|
|
4202
|
+
"common_fields": [
|
|
4203
|
+
"sys_created_by",
|
|
4204
|
+
"table",
|
|
4205
|
+
"amount",
|
|
4206
|
+
"sys_updated_on",
|
|
4207
|
+
"reference_amount",
|
|
4208
|
+
"currency",
|
|
4209
|
+
"sys_updated_by",
|
|
4210
|
+
"parent_record",
|
|
4211
|
+
"reference_currency",
|
|
4212
|
+
"sys_mod_count"
|
|
4213
|
+
],
|
|
4214
|
+
"operations": [
|
|
4215
|
+
"create",
|
|
4216
|
+
"read",
|
|
4217
|
+
"update",
|
|
4218
|
+
"list",
|
|
4219
|
+
"search"
|
|
4220
|
+
],
|
|
4221
|
+
"discovered": true
|
|
4222
|
+
},
|
|
4223
|
+
"alm_asset_creation_queue": {
|
|
4224
|
+
"label": "alm asset creation queue",
|
|
4225
|
+
"table": "alm_asset_creation_queue",
|
|
4226
|
+
"key_field": "sys_id",
|
|
4227
|
+
"display_field": "sys_id",
|
|
4228
|
+
"required_fields": [],
|
|
4229
|
+
"common_fields": [
|
|
4230
|
+
"sys_created_by",
|
|
4231
|
+
"state",
|
|
4232
|
+
"sys_updated_on",
|
|
4233
|
+
"table",
|
|
4234
|
+
"sys_mod_count",
|
|
4235
|
+
"sys_updated_by",
|
|
4236
|
+
"sys_domain",
|
|
4237
|
+
"source_id",
|
|
4238
|
+
"sys_created_on",
|
|
4239
|
+
"comments"
|
|
4240
|
+
],
|
|
4241
|
+
"operations": [
|
|
4242
|
+
"create",
|
|
4243
|
+
"read",
|
|
4244
|
+
"update",
|
|
4245
|
+
"list",
|
|
4246
|
+
"search"
|
|
4247
|
+
],
|
|
4248
|
+
"discovered": true
|
|
4249
|
+
},
|
|
4250
|
+
"sysevent0005": {
|
|
4251
|
+
"label": "sysevent0005",
|
|
4252
|
+
"table": "sysevent0005",
|
|
4253
|
+
"key_field": "name",
|
|
4254
|
+
"display_field": "name",
|
|
4255
|
+
"required_fields": [],
|
|
4256
|
+
"common_fields": [
|
|
4257
|
+
"processing_duration",
|
|
4258
|
+
"parm2",
|
|
4259
|
+
"sys_mod_count",
|
|
4260
|
+
"partition",
|
|
4261
|
+
"sys_updated_by",
|
|
4262
|
+
"instance",
|
|
4263
|
+
"claimed_by",
|
|
4264
|
+
"user_id",
|
|
4265
|
+
"table",
|
|
4266
|
+
"sys_created_on"
|
|
4267
|
+
],
|
|
4268
|
+
"operations": [
|
|
4269
|
+
"create",
|
|
4270
|
+
"read",
|
|
4271
|
+
"update",
|
|
4272
|
+
"list",
|
|
4273
|
+
"search"
|
|
4274
|
+
],
|
|
4275
|
+
"discovered": true
|
|
4276
|
+
},
|
|
4277
|
+
"asmt_m2m_recipientslist_survey": {
|
|
4278
|
+
"label": "asmt m2m recipientslist survey",
|
|
4279
|
+
"table": "asmt_m2m_recipientslist_survey",
|
|
4280
|
+
"key_field": "name",
|
|
4281
|
+
"display_field": "name",
|
|
4282
|
+
"required_fields": [
|
|
4283
|
+
"recipients_list",
|
|
4284
|
+
"metric_type"
|
|
4285
|
+
],
|
|
4286
|
+
"common_fields": [
|
|
4287
|
+
"sys_created_on",
|
|
4288
|
+
"name",
|
|
4289
|
+
"sys_created_by",
|
|
4290
|
+
"sys_domain_path",
|
|
4291
|
+
"sys_updated_on",
|
|
4292
|
+
"sys_mod_count",
|
|
4293
|
+
"sys_updated_by",
|
|
4294
|
+
"sys_domain"
|
|
4295
|
+
],
|
|
4296
|
+
"operations": [
|
|
4297
|
+
"create",
|
|
4298
|
+
"read",
|
|
4299
|
+
"update",
|
|
4300
|
+
"list",
|
|
4301
|
+
"search"
|
|
4302
|
+
],
|
|
4303
|
+
"discovered": true
|
|
4304
|
+
},
|
|
4305
|
+
"upgrade_preview": {
|
|
4306
|
+
"label": "upgrade preview",
|
|
4307
|
+
"table": "upgrade_preview",
|
|
4308
|
+
"key_field": "sys_id",
|
|
4309
|
+
"display_field": "sys_id",
|
|
4310
|
+
"required_fields": [],
|
|
4311
|
+
"common_fields": [
|
|
4312
|
+
"sys_created_on",
|
|
4313
|
+
"tracker",
|
|
4314
|
+
"source_version",
|
|
4315
|
+
"sys_created_by",
|
|
4316
|
+
"preview_finished",
|
|
4317
|
+
"sys_updated_on",
|
|
4318
|
+
"preview_started",
|
|
4319
|
+
"sys_updated_by",
|
|
4320
|
+
"status",
|
|
4321
|
+
"target_version"
|
|
4322
|
+
],
|
|
4323
|
+
"operations": [
|
|
4324
|
+
"create",
|
|
4325
|
+
"read",
|
|
4326
|
+
"update",
|
|
4327
|
+
"list",
|
|
4328
|
+
"search"
|
|
4329
|
+
],
|
|
4330
|
+
"discovered": true
|
|
4331
|
+
},
|
|
4332
|
+
"promin_project_entity": {
|
|
4333
|
+
"label": "promin project entity",
|
|
4334
|
+
"table": "promin_project_entity",
|
|
4335
|
+
"key_field": "name",
|
|
4336
|
+
"display_field": "name",
|
|
4337
|
+
"required_fields": [
|
|
4338
|
+
"name",
|
|
4339
|
+
"source_type"
|
|
4340
|
+
],
|
|
4341
|
+
"common_fields": [
|
|
4342
|
+
"table",
|
|
4343
|
+
"advanced_condition_type",
|
|
4344
|
+
"target_field",
|
|
4345
|
+
"report_source",
|
|
4346
|
+
"touch_point_excluded_users",
|
|
4347
|
+
"sys_created_by",
|
|
4348
|
+
"touch_point_time_range",
|
|
4349
|
+
"advanced_condition_relation",
|
|
4350
|
+
"source_field",
|
|
4351
|
+
"external_dataset"
|
|
4352
|
+
],
|
|
4353
|
+
"operations": [
|
|
4354
|
+
"create",
|
|
4355
|
+
"read",
|
|
4356
|
+
"update",
|
|
4357
|
+
"list",
|
|
4358
|
+
"search"
|
|
4359
|
+
],
|
|
4360
|
+
"discovered": true
|
|
4361
|
+
},
|
|
4362
|
+
"cmdb_os_user": {
|
|
4363
|
+
"label": "cmdb os user",
|
|
4364
|
+
"table": "cmdb_os_user",
|
|
4365
|
+
"key_field": "sys_id",
|
|
4366
|
+
"display_field": "sys_id",
|
|
4367
|
+
"required_fields": [],
|
|
4368
|
+
"common_fields": [
|
|
4369
|
+
"home_directory",
|
|
4370
|
+
"sys_updated_on",
|
|
4371
|
+
"os_user_name",
|
|
4372
|
+
"sys_mod_count",
|
|
4373
|
+
"sys_updated_by",
|
|
4374
|
+
"computer",
|
|
4375
|
+
"os_user_id",
|
|
4376
|
+
"sys_created_on",
|
|
4377
|
+
"password",
|
|
4378
|
+
"sys_created_by"
|
|
4379
|
+
],
|
|
4380
|
+
"operations": [
|
|
4381
|
+
"create",
|
|
4382
|
+
"read",
|
|
4383
|
+
"update",
|
|
4384
|
+
"list",
|
|
4385
|
+
"search"
|
|
4386
|
+
],
|
|
4387
|
+
"discovered": true
|
|
4388
|
+
},
|
|
4389
|
+
"ts_c_20_2": {
|
|
4390
|
+
"label": "ts c 20 2",
|
|
4391
|
+
"table": "ts_c_20_2",
|
|
4392
|
+
"key_field": "sys_id",
|
|
4393
|
+
"display_field": "sys_id",
|
|
4394
|
+
"required_fields": [],
|
|
4395
|
+
"common_fields": [
|
|
4396
|
+
"word",
|
|
4397
|
+
"total_weight",
|
|
4398
|
+
"positions",
|
|
4399
|
+
"document_number"
|
|
4400
|
+
],
|
|
4401
|
+
"operations": [
|
|
4402
|
+
"create",
|
|
4403
|
+
"read",
|
|
4404
|
+
"update",
|
|
4405
|
+
"list",
|
|
4406
|
+
"search"
|
|
4407
|
+
],
|
|
4408
|
+
"discovered": true
|
|
4409
|
+
},
|
|
4410
|
+
"bsm_edge_color": {
|
|
4411
|
+
"label": "bsm edge color",
|
|
4412
|
+
"table": "bsm_edge_color",
|
|
4413
|
+
"key_field": "sys_id",
|
|
4414
|
+
"display_field": "sys_id",
|
|
4415
|
+
"required_fields": [],
|
|
4416
|
+
"common_fields": [
|
|
4417
|
+
"sys_updated_on",
|
|
4418
|
+
"relationship_type",
|
|
4419
|
+
"sys_mod_count",
|
|
4420
|
+
"sys_updated_by",
|
|
4421
|
+
"color",
|
|
4422
|
+
"sys_created_on",
|
|
4423
|
+
"sys_created_by"
|
|
4424
|
+
],
|
|
4425
|
+
"operations": [
|
|
4426
|
+
"create",
|
|
4427
|
+
"read",
|
|
4428
|
+
"update",
|
|
4429
|
+
"list",
|
|
4430
|
+
"search"
|
|
4431
|
+
],
|
|
4432
|
+
"discovered": true
|
|
4433
|
+
},
|
|
4434
|
+
"ngbsm_filter": {
|
|
4435
|
+
"label": "ngbsm filter",
|
|
4436
|
+
"table": "ngbsm_filter",
|
|
4437
|
+
"key_field": "name",
|
|
4438
|
+
"display_field": "name",
|
|
4439
|
+
"required_fields": [],
|
|
4440
|
+
"common_fields": [
|
|
4441
|
+
"user",
|
|
4442
|
+
"sys_mod_count",
|
|
4443
|
+
"sys_updated_by",
|
|
4444
|
+
"name",
|
|
4445
|
+
"sys_created_on",
|
|
4446
|
+
"filter",
|
|
4447
|
+
"sys_created_by",
|
|
4448
|
+
"sys_updated_on"
|
|
4449
|
+
],
|
|
4450
|
+
"operations": [
|
|
4451
|
+
"create",
|
|
4452
|
+
"read",
|
|
4453
|
+
"update",
|
|
4454
|
+
"list",
|
|
4455
|
+
"search"
|
|
4456
|
+
],
|
|
4457
|
+
"discovered": true
|
|
4458
|
+
},
|
|
4459
|
+
"sn_vsc_first_time_modal_user_preference": {
|
|
4460
|
+
"label": "sn vsc first time modal user preference",
|
|
4461
|
+
"table": "sn_vsc_first_time_modal_user_preference",
|
|
4462
|
+
"key_field": "sys_id",
|
|
4463
|
+
"display_field": "sys_id",
|
|
4464
|
+
"required_fields": [],
|
|
4465
|
+
"common_fields": [
|
|
4466
|
+
"modal_last_shown",
|
|
4467
|
+
"show_modal",
|
|
4468
|
+
"sys_mod_count",
|
|
4469
|
+
"sys_updated_by",
|
|
4470
|
+
"tool_last_access",
|
|
4471
|
+
"sys_created_on",
|
|
4472
|
+
"tool_name",
|
|
4473
|
+
"sys_created_by",
|
|
4474
|
+
"user",
|
|
4475
|
+
"sys_updated_on"
|
|
4476
|
+
],
|
|
4477
|
+
"operations": [
|
|
4478
|
+
"create",
|
|
4479
|
+
"read",
|
|
4480
|
+
"update",
|
|
4481
|
+
"list",
|
|
4482
|
+
"search"
|
|
4483
|
+
],
|
|
4484
|
+
"discovered": true
|
|
4485
|
+
},
|
|
4486
|
+
"m2m_kb_task": {
|
|
4487
|
+
"label": "m2m kb task",
|
|
4488
|
+
"table": "m2m_kb_task",
|
|
4489
|
+
"key_field": "sys_id",
|
|
4490
|
+
"display_field": "sys_id",
|
|
4491
|
+
"required_fields": [],
|
|
4492
|
+
"common_fields": [
|
|
4493
|
+
"sys_updated_on",
|
|
4494
|
+
"kb_knowledge",
|
|
4495
|
+
"sys_mod_count",
|
|
4496
|
+
"sys_updated_by",
|
|
4497
|
+
"task",
|
|
4498
|
+
"sys_created_on",
|
|
4499
|
+
"sys_created_by"
|
|
4500
|
+
],
|
|
4501
|
+
"operations": [
|
|
4502
|
+
"create",
|
|
4503
|
+
"read",
|
|
4504
|
+
"update",
|
|
4505
|
+
"list",
|
|
4506
|
+
"search"
|
|
4507
|
+
],
|
|
4508
|
+
"discovered": true
|
|
4509
|
+
},
|
|
4510
|
+
"sn_aisearch_global_job_ingest_history": {
|
|
4511
|
+
"label": "sn aisearch global job ingest history",
|
|
4512
|
+
"table": "sn_aisearch_global_job_ingest_history",
|
|
4513
|
+
"key_field": "sys_id",
|
|
4514
|
+
"display_field": "sys_id",
|
|
4515
|
+
"required_fields": [],
|
|
4516
|
+
"common_fields": [
|
|
4517
|
+
"sn_aisearch_global_migration_job",
|
|
4518
|
+
"sys_updated_on",
|
|
4519
|
+
"percent_complete",
|
|
4520
|
+
"sys_mod_count",
|
|
4521
|
+
"sys_updated_by",
|
|
4522
|
+
"total_record_count",
|
|
4523
|
+
"sys_created_on",
|
|
4524
|
+
"ais_ingest_datasource_stats",
|
|
4525
|
+
"sys_created_by"
|
|
4526
|
+
],
|
|
4527
|
+
"operations": [
|
|
4528
|
+
"create",
|
|
4529
|
+
"read",
|
|
4530
|
+
"update",
|
|
4531
|
+
"list",
|
|
4532
|
+
"search"
|
|
4533
|
+
],
|
|
4534
|
+
"discovered": true
|
|
4535
|
+
},
|
|
4536
|
+
"promin_view_field_config": {
|
|
4537
|
+
"label": "promin view field config",
|
|
4538
|
+
"table": "promin_view_field_config",
|
|
4539
|
+
"key_field": "sys_id",
|
|
4540
|
+
"display_field": "sys_id",
|
|
4541
|
+
"required_fields": [
|
|
4542
|
+
"field",
|
|
4543
|
+
"view",
|
|
4544
|
+
"process_def"
|
|
4545
|
+
],
|
|
4546
|
+
"common_fields": [
|
|
4547
|
+
"sys_updated_on",
|
|
4548
|
+
"sys_mod_count",
|
|
4549
|
+
"sys_updated_by",
|
|
4550
|
+
"sys_domain",
|
|
4551
|
+
"sys_created_on",
|
|
4552
|
+
"include_in_new_project",
|
|
4553
|
+
"sys_created_by",
|
|
4554
|
+
"grouped"
|
|
4555
|
+
],
|
|
4556
|
+
"operations": [
|
|
4557
|
+
"create",
|
|
4558
|
+
"read",
|
|
4559
|
+
"update",
|
|
4560
|
+
"list",
|
|
4561
|
+
"search"
|
|
4562
|
+
],
|
|
4563
|
+
"discovered": true
|
|
4564
|
+
},
|
|
4565
|
+
"ts_deleted_doc": {
|
|
4566
|
+
"label": "ts deleted doc",
|
|
4567
|
+
"table": "ts_deleted_doc",
|
|
4568
|
+
"key_field": "number",
|
|
4569
|
+
"display_field": "number",
|
|
4570
|
+
"required_fields": [],
|
|
4571
|
+
"common_fields": [
|
|
4572
|
+
"table",
|
|
4573
|
+
"shard",
|
|
4574
|
+
"number"
|
|
4575
|
+
],
|
|
4576
|
+
"operations": [
|
|
4577
|
+
"create",
|
|
4578
|
+
"read",
|
|
4579
|
+
"update",
|
|
4580
|
+
"list",
|
|
4581
|
+
"search"
|
|
4582
|
+
],
|
|
4583
|
+
"discovered": true
|
|
4584
|
+
},
|
|
4585
|
+
"subscription_has_app": {
|
|
4586
|
+
"label": "subscription has app",
|
|
4587
|
+
"table": "subscription_has_app",
|
|
4588
|
+
"key_field": "sys_id",
|
|
4589
|
+
"display_field": "sys_id",
|
|
4590
|
+
"required_fields": [],
|
|
4591
|
+
"common_fields": [
|
|
4592
|
+
"sys_updated_on",
|
|
4593
|
+
"application",
|
|
4594
|
+
"sys_mod_count",
|
|
4595
|
+
"sys_updated_by",
|
|
4596
|
+
"subscription",
|
|
4597
|
+
"sys_created_on",
|
|
4598
|
+
"sys_created_by"
|
|
4599
|
+
],
|
|
4600
|
+
"operations": [
|
|
4601
|
+
"create",
|
|
4602
|
+
"read",
|
|
4603
|
+
"update",
|
|
4604
|
+
"list",
|
|
4605
|
+
"search"
|
|
4606
|
+
],
|
|
4607
|
+
"discovered": true
|
|
4608
|
+
},
|
|
4609
|
+
"v_user_rotation": {
|
|
4610
|
+
"label": "v user rotation",
|
|
4611
|
+
"table": "v_user_rotation",
|
|
4612
|
+
"key_field": "sys_id",
|
|
4613
|
+
"display_field": "sys_id",
|
|
4614
|
+
"required_fields": [],
|
|
4615
|
+
"common_fields": [
|
|
4616
|
+
"roster",
|
|
4617
|
+
"sys_mod_count",
|
|
4618
|
+
"sys_updated_by",
|
|
4619
|
+
"type",
|
|
4620
|
+
"rota",
|
|
4621
|
+
"sys_created_on",
|
|
4622
|
+
"user",
|
|
4623
|
+
"current_user_id",
|
|
4624
|
+
"sys_created_by",
|
|
4625
|
+
"end_date_time"
|
|
4626
|
+
],
|
|
4627
|
+
"operations": [
|
|
4628
|
+
"create",
|
|
4629
|
+
"read",
|
|
4630
|
+
"update",
|
|
4631
|
+
"list",
|
|
4632
|
+
"search"
|
|
4633
|
+
],
|
|
4634
|
+
"discovered": true
|
|
4635
|
+
},
|
|
4636
|
+
"iamsync_message": {
|
|
4637
|
+
"label": "iamsync message",
|
|
4638
|
+
"table": "iamsync_message",
|
|
4639
|
+
"key_field": "sys_id",
|
|
4640
|
+
"display_field": "sys_id",
|
|
4641
|
+
"required_fields": [
|
|
4642
|
+
"subject"
|
|
4643
|
+
],
|
|
4644
|
+
"common_fields": [
|
|
4645
|
+
"channel",
|
|
4646
|
+
"sys_created_on",
|
|
4647
|
+
"state",
|
|
4648
|
+
"sys_created_by",
|
|
4649
|
+
"queue_expiration",
|
|
4650
|
+
"sys_updated_on",
|
|
4651
|
+
"claimed",
|
|
4652
|
+
"sys_mod_count",
|
|
4653
|
+
"sys_updated_by",
|
|
4654
|
+
"nack_count"
|
|
4655
|
+
],
|
|
4656
|
+
"operations": [
|
|
4657
|
+
"create",
|
|
4658
|
+
"read",
|
|
4659
|
+
"update",
|
|
4660
|
+
"list",
|
|
4661
|
+
"search"
|
|
4662
|
+
],
|
|
4663
|
+
"discovered": true
|
|
4664
|
+
},
|
|
4665
|
+
"sn_cmdb_ws_insight_data": {
|
|
4666
|
+
"label": "sn cmdb ws insight data",
|
|
4667
|
+
"table": "sn_cmdb_ws_insight_data",
|
|
4668
|
+
"key_field": "sys_id",
|
|
4669
|
+
"display_field": "sys_id",
|
|
4670
|
+
"required_fields": [
|
|
4671
|
+
"count",
|
|
4672
|
+
"cloud_provider",
|
|
4673
|
+
"ci_category"
|
|
4674
|
+
],
|
|
4675
|
+
"common_fields": [
|
|
4676
|
+
"sys_created_on",
|
|
4677
|
+
"sys_created_by",
|
|
4678
|
+
"sys_updated_on",
|
|
4679
|
+
"sys_mod_count",
|
|
4680
|
+
"sys_updated_by",
|
|
4681
|
+
"state"
|
|
4682
|
+
],
|
|
4683
|
+
"operations": [
|
|
4684
|
+
"create",
|
|
4685
|
+
"read",
|
|
4686
|
+
"update",
|
|
4687
|
+
"list",
|
|
4688
|
+
"search"
|
|
4689
|
+
],
|
|
4690
|
+
"discovered": true
|
|
4691
|
+
}
|
|
4692
|
+
}
|
|
4693
|
+
}
|