---
title: "Explain JSON Structures"  
description: "Explain JSON Structures"  
author: "AVADHESH PATEL"  
published: 2013-06-06  
updated: 2020-09-15  
canonical: https://www.mindstick.com/interview/1757/explain-json-structures  
category: "json"  
tags: ["json"]  
reading_time: 1 minute  

---

# Explain JSON Structures

A collection of name/value pairs \
\
In various languages, this is realized as an object, record, struct, dictionary, hash table, keyed list, or associative array\
An ordered list of values In most languages, this is realized as an array, vector, list, or sequence\
**These are universal data structures supported**\
A JSON object is an unordered set of name/value pairs\
A JSON object begins with { (left brace) and ends with } (right brace)\
Each name is followed by : (colon) and the name/value pairs are separated by , (comma)

## Answers

### Answer by AVADHESH PATEL

A collection of name/value pairs \
\
In various languages, this is realized as an object, record, struct, dictionary, hash table, keyed list, or associative array\
An ordered list of values In most languages, this is realized as an array, vector, list, or sequence\
**These are universal data structures supported**\
A JSON object is an unordered set of name/value pairs\
A JSON object begins with { (left brace) and ends with } (right brace)\
Each name is followed by : (colon) and the name/value pairs are separated by , (comma)


---

Original Source: https://www.mindstick.com/interview/1757/explain-json-structures

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
