This award page summarizes federal procurement activity tied to award number N6274223F4007 within Agency ID 9700. Over the last 10 years, the award shows $2,771,246,797.15 in obligations across 33 actions.
Award Number
Award Number 9700 / N6274223F4007 Federal Contract Action Summary (Last 10 Years)
Award number N6274223F4007 for Agency ID 9700 shows 33 recorded actions over the last 10 years with $2.77 billion in total obligations.
Totals reflect the provided analysis window and may not match current system-wide figures outside that period.
Overview
The award number N6274223F4007 is associated with Agency ID 9700 and has 33 recorded actions in the last 10 years. Total obligated amount for the period is $2,771,246,797.15, with an average action value of $83,977,175.67.
How to use this page
Use this page to review the award’s obligation history, action count, and average action value within the stated analysis window. It is suitable for tracking procurement activity linked to this specific award number and agency identifier.
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 10 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 agency, DEPT OF THE NAVY, which accounts for $2.77 billion across 33 awards in the 10-year window. This indicates no interagency distribution for this award set and suggests the funding and award activity are entirely Navy-centric. The concentration level limits cross-agency comparison and points to a highly focused award profile.
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 10 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 under PIID N6274223F4007 are highly concentrated in a single vendor: DRAGADOS/HAWAIIAN DREDGING/ORION JV accounted for $2.77 billion across 33 awards over the 10-year window. This indicates substantial spend concentration with one contractor rather than a broad distribution across multiple vendors. The award count suggests repeated obligation activity to the same vendor, consistent with a sustained contractual relationship.
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 10 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 10-year window. This NAICS accounts for $2.77 billion across 33 awards, indicating a sustained and highly focused procurement profile rather than a diversified industry mix. The volume and value distribution suggest recurring activity within a single heavy civil construction category.
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 10 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 10-year window, obligations for PIID N6274223F4007 are fully concentrated in PSC Y1ED, Construction of Ship Construction and Repair Facilities. This PSC accounts for $2.77 billion across 33 awards, indicating a sustained and highly focused spend profile rather than a diversified distribution across product or service categories.
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 10 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 period, rising from $463.0 million across 5 awards in 2023 to $790.4 million across 11 awards in 2024 and $1.52 billion across 17 awards in 2025. This indicates both higher annual funding levels and a broader distribution across more award actions. The pattern suggests growing concentration of obligated dollars in this award over time, with activity expanding materially in 2024 and 2025.
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 10 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.