Federal Agency

COMMERCE, DEPARTMENT OF Federal Contract Obligations (Last Year)

FPDS procurement summary for the Department of Commerce (Agency ID 1300) covering the last full year, with no recorded award actions in the provided data.

This page summarizes federal procurement activity for the Department of Commerce (Agency ID 1300) over the last full year. The provided dataset shows zero award actions, so no vendor, NAICS, or annual trend detail is available for this period.

Generated at 03/21/2026

Analysis period: Last full year

All fields are based on the supplied FPDS inputs; with zero award actions, related totals and breakdowns are not populated.

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

About COMMERCE, DEPARTMENT OF federal contract activity

In the last full year, COMMERCE, DEPARTMENT OF (Agency ID 1300) recorded no obligation activity in the available FPDS Query summary, with an award count of 0. Because no awards are reflected in the dataset, total obligated dollars and average award value are unavailable for this period.

Vendor concentration and leading contractors

No top vendor concentration can be assessed for this analysis window because the agency summary contains no recorded awards. With no vendor-level obligations present, there is no basis for identifying recurring suppliers or market share.

Industry profile based on NAICS activity

No NAICS concentration is identifiable from the available summary because the agency registered zero awards in the last full year. As a result, there is no observable industry mix to characterize for this period.

Annual contract trend over the analysis window

No annual trend analysis can be derived from the provided data because the annual series is empty and there are no recorded obligations. The absence of award activity limits the ability to compare year-over-year movement or detect changes in procurement volume.

How to interpret this page

This summary is based solely on the FPDS Query agency-level data provided for the last full year. Findings are limited to the reported metrics and do not infer activity beyond the available award, vendor, NAICS, or trend fields.

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

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 1 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 full year view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.