Baghel.Tip.TransactionStandard.AspNetCore
0.2.1
dotnet add package Baghel.Tip.TransactionStandard.AspNetCore --version 0.2.1
NuGet\Install-Package Baghel.Tip.TransactionStandard.AspNetCore -Version 0.2.1
<PackageReference Include="Baghel.Tip.TransactionStandard.AspNetCore" Version="0.2.1" />
<PackageVersion Include="Baghel.Tip.TransactionStandard.AspNetCore" Version="0.2.1" />
<PackageReference Include="Baghel.Tip.TransactionStandard.AspNetCore" />
paket add Baghel.Tip.TransactionStandard.AspNetCore --version 0.2.1
#r "nuget: Baghel.Tip.TransactionStandard.AspNetCore, 0.2.1"
#:package Baghel.Tip.TransactionStandard.AspNetCore@0.2.1
#addin nuget:?package=Baghel.Tip.TransactionStandard.AspNetCore&version=0.2.1
#tool nuget:?package=Baghel.Tip.TransactionStandard.AspNetCore&version=0.2.1
Tip.TransactionStandard
Tip.TransactionStandard is a contract-first .NET library for the Television Interface Practices Initiative (TIP) APIs, designed for NuGet consumption in both client and server applications.
This rewrite aligns with the TIP OpenAPI definitions from tip-initiative/tip-initiative-apis, with the current implementation focused on the logtimes, commercialInstructions, rfps, proposals, orders, inventoryAvails, invoice, makegoods, creativeAssets, impressionssub, audiences, and sellerPoliticalCompetitive workflows plus the shared common contracts they depend on.
What the package includes
- Strongly typed TIP contracts for shared objects,
logtimes,commercialInstructions,rfps,proposals,orders,inventoryAvails,invoice,makegoods,creativeAssets,impressionssub,audiences, andsellerPoliticalCompetitive - JSON serialization helpers for
application/json - XML serialization helpers for
application/xml - Recursive validation without throwing in property setters
HttpContenthelpers for TIP client integrations- ASP.NET Core registration helpers for server-side content negotiation
- Contract tests against TIP-style JSON, XML, and OpenAPI fixtures
Supported .NET versions
The package targets net8.0.
That is intentional: on April 19, 2026, the actively supported modern .NET trains from Microsoft are .NET 8, .NET 9, and .NET 10, and a net8.0 package is consumable from those supported runtimes while keeping the dependency surface as broad as possible. Source: official .NET support policy.
Current scope
Implemented now:
- Shared TIP common contracts required by
logtimes - Seller
POST /seller/logtimes - Buyer
POST /buyer/logtimes/subscription - Buyer
POST /buyer/commercialInstructions - Seller
POST /seller/commercialInstructions - Buyer
POST /buyer/rfps - Seller
POST /seller/proposals - Buyer
POST /buyer/proposals - Buyer
POST /buyer/orders - Seller
POST /seller/orders - Buyer
POST /buyer/inventoryAvails/subscription - Seller
POST /seller/inventoryAvails - Seller
POST /seller/invoices - Seller
POST /seller/makegood/guidelines - Buyer
POST /buyer/makegood/guidelines - Seller
POST /seller/makegood/offers - Buyer
POST /buyer/makegood/offers - Buyer
POST /buyer/creativeAssets - Buyer
POST /buyer/impressions/subscription - Seller
POST /seller/impressions/notification - Buyer
POST /buyer/audiences/subscription - Seller
POST /seller/audiences - Seller
POST /seller/politicalCompetitive - Shared responses, validation, JSON/XML serializers, ASP.NET Core integration
Planned next:
- More schema fixtures and response coverage
- More package-level compatibility and integration tests
Quick start
using Tip.TransactionStandard.Contracts.LogTimes;
using Tip.TransactionStandard.Serialization;
using Tip.TransactionStandard.Validation;
var request = TipPayloadSerializer.DeserializeJson<SellerLogtimesRequest>(json);
var issues = TipValidator.ValidateObject(request);
if (issues.Count == 0)
{
var xml = TipPayloadSerializer.SerializeXml(request);
}
ASP.NET Core:
builder.Services
.AddControllers()
.AddTipTransactionStandard();
Client usage:
using Tip.TransactionStandard.Http;
var content = TipHttpContent.CreateJson(request);
NuGet packages
Baghel.Tip.TransactionStandardBaghel.Tip.TransactionStandard.AspNetCore
Repository layout
- src/Core/Core.csproj
- src/AspNetCore/Tip.TransactionStandard.AspNetCore.csproj
- src/Test/Test.csproj
- docs/GettingStarted.md
- docs/PackageDesign.md
Build and test
dotnet build src\TIPSolution.sln
dotnet test src\Test\Test.csproj
Reference
- TIP API repository: tip-initiative/tip-initiative-apis
- TIP
v6.0.0,v6.1.0, anddeveloplogtimes,commercialInstructions,rfps,proposals,orders,inventoryAvails,invoice,makegoods,creativeAssets,impressionssub,audiences, andsellerPoliticalCompetitiveexamples and schemas were used as the baseline for the current contract rewrite
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
-
net8.0
- Baghel.Tip.TransactionStandard (>= 0.2.1)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 0.2.1 | 109 | 4/19/2026 |
See CHANGELOG.md. 0.2.1 republishes the ASP.NET Core companion package with a clean package version for NuGet visibility.