Geography

Puerto Rico Federal Contract Obligations (Last Year)

This page summarizes federal contract obligations in Puerto Rico for last full year, including award volume and market trend context.

Use this page to review federal contract obligations in Puerto Rico for last full year. The analysis is based on FPDS award-action data.

Generated at 03/15/2026

Analysis period: Last full year

All figures on this page are based on FPDS award-action obligation data for completed calendar years only within the last full year analysis window.

State Code
PR
State
Puerto Rico
Total Obligated
928.02 million
928,017,463.43
Award Actions
6,267
Average Action Value
148,080.01

About Puerto Rico federal contract activity

This page summarizes last full year of federal contract activity associated with Puerto Rico. Based on the current FPDS Query dataset, this geography shows 928.02 million in visible obligations across 6,267 award actions, with an average action value of 148,080.01. This view is designed to help users quickly understand scale, buyer concentration, contractor concentration, and overall market direction before moving into deeper procurement analysis.

Agency demand and leading federal buyers

Demand in Puerto Rico appears concentrated among a relatively small group of federal buyers over the last full year. The visible agency ranking is led by DEFENSE LOGISTICS AGENCY, with 333.29 million in obligations, followed by DEPT OF THE ARMY. This kind of concentration is useful context for business development, bid targeting, and understanding where the strongest federal demand appears to sit.

Vendor concentration and leading contractors

The vendor distribution helps show which contractors capture the largest visible share of obligations in Puerto Rico over the last full year. The current ranking is led by M M MANUFACTURING LLC, with 74.02 million in obligations, followed by NOVEL CONSTRUCTION LLC. This gives users a practical view of the competitive landscape and the visible concentration at the top of the market.

Annual contract trend over the analysis window

The annual trend table provides a year-based view of how visible obligations and award actions have evolved in Puerto Rico across the last full year, from 2025 through 2025. This is useful for spotting periods of expansion, relative stability, or softening activity in this federal market.

How to interpret this page

The tables and trend blocks on this page are generated from FPDS-derived procurement records prepared offline for fast public delivery. They are intended to give a practical summary of geography-level obligations, top buying agencies, leading vendors, major industries, major PSC categories, and visible year-over-year movement within last full year. Users who need deeper filtering, custom SQL, or cross-market comparison can continue the analysis directly inside FPDS Query.

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__placeOfPerformance__principalPlaceOfPerformance__stateCode = 'PR'
        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
97AS DEFENSE LOGISTICS AGENCY 333,286,608.08 333.29 million 1,554
2100 DEPT OF THE ARMY 208,442,463.73 208.44 million 521
3600 VETERANS AFFAIRS, DEPARTMENT OF 66,647,822.25 66.65 million 463
5700 DEPT OF THE AIR FORCE 40,652,099.72 40.65 million 36
7008 U.S. COAST GUARD 40,273,834.44 40.27 million 118
1700 DEPT OF THE NAVY 37,755,985.90 37.76 million 258
4740 PUBLIC BUILDINGS SERVICE 33,132,562.91 33.13 million 195
1605 OFFICE OF THE ASSISTANT SECRETARY FOR ADMINISTRATION AND MANAGEMENT 21,780,657.30 21.78 million 21
6925 FEDERAL HIGHWAY ADMINISTRATION 20,728,237.03 20.73 million 38
7001 OFFICE OF PROCUREMENT OPERATIONS 16,767,892.92 16.77 million 39

Insight

Puerto Rico contract activity over the last full year appears concentrated among a relatively small group of buying agencies. The visible ranking is led by DEFENSE LOGISTICS AGENCY, followed by DEPT OF THE ARMY, which suggests that federal demand in this geography is not evenly distributed.

Top Vendors

SELECT
    vendor_name,
    cage_code,
    total_obligated,
    award_count,
    formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
    SELECT
        content__award__vendor__vendorHeader__vendorName AS vendor_name,
        ifNull(content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode, '') AS cage_code,
        sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
        count() AS award_count
    FROM fpds.data
    WHERE
        contract_type = 1
        AND content__award__placeOfPerformance__principalPlaceOfPerformance__stateCode = 'PR'
        AND content__award__vendor__vendorHeader__vendorName IS NOT NULL
        AND content__award__vendor__vendorHeader__vendorName != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 YEAR
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
    GROUP BY
        vendor_name,
        cage_code
)
ORDER BY total_obligated DESC
LIMIT 10
Vendor CAGE Code Total Obligated Readable Award Actions
M M MANUFACTURING LLC 65G96 74,024,050.75 74.02 million 122
NOVEL CONSTRUCTION LLC 8G3N5 70,465,919.16 70.47 million 11
SNC MANUFACTURING, LLC 3D0A5 33,731,930.40 33.73 million 28
TIP TOP CONSTRUCTION CORP 1BSC4 28,683,055.00 28.68 million 2
PROPPER INTERNATIONAL, INC. 8A749 28,521,092.46 28.52 million 46
PRAK INDUSTRIES LLC 01QH8 26,767,001.92 26.77 million 13
PROPPER INTERNATIONAL INC 8A749 26,214,836.80 26.21 million 34
KANDOR MANUFACTURING INC 1UPJ8 25,904,282.00 25.90 million 50
AURORA INDUSTRIES LLC 5JFJ4 25,835,360.70 25.84 million 27
F & R CONSTRUCTION GROUP INC 5BC45 22,274,323.87 22.27 million 2

Insight

Visible obligations in Puerto Rico over the last full year appear concentrated among a relatively small set of leading vendors. M M MANUFACTURING LLC ranks first, followed by NOVEL CONSTRUCTION LLC, which helps define the current competitive landscape in this geography.

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__placeOfPerformance__principalPlaceOfPerformance__stateCode = 'PR'
        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
315210 CUT AND SEW APPAREL CONTRACTORS 168,355,685.76 168.36 million 266
236220 COMMERCIAL AND INSTITUTIONAL BUILDING CONSTRUCTION 138,695,611.86 138.70 million 247
237990 OTHER HEAVY AND CIVIL ENGINEERING CONSTRUCTION 79,010,669.80 79.01 million 46
315250 CUT AND SEW APPAREL MANUFACTURING (EXCEPT CONTRACTORS) 66,128,493.40 66.13 million 120
541330 ENGINEERING SERVICES 55,031,670.49 55.03 million 140
237310 HIGHWAY, STREET, AND BRIDGE CONSTRUCTION 34,381,309.07 34.38 million 60
561612 SECURITY GUARDS AND PATROL SERVICES 32,704,745.88 32.70 million 98
811210 ELECTRONIC AND PRECISION EQUIPMENT REPAIR AND MAINTENANCE 24,735,462.29 24.74 million 50
314910 TEXTILE BAG AND CANVAS MILLS 22,899,945.87 22.90 million 16
315990 APPAREL ACCESSORIES AND OTHER APPAREL MANUFACTURING 22,797,019.11 22.80 million 36

Insight

The top-NAICS table highlights the industries with the largest visible obligations in Puerto Rico over the last full year. This helps show which federal market segments are most prominent in the state.

Top PSC Codes

SELECT
    psc_code,
    psc_name,
    total_obligated,
    award_count,
    formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
    SELECT
        content__award__productOrServiceInformation__productOrServiceCode AS psc_code,
        anyHeavy(content__award__productOrServiceInformation__productOrServiceCode__description) AS psc_name,
        sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
        count() AS award_count
    FROM fpds.data
    WHERE
        contract_type = 1
        AND content__award__placeOfPerformance__principalPlaceOfPerformance__stateCode = 'PR'
        AND content__award__productOrServiceInformation__productOrServiceCode IS NOT NULL
        AND content__award__productOrServiceInformation__productOrServiceCode != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 YEAR
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
    GROUP BY psc_code
)
ORDER BY total_obligated DESC
LIMIT 10
PSC Code Description Total Obligated Readable Award Actions
8415 CLOTHING, SPECIAL PURPOSE 204,845,399.79 204.85 million 296
Y1JZ CONSTRUCTION OF MISCELLANEOUS BUILDINGS 92,242,423.94 92.24 million 41
Y1KB CONSTRUCTION OF CANALS 57,641,526.40 57.64 million 5
8405 OUTERWEAR, MEN'S 57,546,580.91 57.55 million 120
8465 INDIVIDUAL EQUIPMENT 50,173,097.47 50.17 million 66
Y1LB CONSTRUCTION OF HIGHWAYS, ROADS, STREETS, BRIDGES, AND RAILWAYS 33,704,552.54 33.70 million 63
S206 HOUSEKEEPING- GUARD 32,012,598.66 32.01 million 93
Z2QA REPAIR OR ALTERATION OF RESTORATION OF REAL PROPERTY (PUBLIC OR PRIVATE) 24,443,425.55 24.44 million 17
DG01 IT AND TELECOM - NETWORK SUPPORT SERVICES (LABOR) 21,996,828.11 22.00 million 14
S201 HOUSEKEEPING- CUSTODIAL JANITORIAL 21,695,432.31 21.70 million 76

Insight

The top-PSC table highlights the product and service codes with the largest visible obligations in Puerto Rico over the last full year. This helps show which categories of federal demand are most prominent in the state.

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__placeOfPerformance__principalPlaceOfPerformance__stateCode = 'PR'
        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 928,017,463.43 928.02 million 6,267

Insight

The annual trend shows how obligations in Puerto Rico moved across the last full year, from 2025 through 2025. This helps users judge whether visible contract activity appears stable, rising, or easing over time.

Use FPDS Query for deeper geographic analysis

Explore federal procurement data with custom SQL, fast filtering, and deeper geographic analysis across agencies, vendors, industries, PSC categories, 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.