Award Number

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

Award number N6274223F4007 under agency 9700 shows 33 actions over the last 5 years with $2.77 billion obligated.

This award page summarizes obligation and action activity for award number N6274223F4007 within agency ID 9700. Over the last 5 years, the award recorded 33 actions and $2,771,246,797.15 in total obligated value.

Generated at 03/20/2026

Analysis period: Last 5 years

Amounts reflect the provided analysis window and may differ from rounded public summaries because exact and readable values are both included.

Agency ID
9700
PIID
N6274223F4007
Type
Award
Total Obligated
2.77 billion
2,771,246,797.15
Actions
33
Average Action Value
83,977,175.67

Overview

Award number N6274223F4007 is associated with agency ID 9700 and shows $2,771,246,797.15 in total obligated value across 33 actions in the last 5 years. The average action value is $83,977,175.67, which provides a simple measure of the scale of activity across the period.

How to use this page

Use this page to review award-level obligation totals, action count, and average action value for N6274223F4007. It is suitable for quick FPDS-style analysis of how the award changed over the selected 5-year window.

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 = 'N6274223F4007'
    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
1700 DEPT OF THE NAVY 2,771,246,797.15 2.77 billion 33

Insight

Obligations for PIID N6274223F4007 are fully concentrated in a single top agency, the DEPT OF THE NAVY, which accounts for $2.77 billion across 33 awards in the 5-year window. This indicates that the award activity is narrowly distributed and strongly aligned to one agency rather than spread across multiple agencies. The concentration suggests the award is operationally tied to Navy requirements and funding patterns.

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 = 'N6274223F4007'
        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
DRAGADOS/HAWAIIAN DREDGING/ORION JV 94AZ0 2,771,246,797.15 2.77 billion 33

Insight

Obligations for PIID N6274223F4007 are fully concentrated with DRAGADOS/HAWAIIAN DREDGING/ORION JV (CAGE 94AZ0) over the 5-year window. The vendor received 33 awards totaling $2.77 billion, indicating a highly concentrated award pattern with no evidence of distribution across additional vendors in the provided rows.

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 = 'N6274223F4007'
    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
237990 OTHER HEAVY AND CIVIL ENGINEERING CONSTRUCTION 2,771,246,797.15 2.77 billion 33

Insight

Obligations for PIID N6274223F4007 are fully concentrated in NAICS 237990, Other Heavy and Civil Engineering Construction, over the 5-year window. This NAICS accounts for $2.77 billion across 33 awards, indicating a concentrated procurement profile within a single heavy and civil engineering category. The distribution suggests the award activity is narrowly focused rather than diversified across multiple NAICS codes.

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 = 'N6274223F4007'
    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
Y1ED CONSTRUCTION OF SHIP CONSTRUCTION AND REPAIR FACILITIES 2,771,246,797.15 2.77 billion 33

Insight

Over the 5-year window, obligations are fully concentrated in PSC Y1ED, with $2.77 billion across 33 awards. This indicates a highly focused spend profile centered on construction of ship construction and repair facilities. The average award value is substantial, suggesting relatively large facility-related obligations rather than a broad distribution across multiple PSCs.

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 = 'N6274223F4007'
    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
2023 463,000,000.00 463.00 million 5
2024 790,414,582.00 790.41 million 11
2025 1,517,832,215.15 1.52 billion 17

Insight

Obligations for PIID N6274223F4007 increased sharply over the three reported years, rising from $463.00 million in 2023 to $790.41 million in 2024 and $1.52 billion in 2025. Award volume also expanded from 5 awards to 11 and then 17, indicating both higher funding concentration and broader activity over time. The pattern suggests a sustained upward trend rather than a single-year spike.

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.