Federal Contractor

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

Federal procurement profile for J.E. DUNN CONSTRUCTION COMPANY (CAGE 0LNN2, UEI Y9FCAN97NHC9) showing last full year obligations and award activity.

In the last full year, J.E. DUNN CONSTRUCTION COMPANY recorded 41 federal award actions totaling 311.25 million in obligated value, for an average action value of 7.59 million. Most obligations came from the Public Buildings Service, with additional awards from the Department of the Air Force and the Department of the Army, and the largest NAICS concentration was in commercial and institutional building construction.

Generated at 03/21/2026

Analysis period: Last full year

Figures reflect the selected analysis window and are based on obligated amounts and award counts shown in the FPDS query data.

CAGE Code
0LNN2
UEI
Y9FCAN97NHC9
Total Obligated
311.25 million
311,250,167.22
Award Actions
41
Average Action Value
7,591,467.49

About J.E. DUNN CONSTRUCTION COMPANY federal contract activity

J.E. DUNN CONSTRUCTION COMPANY recorded $311.25 million in FPDS-observed obligations across 41 awards in the last full year, for an average award value of about $7.59 million. The vendor profile is heavily concentrated in construction-related federal work, with activity spread across multiple awarding agencies but dominated by a small set of buyers.

Agency mix and customer concentration

The PUBLIC BUILDINGS SERVICE accounted for the largest share of obligations at $158.32 million across 29 awards, making it the primary federal customer in the period. The DEPT OF THE AIR FORCE followed with $96.68 million on 3 awards, while the DEPT OF THE ARMY obligated $56.25 million across 9 awards, indicating meaningful concentration in civilian buildings and defense-related construction demand.

Industry profile based on NAICS activity

Contracting activity was concentrated in NAICS 236220, COMMERCIAL AND INSTITUTIONAL BUILDING CONSTRUCTION, which represented $160.50 million across 37 awards. NAICS 236210, INDUSTRIAL BUILDING CONSTRUCTION, accounted for the remaining major share at $150.75 million across 4 awards, showing a near-even split in obligated dollars between commercial/institutional and industrial building work.

Annual contract trend over the analysis window

The available annual trend shows all observed obligations in 2025, totaling $311.25 million across 41 awards. With only one year in scope, the data support a point-in-time view rather than a multi-year growth or decline assessment.

How to interpret this page

This summary is based on FPDS-observed awards associated with CAGE 0LNN2 and UEI Y9FCAN97NHC9 during the last full year. Agency, NAICS, and trend figures reflect obligated dollars and award counts as provided, and no additional assumptions were applied.

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 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
4740 PUBLIC BUILDINGS SERVICE 158,319,453.00 158.32 million 29
5700 DEPT OF THE AIR FORCE 96,676,979.00 96.68 million 3
2100 DEPT OF THE ARMY 56,253,735.22 56.25 million 9

Insight

J.E. DUNN CONSTRUCTION COMPANY’s obligations are concentrated among three agencies, which account for the full 311.25 million obligated in the last full year. PUBLIC BUILDINGS SERVICE is the primary buyer, representing 158.32 million across 29 awards, or just over half of total obligations, indicating a strong concentration in civilian building-related procurement. DEPT OF THE AIR FORCE follows with 96.68 million across 3 awards, while DEPT OF THE ARMY accounts for 56.25 million across 9 awards, showing a smaller but material defense share with fewer, higher-value awards.

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 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
236220 COMMERCIAL AND INSTITUTIONAL BUILDING CONSTRUCTION 160,501,201.05 160.50 million 37
236210 INDUSTRIAL BUILDING CONSTRUCTION 150,748,966.17 150.75 million 4

Insight

During the last full year, J.E. DUNN CONSTRUCTION COMPANY (CAGE 0LNN2) received $311.25 million across 41 awards, with obligations concentrated in two construction NAICS. NAICS 236220, Commercial and Institutional Building Construction, accounted for $160.50 million across 37 awards, representing the larger share of activity by count and dollars. NAICS 236210, Industrial Building Construction, contributed $150.75 million across 4 awards, indicating a smaller number of awards but nearly equal obligated value, with spend distributed almost evenly across the two NAICS codes.

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 1 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

Insight

During the last full year, J.E. DUNN CONSTRUCTION COMPANY (CAGE 0LNN2) recorded $311.25 million in obligated dollars across 41 awards, yielding an average award value of about $7.59 million. The activity is concentrated in a single annual period provided for 2025, so no year-over-year trend can be assessed from this window. The award profile indicates a moderate number of actions supporting a relatively high total obligation level, suggesting sizable individual awards rather than broad fragmentation.

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.