JACOBS TECHNOLOGY INC. (CAGE 7EBK3, UEI DTRJLHVLK8F4) recorded 991 award actions and $1,737,406,421.58 in obligated dollars over the last 5 years, for an average action value of $1,753,185.08. Most of this activity was with the Missile Defense Agency and was concentrated in NAICS 541712 for research and development in the physical, engineering, and life sciences.
Federal Contractor
JACOBS TECHNOLOGY INC. Federal Contract Obligations (Last 5 Years)
Federal procurement profile for JACOBS TECHNOLOGY INC. showing 991 award actions and $1.74 billion obligated over the last 5 years.
The dataset is dominated by Missile Defense Agency obligations, with a smaller NASA entry, and the annual totals range from $307.51 million to $385.81 million across 2021 to 2025.
About JACOBS TECHNOLOGY INC. federal contract activity
JACOBS TECHNOLOGY INC. (CAGE 7EBK3, UEI DTRJLHVLK8F4) received 991 FPDS-reported awards over the last 5 years, with total obligated dollars of 1.74 billion and an average award value of about 1.75 million. The profile is highly concentrated, with nearly all obligations tied to a single federal customer and a small number of related R&D contracting actions.
Agency mix and customer concentration
The award base is overwhelmingly concentrated in the MISSILE DEFENSE AGENCY (MDA), which accounts for 990 awards and 1.74 billion in obligations. NATIONAL AERONAUTICS AND SPACE ADMINISTRATION appears only once in the period and represents a negligible share of total obligations, indicating limited agency diversification.
Industry profile based on NAICS activity
Obligations are dominated by NAICS 541712, Research and Development in the Physical, Engineering, and Life Sciences (except Biotechnology), which represents virtually all reported dollars and 989 awards. NAICS 541715 appears only twice and contributes a very small residual amount, reinforcing that the vendor's federal work is primarily centered on R&D support within the physical and engineering sciences.
Annual contract trend over the analysis window
Annual obligations remained in a relatively narrow band from 2021 through 2025, ranging from 307.51 million to 385.81 million. The strongest year in the window was 2021, followed by a decline in 2022, a rebound in 2023, a softer 2024, and an increase again in 2025. Award counts moved similarly, peaking at 220 in 2023 and remaining above 175 in every year shown.
How to interpret this page
This summary uses FPDS award records associated with CAGE 7EBK3 and UEI DTRJLHVLK8F4 over the last 5 years. Agency, NAICS, and annual figures are based on obligated dollars and award counts reported in the supplied dataset; amounts are presented as provided and rounded in narrative form where appropriate.
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 = '7EBK3'
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 |
|---|---|---|---|---|
| 97JC | MISSILE DEFENSE AGENCY (MDA) | 1,736,877,207.09 | 1.74 billion | 990 |
| 8000 | NATIONAL AERONAUTICS AND SPACE ADMINISTRATION | 529,214.49 | 529.21 thousand | 1 |
Insight
Over the last 5 years, JACOBS TECHNOLOGY INC. received $1.74 billion across 991 awards, with obligations overwhelmingly concentrated at the Missile Defense Agency (MDA). MDA accounted for $1.7369 billion and 990 awards, indicating near-total reliance on a single agency relationship. NASA obligations were immaterial by comparison at $529.2 thousand across 1 award, suggesting only limited diversification outside MDA.
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 = '7EBK3'
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 |
|---|---|---|---|---|
| 541712 | RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT BIOTECHNOLOGY) | 1,736,876,707.09 | 1.74 billion | 989 |
| 541715 | RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT NANOTECHNOLOGY AND BIOTECHNOLOGY) | 529,714.49 | 529.71 thousand | 2 |
Insight
Over the last 5 years, JACOBS TECHNOLOGY INC. shows extreme concentration in NAICS 541712, which accounts for 1.74 billion of the 1.74 billion total obligated and 989 of 991 awards. NAICS 541715 is a marginal secondary code, with 529.71 thousand obligated across 2 awards. This pattern indicates a highly concentrated award profile centered on physical, engineering, and life sciences R&D work, with minimal activity outside the primary NAICS.
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 = '7EBK3'
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 | 352,206,959.35 | 352.21 million | 202 |
| 2024 | 316,713,314.90 | 316.71 million | 192 |
| 2023 | 375,170,367.84 | 375.17 million | 220 |
| 2022 | 307,506,867.11 | 307.51 million | 201 |
| 2021 | 385,808,912.38 | 385.81 million | 176 |
Insight
Over the last 5 years, JACOBS TECHNOLOGY INC. (CAGE 7EBK3) obligated $1.74 billion across 991 awards, with an average award value of $1.75 million. Annual obligations are relatively steady, ranging from $307.51 million to $385.81 million, indicating a sustained funding profile rather than sharp year-to-year volatility. The highest obligated amount occurred in 2021 ($385.81 million), followed by a dip in 2022 ($307.51 million) and recovery in 2023–2025, with 2025 at $352.21 million. Award volume generally tracks this pattern, peaking at 220 awards in 2023 and remaining near 200 awards annually in the most recent years.
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.