Award Number

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

Federal procurement record for award number W911XK22C0006 under agency ID 9700, showing last full year obligations and action activity.

This page summarizes the award number W911XK22C0006 for agency ID 9700 over the last full year. The record shows 35 award actions and total obligated funding of $147.88 million, with an average action value of $4.23 million.

Generated at 03/20/2026

Analysis period: Last full year

Total obligated is reported as $147,875,955.83 and rounded readable value is $147.88 million.

Agency ID
9700
PIID
W911XK22C0006
Type
Award
Total Obligated
147.88 million
147,875,955.83
Actions
35
Average Action Value
4,225,027.31

Overview

The award number W911XK22C0006 is associated with agency ID 9700 and reflects activity in the last full year. Across 35 award actions, the total obligated amount was $147,875,955.83, or $147.88 million rounded. The average action value was $4,225,027.31, which provides a simple measure of how obligation volume was distributed across recorded actions.

How to use this page

Use this page to review the award’s obligation level and action count for the selected analysis window. The figures support basic comparison, tracking, and filtering by award number within agency ID 9700.

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 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
2100 DEPT OF THE ARMY 147,875,955.83 147.88 million 35

Insight

Obligations for PIID W911XK22C0006 in the past year are fully concentrated within DEPT OF THE ARMY, which accounts for 147.88 million across 35 awards. This indicates no observable interagency distribution in the provided data. The pattern suggests the award activity is entirely within a single agency relationship for the selected 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 = '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 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
KOKOSING ALBERICI TRAYLOR, LLC 914G9 147,875,955.83 147.88 million 35

Insight

Obligations are fully concentrated with KOKOSING ALBERICI TRAYLOR, LLC (CAGE 914G9), which accounts for $147.88 million across 35 awards in the 1-year window for PIID W911XK22C0006. This pattern indicates a highly concentrated vendor profile with no evidence of broader vendor distribution in the provided data. The volume of awards suggests recurring obligation activity to a single contractor rather than dispersed vendor participation.

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 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 147,875,955.83 147.88 million 35

Insight

For award W911XK22C0006 over the 1-year window, obligations are fully concentrated in NAICS 237990, Other Heavy and Civil Engineering Construction. This category accounts for $147.88 million across 35 awards, indicating a consistent procurement pattern within a single civil engineering construction classification. The absence of additional NAICS entries suggests no observable diversification in this award’s obligated activity over the period.

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 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
Y1KA CONSTRUCTION OF DAMS 147,875,955.83 147.88 million 35

Insight

Obligations for PIID W911XK22C0006 over the 1-year window are fully concentrated in PSC Y1KA, Construction of Dams, with $147.88 million across 35 awards. This indicates a narrow procurement profile centered on dam construction activity rather than a diversified mix of product or service categories. The award count suggests repeated obligations under the same PSC, consistent with sustained execution in this scope.

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 1 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2025 147,875,955.83 147.88 million 35

Insight

For PIID W911XK22C0006, the 1-year annual trend reflects all reported obligations in FY2025, totaling $147.88 million across 35 awards. Obligation activity is concentrated in a single fiscal year, indicating no multi-year distribution within the provided window. The average obligation per award is approximately $4.23 million, suggesting a relatively high-value award profile within the reported period.

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.