# Variety

### Variety <a href="#variety" id="variety"></a>

#### Types of Data <a href="#types-of-data-2" id="types-of-data-2"></a>

**By Source**

* Social Media (YT, FB, LinkedIn, Twitter...)
* IoT (Sensors, Cameras..)
* Stock Market, Smart Cars, Smart gadgets

**By Data format**

* Structured Data (rows/columns CSV,Excel)
* Semi-Structured Data (JSON / XML)
* Unstructured Data (Video, Audio, Document, Email)

### Format of Data

**Structured Data**

| ID  | Name           | Join Date  |
| --- | -------------- | ---------- |
| 101 | Rachel Green   | 2020-05-01 |
| 201 | Joey Tribianni | 1998-07-05 |
| 301 | Monica Geller  | 1999-12-14 |
| 401 | Cosmo Kramer   | 2001-06-05 |

#### **Semi-Structred Data** <a href="#format-of-data" id="format-of-data"></a>

**JSON**

```
[
   {
      "id":1,
      "name":"Rachel Green",
      "gender":"F",
      "series":"Friends"
   },
   {
      "id":"2",
      "name":"Sheldon Cooper",
      "gender":"M",
      "series":"BBT"
   }
]

```

**XML**

```
<?xml version="1.0" encoding="UTF-8"?>
<actors>
   <actor>
      <id>1</id>
      <name>Rachel Green</name>
      <gender>F</gender>
      <series>Friends</series>
   </actor>

   <actor>
      <id>2</id>
      <name>Sheldon Cooper</name>
      <gender>M</gender>
      <series>BBT</series>
   </actor>
</actors>
```

### UnStructured Data

Images, Video, Audio, Email, Log files, Web Scraping

```
Rachel Green acted in Friends series. Her role is very popular. 
Similarly Sheldon Cooper acted in BBT. He acted as nerd physicist.
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://gchandra.gitbook.io/big-data-and-tools-with-nosql/big-data-overview/the-big-4-vs/variety.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
