{"id":19592686,"url":"https://github.com/nogic1008/jsonconverters","last_synced_at":"2026-02-27T21:35:13.371Z","repository":{"id":37834664,"uuid":"447816122","full_name":"nogic1008/JsonConverters","owner":"nogic1008","description":"Converters for System.Text.Json","archived":false,"fork":false,"pushed_at":"2025-05-15T23:46:18.000Z","size":249,"stargazers_count":0,"open_issues_count":4,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-11T10:53:45.839Z","etag":null,"topics":["csharp","dotnet","json"],"latest_commit_sha":null,"homepage":"","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/nogic1008.png","metadata":{"files":{"readme":"README.md","changelog":null,"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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2022-01-14T02:19:30.000Z","updated_at":"2025-02-03T23:34:55.000Z","dependencies_parsed_at":"2023-11-17T02:19:37.686Z","dependency_job_id":"cc5a5502-18de-4ef5-b6d6-c0c90ee4d805","html_url":"https://github.com/nogic1008/JsonConverters","commit_stats":{"total_commits":92,"total_committers":2,"mean_commits":46.0,"dds":"0.26086956521739135","last_synced_commit":"9a0e3285052a284d929af0b3104f2b1bfb2f7a34"},"previous_names":[],"tags_count":3,"template":false,"template_full_name":"nogic1008/dotnet-ci-example","purl":"pkg:github/nogic1008/JsonConverters","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nogic1008%2FJsonConverters","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nogic1008%2FJsonConverters/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nogic1008%2FJsonConverters/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nogic1008%2FJsonConverters/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nogic1008","download_url":"https://codeload.github.com/nogic1008/JsonConverters/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nogic1008%2FJsonConverters/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279000693,"owners_count":26082837,"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","status":"online","status_checked_at":"2025-10-08T02:00:06.501Z","response_time":56,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["csharp","dotnet","json"],"created_at":"2024-11-11T08:36:41.701Z","updated_at":"2025-10-08T21:53:47.345Z","avatar_url":"https://github.com/nogic1008.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Nogic.JsonConverters\n\n[![GitHub release (latest by date)](https://img.shields.io/github/v/release/nogic1008/JsonConverters)](https://github.com/nogic1008/JsonConverters/releases)\n[![.NET CI](https://github.com/nogic1008/JsonConverters/actions/workflows/dotnet.yml/badge.svg)](https://github.com/nogic1008/JsonConverters/actions/workflows/dotnet.yml)\n[![codecov](https://codecov.io/gh/nogic1008/JsonConverters/branch/master/graph/badge.svg?token=wkwjZuMLHC)](https://codecov.io/gh/nogic1008/JsonConverters)\n[![CodeFactor](https://www.codefactor.io/repository/github/nogic1008/JsonConverters/badge)](https://www.codefactor.io/repository/github/nogic1008/JsonConverters)\n[![License](https://img.shields.io/github/license/nogic1008/JsonConverters)](LICENSE)\n\nConverters for `System.Text.Json`\n\n## Features\n\n### Converter\n\nFor use, see [Register a custom converter](https://learn.microsoft.com/dotnet/standard/serialization/system-text-json/converters-how-to#register-a-custom-converter).\n\n#### `DateOnlyConverter`, `TimeOnlyConverter`\n\n\u003e [!IMPORTANT]\n\u003e *Obsolete*: Use built-in [`DateOnlyConverter`](https://github.com/dotnet/runtime/blob/v7.0.0/src/libraries/System.Text.Json/src/System/Text/Json/Serialization/Converters/Value/DateOnlyConverter.cs) and [`TimeOnlyConverter`](https://github.com/dotnet/runtime/blob/v7.0.0/src/libraries/System.Text.Json/src/System/Text/Json/Serialization/Converters/Value/TimeOnlyConverter.cs) on `System.Text.Json@7.0.0` (.NET 7.0) or higher.\n\nImplementation of `JsonConverter\u003cDateOnly\u003e` and `JsonConverter\u003cTimeOnly\u003e`.\n\n#### `EnumStringConverterFactory`, `EnumStringConverter\u003cT\u003e`\n\n\u003e [!IMPORTANT]\n\u003e *Obsolete*: Use built-in [`JsonStringEnumMemberNameAttribute`](https://learn.microsoft.com/dotnet/api/system.text.json.serialization.jsonstringenummembernameattribute) on `System.Text.Json@9.0.0` (.NET 9.0) or higher.\n\nImplementation of `JsonConverterFactory` for `enum` that uses `JsonPropertyNameAttribute` and [`EnumMemberAttribute`](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.enummemberattribute)\n\n#### `BlankNullableConverterFactory`, `BlankNullableConverter\u003cT\u003e`\n\nImplementation of `JsonConverterFactory` for `Nullable\u003cT\u003e` that treats `\"\"` as `null`.\n\n### JsonNamingPolicy\n\n\u003e [!IMPORTANT]\n\u003e *Obsolete*: Use built-in [`JsonNamingPolicy`](https://learn.microsoft.com/dotnet/api/system.text.json.jsonnamingpolicy) on `System.Text.Json@8.0.0` (.NET 8.0) or higher.\n\nSee also [Use a custom JSON property naming policy](https://learn.microsoft.com/dotnet/standard/serialization/system-text-json/customize-properties#use-a-custom-json-property-naming-policy).\n\n- `JsonLowerSnakeCaseNamingPolicy`\n  - Convert property name to `snake_case`\n- `JsonUpperSnakeCaseNamingPolicy`\n  - Convert property name to `SNAKE_CASE`\n- `JsonKebabCaseNamingPolicy`\n  - Convert property name to `kebab-case`\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnogic1008%2Fjsonconverters","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnogic1008%2Fjsonconverters","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnogic1008%2Fjsonconverters/lists"}