Federal Contractor

KBRWYLE TECHNOLOGY SOLUTIONS, LLC Federal Contract Obligations (Last Year)

KBRWYLE TECHNOLOGY SOLUTIONS, LLC recorded 50 federal award actions in the last full year, totaling $59.26 million in obligated spending under CAGE 15151 and UEI JU9GLKSCUXE3.

In the last full year, KBRWYLE TECHNOLOGY SOLUTIONS, LLC received $59,260,356.11 across 50 award actions, for an average action value of $1,185,207.12. Most of the obligation came from the Department of the Army, with smaller activity from the Department of the Navy and limited amounts or offsets in other agencies.

Generated at 03/21/2026

Analysis period: Last full year

Agency, NAICS, and annual totals reflect FPDS-recorded obligations for the analysis window and may include negative or zero-dollar adjustments.

CAGE Code
15151
UEI
JU9GLKSCUXE3
Total Obligated
59.26 million
59,260,356.11
Award Actions
50
Average Action Value
1,185,207.12

About KBRWYLE TECHNOLOGY SOLUTIONS, LLC federal contract activity

KBRWYLE TECHNOLOGY SOLUTIONS, LLC (CAGE 15151, UEI JU9GLKSCUXE3) recorded 50 FPDS-observed awards in the last full year, totaling $59.26 million in obligated value. The average award size was $1.19 million, indicating a portfolio dominated by moderate-value obligations rather than a single large outlier.

Agency mix and customer concentration

Obligations were overwhelmingly concentrated in the DEPT OF THE ARMY, which accounted for $59.17 million across 30 awards. The DEPT OF THE NAVY contributed a much smaller $145.75 thousand across 14 awards, while the remaining agencies registered negligible, zero, or negative net obligated amounts, indicating limited cross-agency spread outside the Army.

Industry profile based on NAICS activity

The vendor’s work profile was led by NAICS 561210, Facilities Support Services, at $59.59 million across 28 awards, which effectively defines the procurement mix for the period. Smaller activity appeared in Engineering Services (541330) at $103.48 thousand, with minor negative obligated adjustments in repair and maintenance categories that reduced net totals but did not alter the core concentration in facilities support.

Annual contract trend over the analysis window

Annual activity for 2025 totaled $59.26 million across 50 awards, with no multi-year trend visible in the provided window. Based on the single-year dataset, the vendor’s procurement footprint appears stable within that period, but longer-term direction cannot be determined from this analysis.

How to interpret this page

This summary uses FPDS-observed obligations associated with the provided CAGE and UEI over the last full year. Totals, award counts, and category rankings are based on the supplied dataset; negative obligations are preserved as reported and may reflect deobligations or post-award adjustments.

Top Agencies

SELECT
    agency_id,
    agency_name,
    total_obligated,
    award_count,
    formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
    SELECT
        content__award__purchaserInformation__contractingOfficeAgencyID AS agency_id,
        anyHeavy(content__award__purchaserInformation__contractingOfficeAgencyID__name) AS agency_name,
        sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
        count() AS award_count
    FROM fpds.data
    WHERE
        contract_type = 1
        AND content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode = '15151'
        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
)
ORDER BY total_obligated DESC
LIMIT 10
Agency ID Agency Name Total Obligated Readable Award Actions
2100 DEPT OF THE ARMY 59,174,540.96 59.17 million 30
1700 DEPT OF THE NAVY 145,747.67 145.75 thousand 14
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) 0.00 0.00 1
1434 US GEOLOGICAL SURVEY -17,669.07 -17.67 thousand 1
8000 NATIONAL AERONAUTICS AND SPACE ADMINISTRATION -42,263.45 -42.26 thousand 4

Insight

KBRWYLE TECHNOLOGY SOLUTIONS, LLC’s last full year of obligations was highly concentrated in the DEPT OF THE ARMY, which accounted for $59.17 million of the $59.26 million total obligated across 30 of 50 awards. DEPT OF THE NAVY was a distant second at $145.75 thousand across 14 awards, while the remaining agencies each represented negligible or negative net obligation activity. The distribution indicates that the vendor’s federal spend in this period was overwhelmingly Army-driven, with limited diversification across other agencies.

Top NAICS

SELECT
    naics_code,
    naics_name,
    total_obligated,
    award_count,
    formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
    SELECT
        content__award__productOrServiceInformation__principalNAICSCode AS naics_code,
        anyHeavy(content__award__productOrServiceInformation__principalNAICSCode__description) AS naics_name,
        sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
        count() AS award_count
    FROM fpds.data
    WHERE
        contract_type = 1
        AND content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode = '15151'
        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
)
ORDER BY total_obligated DESC
LIMIT 10
NAICS Code Description Total Obligated Readable Award Actions
561210 FACILITIES SUPPORT SERVICES 59,592,337.27 59.59 million 28
541330 ENGINEERING SERVICES 103,484.22 103.48 thousand 18
811219 OTHER ELECTRONIC AND PRECISION EQUIPMENT REPAIR AND MAINTENANCE -17,669.07 -17.67 thousand 1
811111 GENERAL AUTOMOTIVE REPAIR -417,796.31 -417.80 thousand 2

Insight

KBRWYLE TECHNOLOGY SOLUTIONS, LLC’s obligations in the last full year were highly concentrated in NAICS 561210, Facilities Support Services, which accounted for $59.59 million across 28 awards and represented essentially all reported obligations. The only other positive-obligation NAICS was 541330, Engineering Services, at $103.48 thousand across 18 awards, indicating a much smaller secondary activity stream. Two maintenance-related NAICS categories posted negative obligated amounts, including -$417.80 thousand in 811111 and -$17.67 thousand in 811219, which reduced the vendor’s net total to $59.26 million across 50 awards.

Annual Trend

SELECT
    year,
    total_obligated,
    award_count,
    formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
    SELECT
        toYear(parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate)) AS year,
        sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
        count() AS award_count
    FROM fpds.data
    WHERE
        contract_type = 1
        AND content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode = '15151'
        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 DESC
Year Total Obligated Readable Award Actions
2025 59,260,356.11 59.26 million 50

Insight

In the last full year, KBRWYLE TECHNOLOGY SOLUTIONS, LLC (CAGE 15151) obligated $59.26 million across 50 awards, for an average award value of about $1.19 million. Because the window contains a single year, no year-over-year trend can be assessed from this view. The activity reflects a moderately distributed award pattern rather than reliance on a small number of extremely large obligations.

Use FPDS Query for deeper contractor analysis

Explore federal procurement data with custom SQL, fast filtering, and deeper contractor analysis across buying agencies, NAICS, 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.