https://github.com/jsonyte/jsonyte-aspnetcore
ASP.NET Core implementation of the JSON:API specification.
https://github.com/jsonyte/jsonyte-aspnetcore
aspnetcore dotnet json-api
Last synced: 4 days ago
JSON representation
ASP.NET Core implementation of the JSON:API specification.
- Host: GitHub
- URL: https://github.com/jsonyte/jsonyte-aspnetcore
- Owner: jsonyte
- License: mit
- Created: 2021-06-11T00:52:18.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2025-02-28T10:34:41.000Z (11 months ago)
- Last Synced: 2025-08-22T22:20:08.161Z (5 months ago)
- Topics: aspnetcore, dotnet, json-api
- Language: C#
- Homepage:
- Size: 131 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# jsonyte-aspnetcore
[](https://github.com/jsonyte/jsonyte/wiki) [](https://www.nuget.org/packages/Jsonyte.AspNetCore) [](https://github.com/jsonyte/jsonyte/discussions) [](https://github.com/jsonyte/jsonyte-aspnetcore/blob/master/LICENSE)
An ASP.NET Core implementation of the JSON:API specification using Jsonyte and `System.Text.Json`.
## Usage
Install the package from NuGet with `dotnet add package Jsonyte.AspNetCore`.
For your ASP.NET Core application, simply add the following to the startup:
```csharp
public class Startup
{
public void ConfigureServices(IServiceCollection services)
{
services
.AddControllers()
.AddJsonOptions(x => x.JsonSerializerOptions.AddJsonApi());
}
}
```
## Documentation
See the [wiki](https://github.com/jsonyte/jsonyte/wiki) for examples and help using Jsonyte.
## Get in touch
Discuss with us on [Discussions](https://github.com/jsonyte/jsonyte/discussions), or raise an [issue](https://github.com/jsonyte/jsonyte/issues).
[](https://github.com/jsonyte/jsonyte/discussions)
## Contributing
Please read [CONTRIBUTING.md](CONTRIBUTING.md) for details on how to contribute to this project.
## License
Jsonyte is released under the [MIT License](LICENSE)