CiscoCisco
200-301 · Question #1349
200-301 Question #1349: Real Exam Question with Answer & Explanation
The correct answer is B: key. In a JSON object, 'firewall' would function as a key, which is a string that uniquely identifies a specific property or a nested structure.
Submitted by devops_kid· Mar 5, 2026Automation and Programmability
Question
What is represented by the word "firewall" within this JSON schema?
Options
- Avalue
- Bkey
- Cobject
- Darray
Explanation
In a JSON object, 'firewall' would function as a key, which is a string that uniquely identifies a specific property or a nested structure.
Common mistakes.
- A. A value is the data associated with a key, such as a string, number, boolean, object, or array, located on the right side of a colon.
- C. An object is a collection of key-value pairs enclosed in curly braces
{}, not a single string like 'firewall'. - D. An array is an ordered list of values enclosed in square brackets
[], which 'firewall' is not.
Concept tested. JSON key identification
Reference. https://www.json.org/json-en.html
Topics
#JSON schema#JSON syntax
Community Discussion
No community discussion yet for this question.