Federal Contractor

J.E. DUNN CONSTRUCTION COMPANY Federal Contract Obligations (Last 5 Years)

Federal procurement profile for J.E. DUNN CONSTRUCTION COMPANY (CAGE 0LNN2, UEI Y9FCAN97NHC9) covering the last 5 years of award activity.

J.E. DUNN CONSTRUCTION COMPANY recorded 459 award actions and 867.38 million in obligated federal spending over the last 5 years, with an average action value of 1.89 million. The firm’s awards were concentrated in Department of the Army, Public Buildings Service, and Department of the Air Force activity, with most obligations tied to commercial and institutional building construction.

Generated at 03/21/2026

Analysis period: Last 5 years

Values reflect FPDS-observed obligations for the selected 5-year window and are organized by agency, NAICS code, and fiscal year.

CAGE Code
0LNN2
UEI
Y9FCAN97NHC9
Total Obligated
867.38 million
867,381,188.92
Award Actions
459
Average Action Value
1,889,719.36

About J.E. DUNN CONSTRUCTION COMPANY federal contract activity

J.E. DUNN CONSTRUCTION COMPANY (CAGE 0LNN2, UEI Y9FCAN97NHC9) recorded $867.38 million in FPDS obligations across 459 awards over the last 5 years, with an average award value of $1.89 million. The profile is heavily oriented toward federal construction activity, with award volume concentrated in building-related work rather than broad product or services procurement.

Agency mix and customer concentration

The Department of the Army is the largest buyer, accounting for $349.81 million across 268 awards, followed closely by the Public Buildings Service at $334.66 million across 176 awards. The Department of the Air Force adds another $182.91 million but on only 14 awards, indicating larger individual actions, while the FBI appears only once and at $0 obligated, suggesting a nominal or unpriced record.

Industry profile based on NAICS activity

NAICS 236220, Commercial and Institutional Building Construction, dominates the portfolio with $715.88 million across 447 awards, making it the core of the vendor’s federal workload. NAICS 236210, Industrial Building Construction, is the second-largest category at $151.47 million across 8 awards, while the remaining NAICS codes contribute only de minimis obligated amounts.

Annual contract trend over the analysis window

Annual obligations were volatile but remained substantial, peaking at $311.25 million in 2025 and $241.38 million in 2022. Award counts moved in the opposite direction from dollars in the later years, with 152 awards in 2021 falling to 41 in 2025, indicating a shift toward fewer, larger awards in the most recent period.

How to interpret this page

This page summarizes FPDS award records associated with CAGE code 0LNN2 and UEI Y9FCAN97NHC9 for the last 5 years. Totals, counts, agency mix, NAICS mix, and annual trend figures are based on obligated dollars and reported award counts in the provided analysis window; zero-obligation records are retained where present.

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 = '0LNN2'
        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
2100 DEPT OF THE ARMY 349,806,952.92 349.81 million 268
4740 PUBLIC BUILDINGS SERVICE 334,661,069.00 334.66 million 176
5700 DEPT OF THE AIR FORCE 182,913,167.00 182.91 million 14
1549 FEDERAL BUREAU OF INVESTIGATION 0.00 0.00 1

Insight

Over the last 5 years, J.E. DUNN CONSTRUCTION COMPANY received $867.38 million across 459 awards, with obligations concentrated in a small number of agencies. The Department of the Army and Public Buildings Service account for the largest shares, at $349.81 million across 268 awards and $334.66 million across 176 awards, respectively, together representing most of the vendor’s obligated value. The Department of the Air Force is a smaller but still significant source of obligations at $182.91 million across 14 awards, indicating a much higher average award value than the two largest agencies. The Federal Bureau of Investigation appears only once and with no obligated value, suggesting minimal activity in this period.

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 = '0LNN2'
        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
236220 COMMERCIAL AND INSTITUTIONAL BUILDING CONSTRUCTION 715,882,185.75 715.88 million 447
236210 INDUSTRIAL BUILDING CONSTRUCTION 151,470,288.17 151.47 million 8
532412 CONSTRUCTION, MINING, AND FORESTRY MACHINERY AND EQUIPMENT RENTAL AND LEASING 19,535.00 19.54 thousand 2
238990 ALL OTHER SPECIALTY TRADE CONTRACTORS 9,180.00 9.18 thousand 2

Insight

Over the last 5 years, J.E. DUNN CONSTRUCTION COMPANY (CAGE 0LNN2) received $867.38 million across 459 awards, with an average award value of $1.89 million. Obligations are highly concentrated in NAICS 236220, Commercial and Institutional Building Construction, which accounts for $715.88 million across 447 awards, or the clear majority of both dollars and actions. NAICS 236210, Industrial Building Construction, is a distant second at $151.47 million across 8 awards, while the remaining NAICS codes represent only negligible obligated amounts.

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 = '0LNN2'
        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 311,250,167.22 311.25 million 41
2024 107,228,244.62 107.23 million 72
2023 42,736,215.14 42.74 million 85
2022 241,381,813.16 241.38 million 109
2021 164,784,748.78 164.78 million 152

Insight

J.E. DUNN CONSTRUCTION COMPANY (CAGE 0LNN2) obligated $867.38 million across 459 awards over the last 5 years, with activity concentrated in 2025 and 2022. FY 2025 is the high point at $311.25 million across 41 awards, while FY 2023 is the low point at $42.74 million across 85 awards, indicating substantial year-to-year volatility in obligated dollars. Award volume peaked in FY 2021 at 152 awards and declined to 41 in FY 2025, suggesting fewer but materially larger obligations in the most recent year.

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.