This section provides various data samples that can be used for reference or as examples. Whether you're looking for JSON, XML, or CSV formats, we've got you covered.

Sample Formats

  • JSON Format

    • Example of a JSON data structure.
  • XML Format

    • Example of an XML data structure.
  • CSV Format

    • Example of a CSV file.

JSON Sample

{
  "users": [
    {
      "id": 1,
      "name": "John Doe",
      "email": "john.doe@example.com"
    },
    {
      "id": 2,
      "name": "Jane Smith",
      "email": "jane.smith@example.com"
    }
  ]
}

XML Sample

<data>
  <users>
    <user>
      <id>1</id>
      <name>John Doe</name>
      <email>john.doe@example.com</email>
    </user>
    <user>
      <id>2</id>
      <name>Jane Smith</name>
      <email>jane.smith@example.com</email>
    </user>
  </users>
</data>

CSV Sample

id,name,email
1,John Doe,john.doe@example.com
2,Jane Smith,jane.smith@example.com

For more information and additional resources, please visit our Data Formats Guide.


Here is an image of a data visualization:

Data Visualization