CiscoCisco
200-301 · Question #1340
200-301 Question #1340: Real Exam Question with Answer & Explanation
The correct answer is A: object. In a typical JSON schema, 'object' often defines the type of a JSON structure, indicating it is a collection of key-value pairs.
Submitted by chen.hong· Mar 30, 2026Automation and Programmability
Question
What is represented in line 2 within this JSON schema?
Options
- Aobject
- Bvalue
- Ckey
- Darray
Explanation
In a typical JSON schema, 'object' often defines the type of a JSON structure, indicating it is a collection of key-value pairs.
Common mistakes.
- B. A value is the data associated with a key, not the type definition itself.
- C. A key is the string label for a field in an object, not a type descriptor for the entire structure.
- D. An array is an ordered list of values, which would be specified by
type: arrayin a JSON schema, notobject.
Concept tested. JSON schema object type identification
Reference. https://json-schema.org/understanding-json-schema/reference/object
Topics
#JSON schema#JSON syntax#Data structures
Community Discussion
No community discussion yet for this question.