josdejong / tabular-json

Tabular-JSON: A superset of JSON adding CSV-like tables

Home Page:https://tabular-json.org

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Tabular-JSON: JSON with tables

Tabular-JSON is:

  • a replacement for CSV without its ambiguities and limitation to tabular data structures
  • a replacement for JSON without its verbosity
  • a replacement for NDJSON without its verbosity

Learn more:

Here an example of Tabular-JSON:

{
  name: rob,
  hobbies: [
    swimming,
    biking
  ],
  friends: ---
    id, name,  address.city, address.street
    2,  joe,   New York,     "1st Ave"
    3,  sarah, Washington,   "18th Street NW"
  ---,
  address: {
    city: New York,
    street: "1st Ave"
  }
}

About

Tabular-JSON: A superset of JSON adding CSV-like tables

https://tabular-json.org

License:MIT License


Languages

Language:TypeScript 51.4%Language:Astro 17.4%Language:Svelte 16.3%Language:PEG.js 10.3%Language:JavaScript 4.5%