Federal Agency

BUREAU OF LABOR STATISTICS Federal Contract Obligations (Last Year)

Federal procurement profile for the Bureau of Labor Statistics (Agency ID 1625) covering the last full year, with no recorded award actions in the provided data.

This page summarizes federal procurement activity for the Bureau of Labor Statistics for the last full year. The provided dataset shows zero award actions and no listed top vendors, NAICS categories, or annual trend entries.

Generated at 03/21/2026

Analysis period: Last full year

Values shown here reflect only the inputs provided for this analysis window and do not include unreported or missing totals.

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

About BUREAU OF LABOR STATISTICS federal contract activity

During the last full year, the Bureau of Labor Statistics recorded no award activity in the provided FPDS Query dataset, with an award count of 0 and no reported obligated dollars. As a result, there is no measurable procurement throughput to summarize for this period.

Vendor concentration and leading contractors

No vendor concentration can be assessed because the dataset contains no recorded awards for the Bureau of Labor Statistics in the analysis window. With no obligated value or award count, there are no top vendors to identify or rank.

Industry profile based on NAICS activity

No NAICS pattern can be derived from the provided data because there were no awards associated with the Bureau of Labor Statistics during the last full year. The absence of contract actions prevents meaningful classification of spending by industry code.

Annual contract trend over the analysis window

The annual trend is flat at zero for the analysis window, reflecting no recorded obligations and no awards in the dataset. With no year-over-year activity points available, trend analysis is limited to confirming the absence of procurement transactions.

How to interpret this page

This summary is based solely on the FPDS Query inputs provided for the Bureau of Labor Statistics (Agency ID 1625) over the last full year. Where the dataset contains null or empty fields, conclusions are limited to observed values only and no estimates or assumptions are applied.

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 = '1625'
        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 = '1625'
        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 = '1625'
        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.