Skip to content
Novus Examples
json7.9 KB

Flight Schedule (JSON, 30 records)

The flight schedule as a JSON array — the format twin of the CSV, for import and display tests.

Preview — first 50 linesjson
[
  {
    "flight_no": "EX623",
    "airline": "Example Airways",
    "origin": "ORD",
    "destination": "LAX",
    "departure": "2026-02-01T20:53:00",
    "arrival": "2026-02-02T04:43:00",
    "aircraft": "A320",
    "gate": "B27",
    "status": "delayed"
  },
  {
    "flight_no": "DM837",
    "airline": "Demo Wings",
    "origin": "DXB",
    "destination": "LAX",
    "departure": "2026-02-01T07:21:00",
    "arrival": "2026-02-01T12:24:00",
    "aircraft": "A350-900",
    "gate": "E9",
    "status": "departed"
  },
  {
    "flight_no": "EX785",
    "airline": "Example Airways",
    "origin": "LHR",
    "destination": "LAX",
    "departure": "2026-02-01T13:36:00",
    "arrival": "2026-02-01T21:35:00",
    "aircraft": "E190",
    "gate": "F6",
    "status": "scheduled"
  },
  {
    "flight_no": "SM303",
    "airline": "Sample Jet",
    "origin": "SIN",
    "destination": "DXB",
    "departure": "2026-02-01T23:33:00",
    "arrival": "2026-02-02T09:41:00",
    "aircraft": "E190",
    "gate": "D17",
    "status": "landed"
  },
  {
    "flight_no": "SM486",
    "airline": "Sample Jet",
    "origin": "DXB",
    "destination": "LAX",
333 lines total — download for the full file.

Specifications

Records
30
Schema
flight_no, airline, origin, destination, departure, arrival, aircraft, gate, status
Domain
travel

What is a .json file?

JSON (JavaScript Object Notation) is a lightweight, text-based data-interchange format representing objects, arrays, strings, numbers, booleans, and null. It is language-independent, human-readable, and the dominant format for web APIs and configuration. It requires a single well-formed root value.

How to use this file

Use an example JSON file to test parsers and serializers, schema validation, Unicode and number-precision handling, and API request or response processing.

Code examples

import json

with open("flights.json") as f:
    data = json.load(f)
print(type(data), len(data))

Generated by generation/data_domains.py. Free for any use, no attribution required — license.