{"id":37055703,"url":"https://github.com/vsavik/jsondyno","last_synced_at":"2026-01-14T06:17:24.577Z","repository":{"id":249397740,"uuid":"736681097","full_name":"vsavik/jsondyno","owner":"vsavik","description":"Jsondyno is a C# library that leverages the dynamic keyword to provide intuitive and flexible access to JSON object properties.","archived":false,"fork":false,"pushed_at":"2024-10-21T22:07:05.000Z","size":232,"stargazers_count":8,"open_issues_count":7,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-05T22:10:03.538Z","etag":null,"topics":["dynamic","json","serialization"],"latest_commit_sha":null,"homepage":"https://github.com/vsavik/jsondyno","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/vsavik.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":".github/CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":".github/SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-12-28T15:11:35.000Z","updated_at":"2025-07-30T16:58:04.000Z","dependencies_parsed_at":"2024-08-17T11:44:34.610Z","dependency_job_id":null,"html_url":"https://github.com/vsavik/jsondyno","commit_stats":null,"previous_names":["vsavik/jsondyno"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/vsavik/jsondyno","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vsavik%2Fjsondyno","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vsavik%2Fjsondyno/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vsavik%2Fjsondyno/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vsavik%2Fjsondyno/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/vsavik","download_url":"https://codeload.github.com/vsavik/jsondyno/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vsavik%2Fjsondyno/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28412193,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-14T05:26:33.345Z","status":"ssl_error","status_checked_at":"2026-01-14T05:21:57.251Z","response_time":107,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["dynamic","json","serialization"],"created_at":"2026-01-14T06:17:23.881Z","updated_at":"2026-01-14T06:17:24.568Z","avatar_url":"https://github.com/vsavik.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Jsondyno\n\nJsondyno is a C# library that allows you to use the `dynamic` keyword to access JSON object properties without model classes.\n\n## Quick start\n\nInstall [NuGet](https://www.nuget.org/packages/Jsondyno) package and add `DynamicObjectJsonConverter` to [`JsonSerializerOptions`](https://learn.microsoft.com/en-us/dotnet/api/system.text.json.jsonserializeroptions) instance:\n\n```csharp\nusing Jsondyno;\n\nvar opts = new JsonSerializerOptions\n{\n    Converters = { new DynamicObjectJsonConverter() }\n};\n\nstring json = \"\"\"\n    {\n        \"MyProperty\": 11\n    }\n    \"\"\";\n\ndynamic obj = JsonSerializer.Deserialize\u003cdynamic\u003e(json, opts)!;\nint myProperty = obj.MyProperty;\n\nConsole.WriteLine(myProperty); // Output: 11\n```\n\n*Jsondyno* uses [`System.Text.Json`](https://learn.microsoft.com/en-us/dotnet/api/system.text.json) library to parse JSON, so `dynamic` object property name conversion fully satisfy configuration settings:\n\n- [JsonSerializerOptions.PropertyNamingPolicy](https://learn.microsoft.com/en-us/dotnet/api/system.text.json.jsonserializeroptions.propertynamingpolicy)\n- [JsonSerializerOptions.PropertyNameCaseInsensitive](https://learn.microsoft.com/en-us/dotnet/api/system.text.json.jsonserializeroptions.propertynamecaseinsensitive)\n\nMore usage topic can be found [here](./docs/Usage.md).\n\n## Documentation\n\n- [How to use *Jsondyno*](./docs/Usage.md)\n- [Advanced - *Jsondyno* internals](./docs/Advanced.md)\n- [Benchmarks](./docs/Benchmarks.md)\n- [Development Guides](./docs/Development.md)\n\n## Contributing\n\nWhen contributing to the *Jsondyno* repo, please first discuss the change you wish to make via issue, email, or any other method with the owners of this repository before making a change.\n\nPlease note the [code of conduct](.github/CODE_OF_CONDUCT.md), please follow it in all your interactions with the project.\n\nHow to deal with security issues check security [page](.github/SECURITY.md).\n\n## License\n\nJsondyno is licensed under the [MIT](LICENSE) license.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvsavik%2Fjsondyno","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvsavik%2Fjsondyno","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvsavik%2Fjsondyno/lists"}