Award Number

Award Number 9700 / W911XK22C0006 Federal Contract Action Summary (Last 10 Years)

Award number W911XK22C0006 for Agency ID 9700 summarizes federal obligation activity over the last 10 years.

This award record shows 67 actions tied to PIID W911XK22C0006 within the last 10 years. Total obligated amount is $1.94 billion, with an exact total of $1,935,590,946.56 and an average action value of $28,889,417.11.

Generated at 03/20/2026

Analysis period: Last 10 years

All values reflect the provided analysis window and should be read as obligation totals for this award record.

Agency ID
9700
PIID
W911XK22C0006
Type
Award
Total Obligated
1.94 billion
1,935,590,946.56
Actions
67
Average Action Value
28,889,417.11

Overview

This page presents the award record for PIID W911XK22C0006 under Agency ID 9700 across the last 10 years. The award has 67 actions and a total obligated amount of $1,935,590,946.56, which rounds to $1.94 billion. The average action value is $28,889,417.11.

How to use this page

Use this page to review obligation volume, action count, and average action value for this specific award number. The figures support basic analysis of award scale and activity over the stated period without adding outside context.

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 = 'W911XK22C0006'
    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
2100 DEPT OF THE ARMY 1,935,590,946.56 1.94 billion 67

Insight

Obligations for PIID W911XK22C0006 are concentrated entirely in DEPT OF THE ARMY, which accounts for the full reported amount of $1.94 billion across 67 awards. No other agencies are listed in this 10-year window, indicating a fully centralized obligation pattern for this award record. This concentration suggests the award activity is singularly associated with one agency rather than distributed across multiple departments.

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 = 'W911XK22C0006'
        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
KOKOSING ALBERICI TRAYLOR, LLC 914G9 1,935,590,946.56 1.94 billion 67

Insight

KOKOSING ALBERICI TRAYLOR, LLC (CAGE 914G9) accounts for the full observed top-vendor obligation total for PIID W911XK22C0006 over the 10-year window, with $1.94 billion across 67 awards. This indicates a highly concentrated vendor profile, with obligations and award activity centered on a single contractor. The volume of awards suggests repeated use of the same vendor rather than a broad distribution across multiple suppliers.

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 = 'W911XK22C0006'
    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 1,935,590,946.56 1.94 billion 67

Insight

Obligations under PIID W911XK22C0006 are fully concentrated in NAICS 237990, Other Heavy and Civil Engineering Construction. Over the 10-year window, this code accounts for $1.94 billion across 67 awards, indicating a highly focused award pattern with no diversification across other NAICS codes in the provided data. This concentration suggests the contract activity is consistently tied to heavy and civil engineering construction requirements.

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 = 'W911XK22C0006'
    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
Y1KA CONSTRUCTION OF DAMS 1,935,590,946.56 1.94 billion 67

Insight

Obligations under PIID W911XK22C0006 are fully concentrated in PSC Y1KA, Construction of Dams, with $1.94 billion obligated across 67 awards over the 10-year window. This indicates a highly focused procurement profile with no evidence of diversification across other PSCs in the provided data. The volume of awards alongside the substantial obligated amount suggests sustained, program-level activity within this 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 = 'W911XK22C0006'
    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
2022 1,077,524,150.00 1.08 billion 3
2023 479,139,418.73 479.14 million 8
2024 231,051,422.00 231.05 million 21
2025 147,875,955.83 147.88 million 35

Insight

Obligations are heavily concentrated in 2022 at $1.08 billion across 3 awards, then decline sharply in subsequent years to $479.14 million in 2023, $231.05 million in 2024, and $147.88 million in 2025. Award count moves in the opposite direction, increasing from 3 to 8, 21, and 35, indicating a shift from fewer, larger awards to a greater number of smaller awards. This pattern suggests a material reduction in annual obligated volume alongside broader distribution across more actions over time.

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.