{
    "CNY": {
        "name": "Yuan or chinese renminbi",
        "iso": {
            "code": "CNY",
            "number": "156"
        },
        "units": {
            "major": {
                "name": "yuan",
                "symbol": "¥"
            },
            // There are acutally two minor values for 1 yuan
            // 1 yuan = 10 jiao
            // 1 yuan = 100 fen
            // So, there must be some solution to reflect this
            // As this means, values in yuan are normally written with 2 decimal digits, fen as the minor value should be preferred
            "minor": {
                "name": "fēn",
                "symbol": "分",
                "majorValue": 0.01
            },
            "minor2": {
                "name": "jiǎo",
                "symbol": "角",
                "majorValue": 0.1
            },
        },
        "banknotes": {
            "frequent": [
                "¥1",
                "¥5",
                "¥10",
                "¥20",
                "¥50",
                "¥100"
            ],
            "rare": [
                "分1",
                "分2",
                "分5",
                "角1",
                "角2",
                "角5",
                "¥2"
            ]
        },
        "coins": {
            "frequent": [
                "分1",
                "分2",
                "分5",
                "角1",
                "角5",
                "¥1"
            ],
            "rare": [
            ]
        }
    }
}
