Federal Contractor

BRASFIELD & GORRIE, L.L.C. Federal Contract Obligations (Last 5 Years)

Federal procurement profile for BRASFIELD & GORRIE, L.L.C. showing 5 years of obligations, awards, and agency and NAICS concentration.

Over the last 5 years, BRASFIELD & GORRIE, L.L.C. (CAGE 0L5R0, UEI TWVGJRMK6Z78) received $2,041,743,427.48 across 484 award actions, averaging $4,218,478.15 per action. Most of the obligation is tied to commercial and institutional building construction, with the Federal Bureau of Investigation and the Public Buildings Service as the largest funding agencies.

Generated at 03/21/2026

Analysis period: Last 5 years

Totals reflect the last 5 years of readable FPDS obligations and may differ slightly from rounded summary values.

CAGE Code
0L5R0
UEI
TWVGJRMK6Z78
Total Obligated
2.04 billion
2,041,743,427.48
Award Actions
484
Average Action Value
4,218,478.15

About BRASFIELD & GORRIE, L.L.C. federal contract activity

BRASFIELD & GORRIE, L.L.C. (CAGE 0L5R0, UEI TWVGJRMK6Z78) received 2.04 billion across 484 awards over the last 5 years, for an average award value of 4.22 million. The profile indicates a high-dollar, project-based federal construction vendor with activity concentrated in large civilian and defense-related facilities work.

Agency mix and customer concentration

The Federal Bureau of Investigation is the largest funding source by a wide margin, accounting for 1.16 billion across 67 awards. The Public Buildings Service is the primary volume driver with 385 awards and 816.75 million obligated, while the U.S. Coast Guard and Department of the Army contribute smaller but material shares of 31.68 million and 31.38 million, respectively.

Industry profile based on NAICS activity

Award activity is overwhelmingly concentrated in NAICS 236220, Commercial and Institutional Building Construction, which accounts for 2.02 billion across 475 awards. NAICS 236210, Industrial Building Construction, is a minor secondary category at 17.24 million across 9 awards, indicating limited diversification beyond building construction.

Annual contract trend over the analysis window

Obligations were uneven year to year, peaking in 2024 at 856.27 million and remaining elevated in 2025 at 165.57 million through the analysis window. Activity was also substantial in 2022 and 2023, while 2021 was lower at 213.83 million but had the highest award count at 124, suggesting smaller average award values that year.

How to interpret this page

This summary is based on FPDS award records for the last 5 years and uses obligated dollars, award counts, and average award value as reported in the provided analysis window. Agency and NAICS rankings reflect total obligated amounts within the dataset and do not infer work outside recorded federal obligations.

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 = '0L5R0'
        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
1549 FEDERAL BUREAU OF INVESTIGATION 1,161,928,883.69 1.16 billion 67
4740 PUBLIC BUILDINGS SERVICE 816,754,831.85 816.75 million 385
7008 U.S. COAST GUARD 31,681,078.00 31.68 million 8
2100 DEPT OF THE ARMY 31,378,633.94 31.38 million 24

Insight

Over the last 5 years, BRASFIELD & GORRIE, L.L.C. has received $2.04 billion across 484 awards, with obligation concentrated in two agencies. The Federal Bureau of Investigation accounted for $1.16 billion across 67 awards, while the Public Buildings Service accounted for $816.75 million across 385 awards, together representing the vast majority of obligated value. The remaining obligations were comparatively limited, with the U.S. Coast Guard at $31.68 million across 8 awards and the Department of the Army at $31.38 million across 24 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 = '0L5R0'
        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 2,024,500,133.16 2.02 billion 475
236210 INDUSTRIAL BUILDING CONSTRUCTION 17,243,294.32 17.24 million 9

Insight

Over the last 5 years, BRASFIELD & GORRIE, L.L.C. received 2.04 billion across 484 awards, with obligations heavily concentrated in NAICS 236220, Commercial and Institutional Building Construction. That code accounts for 2.02 billion across 475 awards, indicating the vendor’s federal award activity is overwhelmingly aligned to commercial/institutional construction. NAICS 236210, Industrial Building Construction, represents a much smaller share at 17.24 million across 9 awards, suggesting limited diversification beyond the primary construction 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 = '0L5R0'
        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 165,568,395.28 165.57 million 63
2024 856,272,287.35 856.27 million 72
2023 283,914,847.03 283.91 million 116
2022 522,155,805.09 522.16 million 109
2021 213,832,092.73 213.83 million 124

Insight

Over the last 5 years, BRASFIELD & GORRIE, L.L.C. received $2.04 billion across 484 awards, with obligations concentrated in 2024 at $856.27 million, or about 42% of the period total. Annual obligations were otherwise lower and uneven, ranging from $165.57 million in 2025 to $522.16 million in 2022, indicating significant year-to-year variability rather than a steady trajectory. Award volume was highest in 2021 at 124 awards and remained relatively elevated through 2023, while 2024 recorded the highest obligations on fewer awards, suggesting larger average award values in that 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.