Award Number

Award Number 9700 / HT940210C0002 Federal Contract Action Summary (Last 5 Years)

Procurement award number HT940210C0002 for agency 9700 shows one recorded action over the last 5 years with total obligations of -$29.54 million.

This page summarizes award number HT940210C0002 for agency ID 9700 over the last 5 years. The record shows one award action with total obligated dollars of -$29,541,453.40.

Generated at 03/20/2026

Analysis period: Last 5 years

Amounts reflect the analysis window provided and are shown as reported, including the negative obligated total.

Agency ID
9700
PIID
HT940210C0002
Type
Award
Total Obligated
-29.54 million
-29,541,453.40
Actions
1
Average Action Value
-29,541,453.40

Overview

The award record for HT940210C0002 includes a single action in the last 5 years. Total obligated value is -$29,541,453.40, and the average action value matches the total because there is only one action.

How to use this page

Use this page to review the award-level obligation summary for PIID HT940210C0002 within agency 9700. The figures here support quick comparison, but the negative obligation amount should be read in the context of the underlying FPDS record.

Top Agencies

SELECT
    content__award__purchaserInformation__contractingOfficeAgencyID AS agency_id,
    content__award__purchaserInformation__contractingOfficeAgencyID__name AS agency_name,
    sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
    count() AS award_count,
    formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
    content__award__awardID__awardContractID__agencyID = '9700' AND content__award__awardID__awardContractID__PIID = 'HT940210C0002'
    AND content__award__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
    AND content__award__purchaserInformation__contractingOfficeAgencyID != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY
    agency_id,
    agency_name
ORDER BY total_obligated DESC
LIMIT 10
Agency ID Agency Name Total Obligated Readable Actions
97DH DEFENSE HEALTH AGENCY (DHA) -29,541,453.40 -29.54 million 1

Insight

Within the 5-year window, obligations for PIID HT940210C0002 are entirely concentrated in Defense Health Agency (DHA), which accounts for the full observed activity in this section. The single award record is associated with negative total obligated value of $29.54 million, indicating a net de-obligation or downward adjustment rather than positive funding. With only one agency represented, there is no distribution across multiple agencies to assess.

Top Vendors

SELECT
    vendor_name,
    cage_code,
    total_obligated,
    award_count,
    formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
    SELECT
        content__award__vendor__vendorHeader__vendorName AS vendor_name,
        ifNull(content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode, '') AS cage_code,
        sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
        count() AS award_count
    FROM fpds.data
    WHERE
        content__award__awardID__awardContractID__agencyID = '9700' AND content__award__awardID__awardContractID__PIID = 'HT940210C0002'
        AND content__award__vendor__vendorHeader__vendorName IS NOT NULL
        AND content__award__vendor__vendorHeader__vendorName != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 YEAR
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
    GROUP BY
        vendor_name,
        cage_code
)
ORDER BY total_obligated DESC
LIMIT 10
Vendor CAGE Code Total Obligated Readable Actions
HEALTH NET FEDERAL SERVICES, LLC 3TJW0 -29,541,453.40 -29.54 million 1

Insight

Obligations under PIID HT940210C0002 are fully concentrated in a single vendor over the 5-year window. HEALTH NET FEDERAL SERVICES, LLC (CAGE 3TJW0) accounts for one award and total obligated value of -$29.54 million. This indicates no vendor distribution within the provided data and suggests the award’s obligation activity is entirely tied to one contractor.

Top NAICS

SELECT
    content__award__productOrServiceInformation__principalNAICSCode AS naics_code,
    content__award__productOrServiceInformation__principalNAICSCode__description AS naics_name,
    sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
    count() AS award_count,
    formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
    content__award__awardID__awardContractID__agencyID = '9700' AND content__award__awardID__awardContractID__PIID = 'HT940210C0002'
    AND content__award__productOrServiceInformation__principalNAICSCode IS NOT NULL
    AND content__award__productOrServiceInformation__principalNAICSCode != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY
    naics_code,
    naics_name
ORDER BY total_obligated DESC
LIMIT 10
NAICS Code Description Total Obligated Readable Actions
524114 DIRECT HEALTH AND MEDICAL INSURANCE CARRIERS -29,541,453.40 -29.54 million 1

Insight

Within the 5-year window, this award is fully concentrated in NAICS 524114, Direct Health and Medical Insurance Carriers, with one recorded action. The total obligated amount is negative $29.54 million, indicating a net deobligation rather than incremental funding. No distribution across other NAICS codes is present in the provided data, so the award’s NAICS profile is singular and highly concentrated.

Top PSC Codes

SELECT
    content__award__productOrServiceInformation__productOrServiceCode AS psc_code,
    content__award__productOrServiceInformation__productOrServiceCode__description AS psc_name,
    sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
    count() AS award_count,
    formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
    content__award__awardID__awardContractID__agencyID = '9700' AND content__award__awardID__awardContractID__PIID = 'HT940210C0002'
    AND content__award__productOrServiceInformation__productOrServiceCode IS NOT NULL
    AND content__award__productOrServiceInformation__productOrServiceCode != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY
    psc_code,
    psc_name
ORDER BY total_obligated DESC
LIMIT 10
PSC Code Description Total Obligated Readable Actions
Q201 MEDICAL- MANAGED HEALTHCARE -29,541,453.40 -29.54 million 1

Insight

Over the 5-year window, obligations for award HT940210C0002 are entirely concentrated in PSC Q201, Medical- Managed Healthcare. The single recorded award accounts for -$29.54 million, indicating a fully concentrated PSC profile for this award with no observed distribution across other PSCs in the provided rows. The negative obligated amount warrants review in the underlying data but remains the only PSC recorded for this award in the period.

Annual Trend

SELECT
    toYear(parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate)) AS year,
    sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
    formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable,
    count() AS award_count
FROM fpds.data
WHERE
    content__award__awardID__awardContractID__agencyID = '9700' AND content__award__awardID__awardContractID__PIID = 'HT940210C0002'
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2025 -29,541,453.40 -29.54 million 1

Insight

In the 5-year window, this award has a single reported action year: 2025. Obligations are fully concentrated in that year, with one award action totaling -$29.54 million. With only one year and one record in scope, no multi-year trend or distribution pattern can be inferred.

Use FPDS Query for deeper award and vehicle analysis

Explore federal procurement data with custom SQL, fast filtering, and deeper contract action analysis across agencies, vendors, NAICS, PSC, and annual trends.

Continue from this last 5 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.