diff --git a/README.md b/README.md index 20acd0f7d..c896f4dbc 100644 --- a/README.md +++ b/README.md @@ -439,13 +439,13 @@ var schema = generator.Generate("{...}"); ```json { - int: 1, - float: 340282346638528859811704183484516925440.0, - str: "" abc "", - bool: true, - date: "" 2012 - 07 - 19 "", - datetime: "" 2012 - 07 - 19 10: 11: 11 "", - timespan: "" 10: 11: 11 "" + "int": 1, + "float": 340282346638528859811704183484516925440.0, + "str": "abc", + "bool": true, + "date": "2012-07-19", + "datetime": "2012-07-19 10:11:11", + "timespan": "10:11:11" } ``` @@ -498,10 +498,10 @@ var schema = generator.Generate("{...}"); ```json { - int: 12345, - long: 1736347656630, - float: 340282346638528859811704183484516925440.0, - double: 340282346638528859811704183484516925440123456.0, + "int": 12345, + "long": 1736347656630, + "float": 340282346638528859811704183484516925440.0, + "double": 340282346638528859811704183484516925440123456.0, } ```