Federal Agency

NATURAL RESOURCES CONSERVATION SERVICE Federal Contract Obligations (Last Year)

FPDS query page for the Natural Resources Conservation Service (agency ID 12C3) covering the last full year, with no recorded award actions in the provided data.

This page summarizes federal procurement activity for the Natural Resources Conservation Service during the last full year using the inputs provided. The dataset shows 0 award actions and no available obligation, vendor, NAICS, or annual trend detail.

Generated at 03/21/2026

Analysis period: Last full year

No award-level or aggregate procurement values were provided beyond an award action count of 0, so the page reflects an empty results set for this analysis window.

Agency ID
12C3
Total Obligated
0.00
Award Actions
0
Average Action Value
0.00

About NATURAL RESOURCES CONSERVATION SERVICE federal contract activity

For the last full year, FPDS Query shows no reported award activity for the Natural Resources Conservation Service (Agency ID 12C3), with an award count of 0. Because no obligations were recorded, total obligated amount and average award value are not available for this analysis period.

Vendor concentration and leading contractors

No vendor concentration can be assessed for the Natural Resources Conservation Service in the last full year because there were no reported awards. With no obligations or award records, there are no suppliers to rank or compare.

Industry profile based on NAICS activity

No NAICS distribution can be derived for this agency in the last full year because the award file contains no reported contracts. As a result, there is no basis to identify the agency's primary acquisition categories or sector mix.

Annual contract trend over the analysis window

The annual trend for the last full year is flat at zero reported awards and zero obligations. With no prior points in the provided trend dataset, there is no observable month-to-month or quarter-to-quarter procurement pattern to analyze.

How to interpret this page

This summary is based on the provided FPDS Query outputs for the Natural Resources Conservation Service, Agency ID 12C3, covering the last full year. Findings are limited to the supplied metrics; where records are absent, no additional inference is made.

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 = '12C3'
        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 = '12C3'
        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 = '12C3'
        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.