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
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Baghel.Tip.TransactionStandard.AspNetCore" Version="0.2.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Baghel.Tip.TransactionStandard.AspNetCore" Version="0.2.1" />
                    
Directory.Packages.props
<PackageReference Include="Baghel.Tip.TransactionStandard.AspNetCore" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Baghel.Tip.TransactionStandard.AspNetCore --version 0.2.1
                    
#r "nuget: Baghel.Tip.TransactionStandard.AspNetCore, 0.2.1"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Baghel.Tip.TransactionStandard.AspNetCore@0.2.1
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Baghel.Tip.TransactionStandard.AspNetCore&version=0.2.1
                    
Install as a Cake Addin
#tool nuget:?package=Baghel.Tip.TransactionStandard.AspNetCore&version=0.2.1
                    
Install as a Cake Tool

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, and sellerPoliticalCompetitive
  • JSON serialization helpers for application/json
  • XML serialization helpers for application/xml
  • Recursive validation without throwing in property setters
  • HttpContent helpers 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.TransactionStandard
  • Baghel.Tip.TransactionStandard.AspNetCore

Repository layout

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, and develop logtimes, commercialInstructions, rfps, proposals, orders, inventoryAvails, invoice, makegoods, creativeAssets, impressionssub, audiences, and sellerPoliticalCompetitive examples and schemas were used as the baseline for the current contract rewrite
Product 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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.