Award Number

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

Award number HT940210C0002 for agency 9700 shows one recorded action in the last full year with total obligations of -$29.54 million.

This page summarizes award number HT940210C0002 under agency ID 9700 for the last full year. The record shows a single action with total obligated value of -$29,541,453.40.

Generated at 03/20/2026

Analysis period: Last full year

Figures reflect the analysis window and the exact obligated total of -29541453.4, rounded in readable form as -29.54 million.

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

For the last full year, award number HT940210C0002 is associated with agency ID 9700 and a single recorded action. The total obligated amount is negative $29,541,453.40, which is also shown as -$29.54 million in readable form.

How to use this page

Use this page to review the award-level obligation summary for HT940210C0002 over the selected analysis window. The average action value matches the full-year total because the record contains one action.

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 1 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

Obligations for PIID HT940210C0002 in the past year are fully concentrated in a single agency, the Defense Health Agency (DHA). DHA accounts for one award with total obligations of -$29.54 million, indicating all reported activity in this window is tied to one agency and one award action. The negative obligation amount suggests a deobligation or downward adjustment rather than new funding.

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 1 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

The award is fully concentrated with HEALTH NET FEDERAL SERVICES, LLC, which accounts for the entire reported vendor activity in the 1-year window. One vendor received a single action totaling -$29.54 million, indicating no observed distribution across additional vendors for this award record. The negative obligated amount suggests deobligation activity or downward adjustment concentrated to this 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 1 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

Over the past 1 year, this award’s obligations are fully concentrated in NAICS 524114, Direct Health and Medical Insurance Carriers. One action accounts for the entire reported obligation, totaling -$29.54 million across 1 award, indicating no diversification across other NAICS codes in the period. The negative obligated amount is the only reported value and should be interpreted in the context of the underlying transaction type.

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 1 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

Obligations for this award are fully concentrated in PSC Q201, Medical - Managed Healthcare. The single recorded action accounts for -$29.54 million over the 1-year window, indicating no distribution across multiple PSCs in the provided data. This level of concentration suggests the award’s obligations are tied entirely to a single medical managed healthcare classification.

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 1 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

Over the 1-year window, this award recorded a single obligation in FY 2025 totaling -$29.54 million. Obligations are fully concentrated in one year and one transaction, indicating no observed distribution across multiple periods within the provided data. The negative obligation is the only recorded trend point for this award in the window.

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 full year view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.