{"id":16318373,"url":"https://github.com/andude10/parse-json","last_synced_at":"2025-05-13T17:40:26.791Z","repository":{"id":242291922,"uuid":"802576651","full_name":"andude10/parse-json","owner":"andude10","description":"Json parser written in haskell","archived":false,"fork":false,"pushed_at":"2024-06-02T00:12:56.000Z","size":40,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-02-16T20:37:38.077Z","etag":null,"topics":["haskell-learning","json-parser"],"latest_commit_sha":null,"homepage":"","language":"Haskell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/andude10.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-05-18T17:25:37.000Z","updated_at":"2024-06-02T00:12:59.000Z","dependencies_parsed_at":"2024-06-02T01:24:50.423Z","dependency_job_id":"1ec0e141-4baf-4664-93e5-a1955a813462","html_url":"https://github.com/andude10/parse-json","commit_stats":null,"previous_names":["andude10/parse-json"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andude10%2Fparse-json","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andude10%2Fparse-json/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andude10%2Fparse-json/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andude10%2Fparse-json/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/andude10","download_url":"https://codeload.github.com/andude10/parse-json/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253996261,"owners_count":21996680,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["haskell-learning","json-parser"],"created_at":"2024-10-10T22:23:19.983Z","updated_at":"2025-05-13T17:40:26.727Z","avatar_url":"https://github.com/andude10.png","language":"Haskell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# parse-json\n\nThis is a simple JSON parser implemented in Haskell.\n\n- `src/Lexical.hs` Module for lexical analysis (turning a raw content into tokens for further parsing) \n- `src/Parse.hs` Module for parsing and API\n\nYou can run `app/Main.hs` to test it in console:\n\n```\n\u003e\u003e stack build\n\u003e\u003e stack exec parse-json-exe\nPlease provide filename:\nexample.json\nParse result: \n[\n    JsonObject [(\"first_name\", [JsonString \"John\"])],\n    JsonObject [(\"last_name\", [JsonString \"Smith\"])],\n    JsonObject [(\"is_alive\", [JsonBool True])],\n    JsonObject [(\"age\", [JsonNumber 27.0])],\n    JsonObject [\n        (\"address\", [\n            JsonObject [(\"street_address\", [JsonString \"21 2nd Street\"])],\n            JsonObject [(\"city\", [JsonString \"New York\"])],\n            JsonObject [(\"state\", [JsonString \"NY\"])],\n            JsonObject [(\"postal_code\", [JsonString \"10021-3100\"])]\n        ])\n    ],\n    JsonObject [\n        (\"phone_numbers\", [\n            JsonObject [(\"type\", [JsonString \"home\"])],\n            JsonObject [(\"number\", [JsonString \"212 555-1234\"])],\n            JsonObject [(\"type\", [JsonString \"office\"])],\n            JsonObject [(\"number\", [JsonString \"646 555-4567\"])]\n        ])\n    ],\n    JsonObject [(\"children\", [JsonString \"Catherine\", JsonString \"Thomas\", JsonString \"Trevor\"])],\n    JsonObject [(\"spouse\", [JsonNull])]\n]\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fandude10%2Fparse-json","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fandude10%2Fparse-json","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fandude10%2Fparse-json/lists"}