This page summarizes federal award activity reported for the Bureau of Labor Statistics over the last 5 years. The current dataset shows 0 award actions and no populated obligation, vendor, NAICS, or annual trend details.
Federal Agency
BUREAU OF LABOR STATISTICS Federal Contract Obligations (Last 5 Years)
FPDS procurement summary for the Bureau of Labor Statistics (Agency ID 1625) covering the last 5 years.
Values on this page reflect the provided FPDS query inputs only and may be blank where no award activity or summary data was available.
About BUREAU OF LABOR STATISTICS federal contract activity
FPDS Query returned no obligated award records for the Bureau of Labor Statistics (Agency ID 1625) in the last 5 years. With an award count of 0 and no obligated dollar value reported, there is no procurement activity available in this analysis window to summarize at the agency level.
Vendor concentration and leading contractors
No top vendors can be identified because the dataset contains no award records for the Bureau of Labor Statistics during the period analyzed. As a result, vendor concentration, recurring counterparties, and spend distribution by supplier cannot be assessed from the available data.
Industry profile based on NAICS activity
No NAICS codes are present in the returned award set, so there is no contract activity to categorize by industry. This prevents analysis of the agency’s procurement mix, service or product dependence, and any shifts in buying patterns across sectors.
Annual contract trend over the analysis window
The annual trend is flat at zero across the analysis window, based on the absence of reported awards. There is no observable year-over-year change in obligations or award volume because no procurement records were returned for the period.
How to interpret this page
This summary is based on FPDS Query results for Agency ID 1625 over the last 5 years. Because the returned dataset contains no awards, the narrative reflects the absence of recorded procurement activity rather than an inferred spend profile.
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 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 = '1625'
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 = '1625'
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.