Federal Contractor

JACOBS TECHNOLOGY INC. Federal Contract Obligations (Last 10 Years)

JACOBS TECHNOLOGY INC. (CAGE 7EBK3, UEI DTRJLHVLK8F4) received $2.71 billion across 1,550 federal award actions over the last 10 years, almost entirely from the Missile Defense Agency.

FPDS activity for JACOBS TECHNOLOGY INC. is concentrated in research and development work, led by NAICS 541712 with $2.71 billion across 1,548 actions. The largest customer is the Missile Defense Agency, which accounts for nearly all obligations in the analysis window, with a small NASA award outside that core pattern.

Generated at 03/21/2026

Analysis period: Last 10 years

Totals reflect readable federal obligations in the last 10 years and may differ slightly from exact values due to rounding.

CAGE Code
7EBK3
UEI
DTRJLHVLK8F4
Total Obligated
2.71 billion
2,714,739,564.35
Award Actions
1,550
Average Action Value
1,751,444.88

About JACOBS TECHNOLOGY INC. federal contract activity

JACOBS TECHNOLOGY INC. (CAGE 7EBK3, UEI DTRJLHVLK8F4) recorded $2.71 billion in obligated contract value across 1,550 awards over the last 10 years, for an average award value of $1.75 million. The vendor’s award profile is highly concentrated, indicating a sustained federal relationship rather than a broad multi-agency footprint.

Agency mix and customer concentration

The agency mix is overwhelmingly dominated by the Missile Defense Agency (MDA), which accounts for 1,549 awards and $2.71 billion, or essentially all tracked obligations in the period. NASA represents a minimal secondary customer with one award totaling $529.21 thousand, showing very limited diversification outside the MDA.

Industry profile based on NAICS activity

Award activity is concentrated in NAICS 541712, Research and Development in the Physical, Engineering, and Life Sciences (Except Biotechnology), which captures 1,548 awards and $2.71 billion of obligations. NAICS 541715 appears only marginally, with two awards and $529.71 thousand, reinforcing that the vendor’s work is primarily aligned to R&D support services in the physical and engineering sciences.

Annual contract trend over the analysis window

Recent annual obligations remain in the mid-hundreds of millions, ranging from $307.51 million in 2022 to $385.81 million in 2021, with 2023 at $375.17 million and 2025 at $352.21 million. The pattern suggests a relatively stable funding base with normal year-to-year variation rather than a sharp upward or downward shift.

How to interpret this page

This summary uses FPDS-derived obligations for the last 10 years, aggregated by vendor identifiers, agency, NAICS code, and fiscal year. Obligated dollars and award counts are reported as provided in the dataset; values reflect contract actions captured in the analysis window and should be interpreted as reported federal obligations, not total contract ceiling or performance value.

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 10 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) 2,714,210,349.86 2.71 billion 1,549
8000 NATIONAL AERONAUTICS AND SPACE ADMINISTRATION 529,214.49 529.21 thousand 1

Insight

Over the last 10 years, JACOBS TECHNOLOGY INC. has received $2.71 billion across 1,550 awards, with activity overwhelmingly concentrated at the Missile Defense Agency (97JC). MDA accounts for $2.714 billion and 1,549 awards, indicating near-total reliance on a single buying agency. NASA (8000) represents a de minimis share of obligations at $529.21 thousand with one award, suggesting minimal diversification in the vendor’s federal customer base.

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 10 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) 2,714,209,849.86 2.71 billion 1,548
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 10 years, JACOBS TECHNOLOGY INC. received 2.71 billion across 1,550 awards, with an average award value of 1.75 million. Obligations are overwhelmingly concentrated in NAICS 541712, which accounts for 2.714 billion and 1,548 awards, or nearly all activity in the period. NAICS 541715 represents only 529.7 thousand across 2 awards, indicating minimal diversification beyond the primary R&D category.

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 10 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
2020 400,272,009.03 400.27 million 171
2019 288,038,702.74 288.04 million 201
2018 274,245,519.00 274.25 million 168
2017 14,776,912.00 14.78 million 19

Insight

Over the last 10 years, JACOBS TECHNOLOGY INC. (CAGE 7EBK3) received $2.71 billion across 1,550 awards, averaging about $1.75 million per award. Obligations are concentrated in the most recent eight years, with annual funding generally ranging from $274.25 million to $400.27 million, compared with only $14.78 million in 2017. The profile indicates sustained, high-volume contracting activity, peaking in 2020 at $400.27 million and remaining elevated through 2025 at $352.21 million.

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