This page summarizes federal procurement activity for the Mine Safety and Health Administration using the last full year of FPDS data. The dataset provided for this period shows zero award actions and no reported vendor, NAICS, or annual trend rows.
Federal Agency
MINE SAFETY AND HEALTH ADMINISTRATION Federal Contract Obligations (Last Year)
FPDS data for the Mine Safety and Health Administration (Agency ID 1645) shows no award actions recorded in the last full year.
Because the provided analysis window contains no award actions, totals and averages are not available from the supplied data.
About MINE SAFETY AND HEALTH ADMINISTRATION federal contract activity
During the last full year, FPDS Query shows no recorded awards for MINE SAFETY AND HEALTH ADMINISTRATION (Agency ID 1645), with an award count of 0 and no obligated dollars reported. Because there were no awards in the analysis window, average award value and total obligated amounts are not applicable.
Vendor concentration and leading contractors
No top vendors can be identified for this period because the agency has no recorded awards in the dataset. With zero award activity, there is no vendor concentration or supplier mix to summarize from FPDS Query results.
Industry profile based on NAICS activity
No NAICS concentration can be derived for the last full year because the agency recorded no awards. As a result, there are no industry codes associated with obligated activity for this analysis window.
Annual contract trend over the analysis window
The annual trend is flat at zero across the analysis window, reflecting no reported award activity in the last full year. With no transactions in the period, there is no basis for identifying growth, contraction, or seasonal patterns.
How to interpret this page
This page summarizes FPDS Query award records for MINE SAFETY AND HEALTH ADMINISTRATION using the last full year as the analysis window. Metrics reflect only reported awards in the available dataset; where no awards are present, related measures such as obligated dollars, average award value, vendors, NAICS, and trend are not applicable.
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 = '1645'
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 = '1645'
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 = '1645'
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.