Federal Agency

COMMERCE, DEPARTMENT OF Federal Contract Obligations (Last 5 Years)

Procurement summary for the Department of Commerce (agency 1300) over the last 5 years, showing no recorded award actions in the provided data.

This page summarizes federal procurement activity for the Department of Commerce across the last 5 years. The provided dataset shows 0 award actions, with no vendor, NAICS, or annual trend detail available.

Generated at 03/21/2026

Analysis period: Last 5 years

Totals, averages, and trend fields are not populated in the source inputs, so this page reflects only the absence of recorded award activity.

Agency ID
1300
Total Obligated
0.00
Award Actions
0
Average Action Value
0.00

About COMMERCE, DEPARTMENT OF federal contract activity

FPDS Query shows no recorded award activity for COMMERCE, DEPARTMENT OF (Agency ID 1300) in the last 5 years, with an award count of 0. Because there are no obligations or awards in the available dataset, no spend concentration or average award value can be derived for this period.

Vendor concentration and leading contractors

No vendors appear in the top-vendor results for this agency during the analysis window. With zero awards recorded, there is no basis to identify recurring suppliers, vendor share, or vendor concentration patterns.

Industry profile based on NAICS activity

No NAICS categories are populated in the top-NAICS results for the last 5 years. The absence of award activity prevents classification of the agency's procurement demand by industry.

Annual contract trend over the analysis window

The annual trend series is empty, indicating no measurable award or obligation activity captured in the reporting window. As a result, there is no year-over-year pattern to assess for growth, decline, or volatility.

How to interpret this page

This page summarizes FPDS Query data for COMMERCE, DEPARTMENT OF over the last 5 years using agency-level award and obligation records. Metrics, vendor rankings, NAICS classifications, and trend statements reflect only the supplied dataset and are not supplemented with external sources.

Top Vendors

SELECT
    vendor_name,
    total_obligated,
    award_count,
    formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
    SELECT
        content__award__vendor__vendorHeader__vendorName AS vendor_name,
        sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
        count() AS award_count
    FROM fpds.data
    WHERE
        contract_type = 1
        AND content__award__purchaserInformation__contractingOfficeAgencyID = '1300'
        AND content__award__vendor__vendorHeader__vendorName IS NOT NULL
        AND content__award__vendor__vendorHeader__vendorName != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 YEAR
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
    GROUP BY vendor_name
)
ORDER BY total_obligated DESC
LIMIT 10
Vendor Total Obligated Readable Award Actions

Insight

No notable vendor concentration was available for this analysis window.

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__purchaserInformation__contractingOfficeAgencyID = '1300'
        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

Insight

No notable NAICS concentration was available for this analysis window.

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__purchaserInformation__contractingOfficeAgencyID = '1300'
        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

Insight

No annual trend data was available for this analysis window.

Use FPDS Query for deeper analysis

Explore federal procurement data with custom SQL, fast filtering, and deeper market analysis across agencies, vendors, NAICS, and contract trends.

Continue from this last 5 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.