joseluisq / json-datasets

Example of various datasets in JSON format for different purposes.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

JSON Datasets 🌎

Example of various datasets in JSON format for different purposes.

Programming languages

1. Programming languages and their keywords

JSON file of programming languages and their keywords. Additionally, it contains a summary and extensions fields. Originally adapted from https://github.com/leighmcculloch/keywords.

File: programming_languages_keywords.json

Structure:

{
    "name": "Rust",
    "version": 1.31,
    "summary": "A programming language that empowers everyone to build reliable and efficient software.",
    "extensions": [
        "rs",
        "rlib"
    ],
    "keywords": [ "trait", "impl", "struct", "pub", "let" ],
    "sources": [
        "https://doc.rust-lang.org/grammar.html#keywords"
    ]
}

Operating systems

1. Mac OS X releases

A data set containing generic information about Mac OS X releases.

File: macosx_releases.json

Structure:

{
    "name": "macOS Ventura",
    "version": "13.0",
    "darwin": "22.1.0",
    "release_date": "2022-10-24",
    "architectures": [
        "x86_64",
        "arm64"
    ]
}

Currencies

1. Current JSON list of all currency symbols

Current JSON list of all currency symbols from the Currency Code Services – ISO 4217 / Currency & funds code list

File: currencies_medium.json

Structure:

{
    "country_name": "PERU",
    "currency_name": "Sol",
    "currency_iso_code": "PEN",
    "currency_number": "604",
    "currency_mnr_unts": "2"
},

2. Simple current JSON list of currency symbols

Current JSON list of all currency symbols from the Open Exchange Rates API.

File: currencies_simple.json

Structure:

{
    "EUR": "Euro",
    "FJD": "Fijian Dollar",
    "FKP": "Falkland Islands Pound",
    "GBP": "British Pound Sterling",
    "GEL": "Georgian Lari",
},

3. Historic denominations of currencies

Historic denominations of currencies and funds by Currency Code Services – ISO 4217

File: currencies_historical.json

Structure:

{
    "country_name": "GERMANY",
    "currency_name": "Deutsche Mark",
    "currency_iso_code": "DEM",
    "currency_number": "276",
    "currency_wthdrwl_dt": "2002-03"
},

4. Currency JSON list with symbols

Currency JSON list with symbols per ISO code.

File: currencies_symbols.json

Structure:

{
    "EUR": {
        "symbol": "",
        "name": "Euro",
        "symbol_native": "",
        "decimal_digits": 2,
        "rounding": 0,
        "iso_code": "EUR",
        "name_plural": "euros"
    },
}

Contributions

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in current work by you, as defined in the Apache-2.0 license, shall be dual licensed as described below, without any additional terms or conditions.

Feel free to send some Pull request or issue.

License

This work is primarily distributed under the terms of both the MIT license and the Apache License (Version 2.0).

© 2020-present Jose Quintana

About

Example of various datasets in JSON format for different purposes.

License:Apache License 2.0