Award Number

Award Number 8900 / DEEM0001971 Federal Contract Action Summary (Last Year)

Award number DEEM0001971 for agency 8900 shows one recorded action in the last full year with net obligations of -19.00 thousand.

This award record for PIID DEEM0001971 covers the last full year and includes a single action. The total obligated amount is -19,003.24, which averages to -19,003.24 per action.

Generated at 03/20/2026

Analysis period: Last full year

Amounts are shown as reported and may reflect de-obligations or other negative adjustments in the award record.

Agency ID
8900
PIID
DEEM0001971
Type
Award
Total Obligated
-19.00 thousand
-19,003.24
Actions
1
Average Action Value
-19,003.24

Overview

The award number DEEM0001971 is associated with agency 8900 and shows activity in the last full year. The record contains one award action with total obligated amounts of -19,003.24, indicating a net negative obligation for the period.

How to use this page

Use this page to review the award’s reported obligation total, action count, and average action value for the last full year. The negative total should be interpreted in the context of the underlying FPDS record and any reported adjustments.

Top Agencies

SELECT
    content__award__purchaserInformation__contractingOfficeAgencyID AS agency_id,
    content__award__purchaserInformation__contractingOfficeAgencyID__name AS agency_name,
    sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
    count() AS award_count,
    formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
    content__award__awardID__awardContractID__agencyID = '8900' AND content__award__awardID__awardContractID__PIID = 'DEEM0001971'
    AND content__award__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
    AND content__award__purchaserInformation__contractingOfficeAgencyID != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY
    agency_id,
    agency_name
ORDER BY total_obligated DESC
LIMIT 10
Agency ID Agency Name Total Obligated Readable Actions
8900 ENERGY, DEPARTMENT OF -19,003.24 -19.00 thousand 1

Insight

Within the 1-year window for PIID DEEM0001971, obligations are concentrated entirely within the Department of Energy, which accounts for the full reported activity in this view. The single award reflects a net obligation of -$19.0 thousand across one record, indicating a downward adjustment rather than positive funding growth. No other agencies are represented in the provided data, so there is no observable distribution across top agencies.

Top Vendors

SELECT
    vendor_name,
    cage_code,
    total_obligated,
    award_count,
    formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
    SELECT
        content__award__vendor__vendorHeader__vendorName AS vendor_name,
        ifNull(content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode, '') AS cage_code,
        sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
        count() AS award_count
    FROM fpds.data
    WHERE
        content__award__awardID__awardContractID__agencyID = '8900' AND content__award__awardID__awardContractID__PIID = 'DEEM0001971'
        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,
        cage_code
)
ORDER BY total_obligated DESC
LIMIT 10
Vendor CAGE Code Total Obligated Readable Actions
NUCLEAR WASTE PARTNERSHIP LLC 6HF85 -19,003.24 -19.00 thousand 1

Insight

Over the 1-year window for PIID DEEM0001971, all reported obligations in the top_vendors view are concentrated with NUCLEAR WASTE PARTNERSHIP LLC (CAGE 6HF85). This vendor accounts for a single award and a negative total obligated amount of $19.0 thousand, indicating a downward net obligation movement in the period. No other vendors are present in the provided rows, so distribution is fully concentrated in one supplier.

Top NAICS

SELECT
    content__award__productOrServiceInformation__principalNAICSCode AS naics_code,
    content__award__productOrServiceInformation__principalNAICSCode__description AS naics_name,
    sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
    count() AS award_count,
    formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
    content__award__awardID__awardContractID__agencyID = '8900' AND content__award__awardID__awardContractID__PIID = 'DEEM0001971'
    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,
    naics_name
ORDER BY total_obligated DESC
LIMIT 10
NAICS Code Description Total Obligated Readable Actions
561210 FACILITIES SUPPORT SERVICES -19,003.24 -19.00 thousand 1

Insight

Award PIID DEEM0001971 is concentrated in a single NAICS category, 561210, Facilities Support Services, which accounts for the full reported activity in this 1-year window. The obligation is negative at -$19.0 thousand across one award action, indicating a deobligation or downward adjustment rather than new funding. With no additional NAICS categories represented, the award’s obligations are not diversified across industries.

Top PSC Codes

SELECT
    content__award__productOrServiceInformation__productOrServiceCode AS psc_code,
    content__award__productOrServiceInformation__productOrServiceCode__description AS psc_name,
    sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
    count() AS award_count,
    formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
    content__award__awardID__awardContractID__agencyID = '8900' AND content__award__awardID__awardContractID__PIID = 'DEEM0001971'
    AND content__award__productOrServiceInformation__productOrServiceCode IS NOT NULL
    AND content__award__productOrServiceInformation__productOrServiceCode != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY
    psc_code,
    psc_name
ORDER BY total_obligated DESC
LIMIT 10
PSC Code Description Total Obligated Readable Actions
F999 OTHER ENVIRONMENTAL SERVICES -19,003.24 -19.00 thousand 1

Insight

Obligations for PIID DEEM0001971 under agency 8900 are fully concentrated in PSC F999, Other Environmental Services. The single award in the 1-year window carries a net obligation of -$19.0 thousand, indicating a deobligation or negative adjustment rather than positive funding. With only one PSC represented, there is no distribution across categories and no evidence of diversification in the recorded activity.

Annual Trend

SELECT
    toYear(parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate)) AS year,
    sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
    formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable,
    count() AS award_count
FROM fpds.data
WHERE
    content__award__awardID__awardContractID__agencyID = '8900' AND content__award__awardID__awardContractID__PIID = 'DEEM0001971'
    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 ASC
Year Total Obligated Readable Actions
2025 -19,003.24 -19.00 thousand 1

Insight

For PIID DEEM0001971, all recorded obligated activity in the 1-year window is concentrated in a single award action in FY2025. That action shows net negative obligations of $19.0 thousand, indicating a downward adjustment rather than new positive funding. With only one observed year and one award count, there is no multi-year distribution or trend pattern to assess beyond this isolated deobligation.

Use FPDS Query for deeper award and vehicle analysis

Explore federal procurement data with custom SQL, fast filtering, and deeper contract action analysis across agencies, vendors, NAICS, PSC, and annual trends.

Continue from this last full year view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.