Award Number

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

Award number N4008521C0077 for agency ID 9700 shows $394.88 million in obligated value across 26 actions in the last full year.

This award page summarizes obligated activity tied to PIID N4008521C0077 for agency ID 9700 during the last full year. Total obligated value was $394,879,585 across 26 award actions, for an average action value of $15,187,676.35.

Generated at 03/20/2026

Analysis period: Last full year

Values reflect the analysis window provided and may not match other reporting periods or downstream summaries.

Agency ID
9700
PIID
N4008521C0077
Type
Award
Total Obligated
394.88 million
394,879,585.00
Actions
26
Average Action Value
15,187,676.35

Overview

The award record for PIID N4008521C0077 covers 26 actions in the last full year and totals $394,879,585 in obligated value. That activity produces an average action value of $15,187,676.35, indicating a relatively high-dollar award history within the analysis window. The figures are specific to the provided agency ID 9700 and the stated period.

How to use this page

Use this page to review total obligation, action count, and average action size for award number N4008521C0077. The summary supports quick comparison against other awards, but it should be interpreted only within the last full year analysis window. It is not a substitute for line-item or action-level review.

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 = 'N4008521C0077'
    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
1700 DEPT OF THE NAVY 394,879,585.00 394.88 million 26

Insight

Over the past 1 year, obligations associated with PIID N4008521C0077 are concentrated entirely within the Department of the Navy. The Navy accounts for 394.88 million across 26 awards, indicating a fully single-agency obligation profile in the provided data. This pattern suggests no observed agency diversification for this award within the window.

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 = 'N4008521C0077'
        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
381 CONSTRUCTORS 8QYU2 394,879,585.00 394.88 million 26

Insight

Within the 1-year window for PIID N4008521C0077, obligations are fully concentrated with a single top vendor, 381 CONSTRUCTORS (CAGE 8QYU2). This vendor accounts for $394.88 million across 26 awards, indicating a highly concentrated award distribution with no other vendors represented in the provided data. The pattern suggests this instrument is heavily reliant on one contractor for obligated activity.

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 = 'N4008521C0077'
    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
237990 OTHER HEAVY AND CIVIL ENGINEERING CONSTRUCTION 394,879,585.00 394.88 million 26

Insight

Obligations on this award are fully concentrated in NAICS 237990, Other Heavy and Civil Engineering Construction, with $394.88 million across 26 awards in the 1-year window. This indicates the award’s spending profile is narrowly focused on heavy civil construction rather than being distributed across multiple NAICS categories. The repeated award activity under a single NAICS suggests sustained procurement within this construction domain.

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 = 'N4008521C0077'
    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
Y1ED CONSTRUCTION OF SHIP CONSTRUCTION AND REPAIR FACILITIES 394,879,585.00 394.88 million 26

Insight

Obligations for this award are fully concentrated in PSC Y1ED, Construction of Ship Construction and Repair Facilities, totaling $394.88 million across 26 actions in the 1-year window. This pattern indicates a single-purpose award profile with no visible PSC diversification in the provided data. The volume of actions relative to the obligation total suggests repeated funding or modifications within the same construction 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 = 'N4008521C0077'
    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 394,879,585.00 394.88 million 26

Insight

For award PIID N4008521C0077 under agency 9700, the 1-year annual trend is fully concentrated in FY2025, with $394.88 million obligated across 26 awards. This indicates a substantial annual obligation level with activity distributed across multiple awards rather than a single transaction. With only one year reported, no year-over-year trend can be assessed within the available 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.