Federal Contractor

RELIANCE TEST & TECHNOLOGY, LLC Federal Contract Obligations (Last 5 Years)

Federal procurement summary for RELIANCE TEST & TECHNOLOGY, LLC (CAGE 7FL60, UEI LFMMBZEMM2X3) covering obligations, awards, agencies, and NAICS activity over the last 5 years.

Over the last 5 years, RELIANCE TEST & TECHNOLOGY, LLC received 370 award actions totaling $947,152,393.72 in obligated funds, with an average action value of $2,559,871.33. Most of this activity was concentrated in the Department of the Air Force and the Department of the Navy, and nearly all obligations were coded to NAICS 541330, Engineering Services.

Generated at 03/21/2026

Analysis period: Last 5 years

Totals reflect the provided analysis window and may include rounding differences between summarized and row-level figures.

CAGE Code
7FL60
UEI
LFMMBZEMM2X3
Total Obligated
947.15 million
947,152,393.72
Award Actions
370
Average Action Value
2,559,871.33

About RELIANCE TEST & TECHNOLOGY, LLC federal contract activity

RELIANCE TEST & TECHNOLOGY, LLC recorded $947.15 million in obligated award value across 370 awards in the last 5 years, with an average award value of $2.56 million. The vendor’s federal business is highly concentrated, and almost all observed obligations are associated with engineering support work.

Agency mix and customer concentration

The DEPT OF THE AIR FORCE accounts for the majority of obligations at $652.92 million across 297 awards, or roughly 69% of total obligated value. The DEPT OF THE NAVY is the second-largest customer at $294.23 million across 72 awards, while the MISSILE DEFENSE AGENCY shows only a nominal $500 obligation on one award. This indicates a customer base dominated by two defense agencies, with minimal activity elsewhere.

Industry profile based on NAICS activity

NAICS 541330, Engineering Services, represents essentially the entire profile at $947.15 million across 369 awards. A single $500 obligation falls under NAICS 541715, Research and Development in the Physical, Engineering, and Life Sciences, indicating only limited diversification outside engineering services.

Annual contract trend over the analysis window

Annual obligations remained in a relatively stable band from 2021 through 2025, ranging from $162.30 million to $213.36 million. The peak year was 2023 at $213.36 million, followed by a decline in 2024 and a partial rebound in 2025 to $203.36 million. Award volume moved in the opposite direction of value in some years, with 2025 showing fewer awards than 2023 but still sustaining a similar obligation level.

How to interpret this page

This summary is based on FPDS Query award data for the last 5 years and reflects obligated dollars and award counts tied to the provided CAGE code and UEI. Agency and NAICS shares are calculated from the reported totals, and annual figures use the stated year-by-year obligation and award counts without inferring contract type, vehicle, or program details not present in the source data.

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 = '7FL60'
        AND content__award__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
        AND content__award__purchaserInformation__contractingOfficeAgencyID != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 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
5700 DEPT OF THE AIR FORCE 652,917,776.19 652.92 million 297
1700 DEPT OF THE NAVY 294,234,117.53 294.23 million 72
97JC MISSILE DEFENSE AGENCY (MDA) 500.00 500.00 1

Insight

Over the last 5 years, RELIANCE TEST & TECHNOLOGY, LLC received $947.15 million across 370 awards, with an average award value of $2.56 million. Obligations are highly concentrated in the Department of the Air Force, which accounts for $652.92 million and 297 awards, or about 69% of total obligations. The Department of the Navy is the second-largest buyer at $294.23 million across 72 awards, while the Missile Defense Agency appears only once with $500, indicating minimal diversification beyond the two primary 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 = '7FL60'
        AND content__award__productOrServiceInformation__principalNAICSCode IS NOT NULL
        AND content__award__productOrServiceInformation__principalNAICSCode != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 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
541330 ENGINEERING SERVICES 947,151,893.72 947.15 million 369
541715 RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT NANOTECHNOLOGY AND BIOTECHNOLOGY) 500.00 500.00 1

Insight

Over the last 5 years, RELIANCE TEST & TECHNOLOGY, LLC’s obligations are overwhelmingly concentrated in NAICS 541330, Engineering Services, with $947.15 million across 369 awards. This represents essentially all of the vendor’s $947.15 million in total obligated value and 370 awards during the period. NAICS 541715 appears only once and at a nominal $500, indicating no meaningful diversification beyond Engineering Services.

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 = '7FL60'
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 YEAR
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
    GROUP BY year
)
ORDER BY year DESC
Year Total Obligated Readable Award Actions
2025 203,361,220.04 203.36 million 50
2024 194,940,927.76 194.94 million 71
2023 213,361,864.94 213.36 million 84
2022 162,295,024.11 162.30 million 82
2021 173,193,356.87 173.19 million 83

Insight

RELIANCE TEST & TECHNOLOGY, LLC (CAGE 7FL60) obligated $947.15 million across 370 awards over the last 5 years, with an average award value of $2.56 million. Annual obligations were relatively stable, ranging from $162.30 million in 2022 to $213.36 million in 2023, with 2025 at $203.36 million and 2024 at $194.94 million. Award volume peaked in 2023 at 84 awards and remained within a narrow band of 50 to 84 awards annually, indicating a fairly consistent but moderately concentrated procurement pattern.

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 5 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.