ServiceNow Certified Implementation Specialist – Event Management — Question 99
The additional information field is a JSON string that gives more information about an event. An example of a supported JSON string is:
Answer options
- A. {"CPU":100}
- B. {"CPU":100,’Status":3}
- C. {"CPU":"100","Status":3}
- D. {"CPU":"100"}
Correct answer: D
Explanation
The correct option D is valid because it uses proper JSON format with double quotes for keys and string values. Option A is also valid but does not provide additional information. Option B has a syntax error with the use of a single quote. Option C incorrectly uses a number as a string for 'CPU', which is not necessary in this context.