Award Number

Award Number 9100 / 0002 Federal Contract Action Summary (Last Year)

Award number 0002 for agency 9100 shows two recorded actions in the last full year and a net obligation of -139.11 thousand.

This page summarizes award 0002 under agency ID 9100 for the last full year. The award shows a total obligated amount of -139,108.68 across 2 actions, for an average action value of -69,554.34.

Generated at 03/20/2026

Analysis period: Last full year

Amounts reflect the provided analysis window and may include negative obligations as reported in the source data.

Agency ID
9100
PIID
0002
Type
Award
Total Obligated
-139.11 thousand
-139,108.68
Actions
2
Average Action Value
-69,554.34

Overview

In the last full year, award 0002 for agency ID 9100 recorded 2 award actions. The total obligated amount was -139,108.68, which reads as -139.11 thousand on this page.

How to use this page

Use this page to review the award-level obligation total, action count, and average action value for the selected period. The average action value across the 2 actions is -69,554.34, which provides a simple summary of the reported activity.

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 = '9100' AND content__award__awardID__awardContractID__PIID = '0002'
    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
9100 EDUCATION, DEPARTMENT OF -139,108.68 -139.11 thousand 2

Insight

For PIID 0002 over the last year, obligations are entirely concentrated within the Department of Education (Agency 9100), with no other top-agency entries provided. The recorded total obligated amount is negative $139,108.68 across 2 awards, indicating a net deobligation or adjustment rather than positive spend. This pattern suggests the award activity for this PIID is limited and driven by reversals or downward modifications within a single agency.

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 = '9100' AND content__award__awardID__awardContractID__PIID = '0002'
        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
SYNERGY ENTERPRISES, INC. 3GS77 -59,974.92 -59.97 thousand 1
FMR CONSULTING INC 3LPB5 -79,133.76 -79.13 thousand 1

Insight

For PIID 0002 over the past year, obligations are concentrated in two vendors, each with a single award action. FMR CONSULTING INC (CAGE 3LPB5) has the larger negative obligated amount at -$79.13 thousand, followed by SYNERGY ENTERPRISES, INC. (CAGE 3GS77) at -$59.97 thousand. The similar award counts and modest spread in obligated values indicate limited vendor dispersion within this award record.

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 = '9100' AND content__award__awardID__awardContractID__PIID = '0002'
    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
541720 RESEARCH AND DEVELOPMENT IN THE SOCIAL SCIENCES AND HUMANITIES -59,974.92 -59.97 thousand 1
541219 OTHER ACCOUNTING SERVICES -79,133.76 -79.13 thousand 1

Insight

For PIID 0002 over the past year, obligations are concentrated in two NAICS categories, each represented by a single award. Other Accounting Services (541219) carries the larger deobligation at -$79.13 thousand, followed by Research and Development in the Social Sciences and Humanities (541720) at -$59.97 thousand. This pattern indicates a narrow distribution of activity with negative obligations concentrated in isolated awards rather than spread across multiple NAICS codes.

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 = '9100' AND content__award__awardID__awardContractID__PIID = '0002'
    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
AF11 EDUCATION, TRAINING, EMPLOYMENT, & SOCIAL SVCS R&D SVCS; EDUCATION SVCS R&D; BASIC RESEARCH -59,974.92 -59.97 thousand 1
R499 SUPPORT- PROFESSIONAL: OTHER -79,133.76 -79.13 thousand 1

Insight

Obligations for PIID 0002 are concentrated in two PSCs, each represented by a single award action, with negative net obligations over the 1-year window. R499, Support- Professional: Other, accounts for the larger share at -$79.13 thousand, followed by AF11, which reflects -$59.97 thousand. The presence of two one-award PSCs with similar magnitude and negative values suggests limited PSC diversification and a net downward adjustment in obligated amounts.

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 = '9100' AND content__award__awardID__awardContractID__PIID = '0002'
    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 -139,108.68 -139.11 thousand 2

Insight

For Agency 9100 award PIID 0002 over the 1-year window, obligated activity is concentrated in a single reported year, FY 2025. The award recorded 2 actions with net obligations of -$139.11 thousand, indicating an overall deobligation position for the period. With no other years in the provided data, there is no observable year-over-year trend to assess beyond this FY 2025 concentration.

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.