Across the analysis window, BRASFIELD & GORRIE, L.L.C. held $165,568,395.28 in obligated federal awards across 63 actions, for an average action value of $2,628,069.76. Most of the activity came from the Federal Bureau of Investigation and from NAICS 236220, Commercial and Institutional Building Construction.
Federal Contractor
BRASFIELD & GORRIE, L.L.C. Federal Contract Obligations (Last Year)
BRASFIELD & GORRIE, L.L.C. recorded 63 federal award actions totaling $165.57 million in the last full year, led by work for the Federal Bureau of Investigation and concentrated in commercial and institutional building construction.
Totals, counts, and averages reflect the last full year and are based on readable and exact obligation values provided for this vendor.
About BRASFIELD & GORRIE, L.L.C. federal contract activity
BRASFIELD & GORRIE, L.L.C. (CAGE 0L5R0, UEI TWVGJRMK6Z78) received 165.57 million across 63 FPDS-observed awards in the last full year, for an average award value of 2.63 million. The obligation profile is highly concentrated, indicating a small number of large awards rather than broad, low-dollar activity.
Agency mix and customer concentration
The Federal Bureau of Investigation accounted for 152.68 million across 17 awards, representing the clear majority of obligated value. The Public Buildings Service was the second-largest customer at 12.16 million across 37 awards, while the Department of the Army and U.S. Coast Guard contributed only modest amounts, each well below 1 million.
Industry profile based on NAICS activity
Contracting activity was dominated by NAICS 236220, Commercial and Institutional Building Construction, which represented 165.20 million across 58 awards. NAICS 236210, Industrial Building Construction, accounted for the remaining 370.68 thousand across 5 awards, showing that the vendor's federal work in this window was overwhelmingly tied to building construction rather than industrial construction.
Annual contract trend over the analysis window
All observed obligations occurred in 2025, totaling 165.57 million across 63 awards. Because the analysis window covers only the last full year, this dataset supports a point-in-time view rather than a multi-year trend assessment.
How to interpret this page
This summary is based on FPDS-observed obligations for the last full year and is limited to the vendor identifiers provided: CAGE 0L5R0 and UEI TWVGJRMK6Z78. Agency and NAICS mixes reflect obligated dollars and award counts in the supplied dataset; no additional sourcing, normalization, or extrapolation was 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 = '0L5R0'
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 |
|---|---|---|---|---|
| 1549 | FEDERAL BUREAU OF INVESTIGATION | 152,675,549.92 | 152.68 million | 17 |
| 4740 | PUBLIC BUILDINGS SERVICE | 12,155,662.00 | 12.16 million | 37 |
| 2100 | DEPT OF THE ARMY | 371,683.36 | 371.68 thousand | 6 |
| 7008 | U.S. COAST GUARD | 365,500.00 | 365.50 thousand | 3 |
Insight
During the last full year, BRASFIELD & GORRIE, L.L.C. received $165.57 million across 63 awards, with obligations heavily concentrated in the Federal Bureau of Investigation. FBI actions totaled $152.68 million across 17 awards, accounting for the clear majority of obligated value and indicating a highly skewed agency distribution. The Public Buildings Service was the only other material customer at $12.16 million and 37 awards, while the Department of the Army and U.S. Coast Guard contributed comparatively small obligations of $371.68 thousand and $365.50 thousand, respectively.
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 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 | 165,197,711.92 | 165.20 million | 58 |
| 236210 | INDUSTRIAL BUILDING CONSTRUCTION | 370,683.36 | 370.68 thousand | 5 |
Insight
During the last full year, BRASFIELD & GORRIE, L.L.C. obligations were highly concentrated in NAICS 236220, Commercial and Institutional Building Construction, which accounted for $165.20 million across 58 awards, or nearly all reported obligated value. NAICS 236210, Industrial Building Construction, was a minor secondary category at $370.68 thousand across 5 awards. This pattern indicates the vendor’s federal activity in the period was overwhelmingly tied to commercial and institutional building work, with limited diversification across 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 = '0L5R0'
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 | 165,568,395.28 | 165.57 million | 63 |
Insight
In the last full year, BRASFIELD & GORRIE, L.L.C. (CAGE 0L5R0) recorded $165.57 million in total obligated value across 63 awards. This equates to an average award value of approximately $2.63 million, indicating a moderately concentrated award profile rather than a highly fragmented distribution. With only one annual observation in the 1-year window, no year-over-year trend can be assessed from the provided data.
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.