Award Number

Award Number 7008 / HSCG2316CAFR625 Federal Contract Action Summary (Last 5 Years)

Award number HSCG2316CAFR625 for agency ID 7008 shows $567.63 million in obligations across 37 actions over the last 5 years.

This page summarizes federal award activity for award number HSCG2316CAFR625 under agency ID 7008. Over the last 5 years, the award records $567,630,915.15 in total obligations across 37 actions, with an average action value of $15,341,376.09.

Generated at 03/20/2026

Analysis period: Last 5 years

All dollar figures reflect the provided analysis window and may differ by rounding between readable and exact totals.

Agency ID
7008
PIID
HSCG2316CAFR625
Type
Award
Total Obligated
567.63 million
567,630,915.15
Actions
37
Average Action Value
15,341,376.09

Overview

The award record for HSCG2316CAFR625 shows sustained obligation activity across 37 actions during the last 5 years. Total obligations equal $567,630,915.15, with an average action value of $15,341,376.09.

How to use this page

Use this page to review the award-level obligation total, action count, and average action value for HSCG2316CAFR625. It is useful for quick comparison against other awards within agency ID 7008.

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 = '7008' AND content__award__awardID__awardContractID__PIID = 'HSCG2316CAFR625'
    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
7008 U.S. COAST GUARD 567,630,915.15 567.63 million 37

Insight

Within the 5-year window for award PIID HSCG2316CAFR625, all reported obligation is concentrated in a single agency: U.S. Coast Guard. That agency accounts for $567.63 million across 37 awards, indicating full agency-level concentration in the available results. This pattern suggests the award activity is entirely associated with a single departmental recipient rather than being distributed across multiple agencies.

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 = '7008' AND content__award__awardID__awardContractID__PIID = 'HSCG2316CAFR625'
        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
BOLLINGER SHIPYARDS LOCKPORT, L.L.C. 64513 567,630,915.15 567.63 million 37

Insight

BOLLINGER SHIPYARDS LOCKPORT, L.L.C. is the only vendor listed in this 5-year view for PIID HSCG2316CAFR625, indicating full concentration of obligated spending with a single supplier. The vendor accounts for $567.63 million across 37 awards, suggesting repeated award activity and a highly concentrated vendor profile within this contract record.

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 = '7008' AND content__award__awardID__awardContractID__PIID = 'HSCG2316CAFR625'
    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
336611 SHIP BUILDING AND REPAIRING 567,630,915.15 567.63 million 37

Insight

Over the 5-year window, obligations for PIID HSCG2316CAFR625 are concentrated entirely in NAICS 336611, Ship Building and Repairing, with $567.63 million across 37 awards. This indicates a highly focused procurement profile with no diversification across other NAICS codes in the provided data. The repeated use of a single industrial classification suggests this award is tied to a specialized shipbuilding and repair requirement.

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 = '7008' AND content__award__awardID__awardContractID__PIID = 'HSCG2316CAFR625'
    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
1905 COMBAT SHIPS AND LANDING VESSELS 567,630,915.15 567.63 million 37

Insight

Over the 5-year window, obligations for award HSCG2316CAFR625 are entirely concentrated in PSC 1905, Combat Ships and Landing Vessels. This PSC accounts for $567.63 million across 37 awards, indicating a clear single-category spend profile rather than a distributed mix of product services. The volume of awards suggests repeated procurement activity within the same PSC, with no other PSCs present in the provided data.

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 = '7008' AND content__award__awardID__awardContractID__PIID = 'HSCG2316CAFR625'
    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
2021 239,988,865.96 239.99 million 9
2022 264,504,391.53 264.50 million 15
2023 10,215,883.00 10.22 million 2
2024 9,280,470.66 9.28 million 2
2025 43,641,304.00 43.64 million 9

Insight

Obligations for PIID HSCG2316CAFR625 were concentrated in 2021 and 2022, which together accounted for the vast majority of the 5-year total at $239.99 million and $264.50 million across 9 and 15 awards, respectively. Activity then dropped sharply in 2023 and 2024 to $10.22 million and $9.28 million, each across 2 awards, indicating a pronounced decline in both funding volume and award frequency. In 2025, obligations increased to $43.64 million across 9 awards, showing a partial rebound but still well below the 2021–2022 peak levels.

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.