Skip to content
Novus Examples

Data

Data files are where parsers quietly break, so this category leans into the edge cases. The CSV set runs from clean to deliberately messy — quoted commas, embedded newlines, ragged rows, semicolon and tab delimiters, a headerless file, a ten-thousand-row file, and a Latin-1 encoded file. JSON comes flat, deeply nested, as JSON Lines, and intentionally invalid for error-handling tests. There's XML, YAML, and a real SQLite database with related tables, plus faker-generated user and order datasets with documented schemas. Each file spells out its exact quirks in the spec, so when your importer chokes you know precisely which case did it.

CSV

csv
453 B

Headerless CSV

A CSV with no header row — for testing parsers that must infer or be told the column names.

Api

Feeds

atom
580 B

Atom Feed

A well-formed Atom feed with multiple entries — for testing feed readers and parsers.

rss
699 B

RSS 2.0 Feed

A well-formed RSS 2.0 feed with a channel and multiple items — for testing feed readers and parsers.

Binary

dbf
761 B

DBF — dBase / xBase Table

The employee table as a dBase (DBF) file — the venerable xBase table format still emitted by GIS tools and legacy databases. For testing DBF readers and DBF→CSV conversion.

JSON

json
872 B

Deeply Nested JSON

A deeply nested JSON document with objects inside arrays inside objects — for testing recursive parsing and path access.

Config

Diagrams

Ecommerce

Fake Datasets

Healthcare

json
3.4 KB

FHIR R4 Patient Bundle (JSON)

A sample HL7 FHIR R4 bundle with a Patient plus vital-sign Observations, an Encounter, and a Condition — a realistic healthcare-interoperability fixture for testing FHIR parsers and mappers. Synthetic data, not a real person.

Geospatial

gpx
495 B

GPX Track

A GPX track with timestamped trackpoints and elevation — for testing route parsers and mapping tools.

kml
364 B

KML Places

A KML document with named placemarks — for testing Google Earth / mapping importers.

Calendar Contacts

Iot

Logs

log
398 B

Nginx Access Log

An nginx combined-format access log with several requests, including a 403 and a 404 — for testing log parsers.

Notebooks

Large

Sql

sql
364 B

MySQL SQL Dump

A MySQL-flavour SQL dump with backtick-quoted identifiers and engine options — for testing SQL importers.

sql
276 B

Postgres SQL Dump

A Postgres-flavour SQL dump with a CREATE TABLE and INSERT statements — for testing SQL importers and migrations.

Schema

Security

jwt
354 B

Sample JWT (HS256)

A sample JSON Web Token (JWT) signed with HS256 using a published example secret — verifiable but powerless — for testing JWT decoders and validators. Sample only, never for production. Paired with its decoded claims.

Database

sqlite
12 KB

Sample SQLite Database

A real SQLite database with two related tables — users and orders joined by a foreign key — for testing database importers and SQL tooling.

XML

xml
344 B

Sample XML

A well-formed XML catalogue with nested elements and attributes — for testing XML parsers and XPath queries.

YAML

yaml
242 B

Sample YAML

A YAML configuration file with nested mappings, sequences, inline lists, and comments — for testing YAML parsers.

Finance