Award Number

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

Federal award number N6274223F4007 under agency ID 9700 recorded $1.52 billion in obligations across 17 award actions during the last full year.

This page summarizes procurement activity for award number N6274223F4007 for agency ID 9700 over the last full year. The award shows $1,517,832,215.15 in total obligated value across 17 actions, with an average action value of $89,284,247.95.

Generated at 03/20/2026

Analysis period: Last full year

Dollar figures are shown as provided, with the readable total rounded to $1.52 billion.

Agency ID
9700
PIID
N6274223F4007
Type
Award
Total Obligated
1.52 billion
1,517,832,215.15
Actions
17
Average Action Value
89,284,247.95

Overview

The award record for N6274223F4007 shows $1,517,832,215.15 in obligated value during the last full year. That total is distributed across 17 award actions, indicating repeated contract activity rather than a single transaction. The average action value was $89,284,247.95.

How to use this page

Use this page to review obligation volume and action frequency tied to award number N6274223F4007. The figures support basic procurement analysis for agency ID 9700, including comparisons of total obligated amount, action count, and average action value over the last full year.

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 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 1,517,832,215.15 1.52 billion 17

Insight

Over the past year, obligations tied to PIID N6274223F4007 are concentrated entirely within the DEPT OF THE NAVY, which accounts for $1.52 billion across 17 awards. This indicates a highly concentrated award pattern rather than a distributed agency footprint. The volume of obligations and award count together suggest repeated activity within a single agency relationship.

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 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
DRAGADOS/HAWAIIAN DREDGING/ORION JV 94AZ0 1,517,832,215.15 1.52 billion 17

Insight

Obligations for PIID N6274223F4007 are highly concentrated in a single vendor over the last 1 year. DRAGADOS/HAWAIIAN DREDGING/ORION JV accounts for 1.52 billion across 17 awards, indicating a strong reliance on one contractor for this award activity. The distribution suggests limited vendor diversification within the observed window.

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 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 1,517,832,215.15 1.52 billion 17

Insight

Within the 1-year window for award N6274223F4007 under agency 9700, obligations are fully concentrated in NAICS 237990, Other Heavy and Civil Engineering Construction. This NAICS accounts for $1.52 billion across 17 awards, indicating a narrow industrial distribution centered on heavy civil construction activity. The concentration suggests this award action portfolio is highly specialized rather than diversified across multiple industry sectors.

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 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 1,517,832,215.15 1.52 billion 17

Insight

Within the 1-year window, award PIID N6274223F4007 is fully concentrated in PSC Y1ED, Construction of Ship Construction and Repair Facilities. This PSC accounts for $1.52 billion across 17 awards, indicating a high degree of obligation concentration in a single facilities-related category. The distribution suggests the award activity is narrowly focused rather than spread 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 1 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2025 1,517,832,215.15 1.52 billion 17

Insight

In the 1-year window, obligations for award N6274223F4007 were concentrated entirely in FY 2025, with total obligated amounts of 1.52 billion across 17 awards. This indicates a high level of current-year funding concentration rather than a multi-year distribution. With only one year represented, no year-over-year trend can be assessed from the provided data.

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.