This page presents award-level procurement data for PIID HT940216C0002 under agency ID 9700. For the last full year, the award shows 23 actions and total obligations of $454,771,498.16.
Award Number
Award Number 9700 / HT940216C0002 Federal Contract Action Summary (Last Year)
Federal award number HT940216C0002 for agency 9700, summarized for the last full year with obligation and action activity.
Obligation totals are shown as both readable and exact values, and average action value is based on the 23 recorded actions.
Overview
Award HT940216C0002 is the procurement record shown for agency ID 9700 over the last full year. It includes 23 award actions and total obligated dollars of $454,771,498.16, with an average action value of $19,772,673.83. The page is focused on award-level activity rather than broader agency totals.
How to use this page
Use this page to review obligation volume and action frequency for award HT940216C0002 in the selected time window. The figures support quick comparisons across awards, budgeting checks, and review of how obligation value is distributed across recorded actions.
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 = 'HT940216C0002'
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) | 454,771,498.16 | 454.77 million | 23 |
Insight
Within the 1-year window for award HT940216C0002, obligations are fully concentrated in the Defense Health Agency (DHA), which accounts for $454.77 million across 23 awards. This indicates a highly concentrated obligation pattern within a single agency relationship rather than a distributed award base. The concentration suggests the award activity is dominated by DHA-sponsored action in this period.
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 = 'HT940216C0002'
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 | 454,771,498.16 | 454.77 million | 23 |
Insight
Obligations for PIID HT940216C0002 over the 1-year window are fully concentrated with a single vendor, HEALTH NET FEDERAL SERVICES, LLC (CAGE 3TJW0). This vendor accounts for $454.77 million across 23 awards, indicating both a high dollar concentration and repeated award activity under the same vendor. No other vendors are reflected in the provided data, so the obligation distribution is entirely concentrated in one entity.
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 = 'HT940216C0002'
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 | 454,771,498.16 | 454.77 million | 23 |
Insight
Obligations for PIID HT940216C0002 over the past year are entirely concentrated in NAICS 524114, Direct Health and Medical Insurance Carriers. The award accounts for $454.77 million across 23 awards, indicating a highly concentrated spending profile with no diversification across other NAICS codes in the provided data. This pattern suggests the procurement activity under this PIID is narrowly focused on health insurance carrier services.
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 = 'HT940216C0002'
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 | 454,771,498.16 | 454.77 million | 23 |
Insight
Obligations under this award are fully concentrated in PSC Q201, Medical- Managed Healthcare, with $454.77 million across 23 awards actions in the 1-year window. This indicates a highly focused spending profile with no observable PSC diversification in the provided data. The concentration in a single PSC suggests the award is being used for a narrow, specialized service category.
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 = 'HT940216C0002'
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 | 454,771,498.16 | 454.77 million | 23 |
Insight
Over the past 1 year, obligations for PIID HT940216C0002 are concentrated in a single reporting year: 2025, with $454.77 million obligated across 23 awards. This indicates a high level of annual concentration rather than a distributed multi-year trend. The average obligated amount per award is substantial, suggesting activity is driven by a relatively small number of large awards rather than broad award dispersion.
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.