Award Number

Award Number 7590 / 75ACF121C00020 Federal Contract Action Summary (Last Year)

Award number 75ACF121C00020 for agency ID 7590 shows 2 award actions and $11.00 million obligated in the last full year.

This page summarizes federal procurement activity for award number 75ACF121C00020 under agency ID 7590. In the last full year, the award recorded 2 actions with total obligations of $11.00 million and an average action value of $5.5 million.

Generated at 03/20/2026

Analysis period: Last full year

Totals reflect the last full year and use the provided obligated amounts and action count for award number 75ACF121C00020.

Agency ID
7590
PIID
75ACF121C00020
Type
Award
Total Obligated
11.00 million
11,000,000.00
Actions
2
Average Action Value
5,500,000.00

Overview

The award number 75ACF121C00020 record for agency ID 7590 shows 2 award actions during the last full year. Total obligated amount was $11.00 million, with an average action value of $5.5 million.

How to use this page

Use this page to review the award-level obligation total and action count for the selected analysis window. The figures provide a concise starting point for tracking procurement activity tied to award number 75ACF121C00020.

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 = '7590' AND content__award__awardID__awardContractID__PIID = '75ACF121C00020'
    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
7590 ADMINISTRATION FOR CHILDREN AND FAMILIES 11,000,000.00 11.00 million 2

Insight

All reported obligation for PIID 75ACF121C00020 in the 1-year window is concentrated within a single top agency: the Administration for Children and Families. That agency accounts for $11.00 million across 2 awards, indicating no observable agency-level distribution beyond this entity in the provided rows. The concentration suggests the award activity for this PIID is fully centralized at the listed agency level.

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 = '7590' AND content__award__awardID__awardContractID__PIID = '75ACF121C00020'
        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
RAPID DEPLOYMENT INC 4JXN5 11,000,000.00 11.00 million 2

Insight

Obligations for PIID 75ACF121C00020 are fully concentrated with a single vendor in the 1-year window. RAPID DEPLOYMENT INC (CAGE 4JXN5) received $11.00 million across 2 awards, indicating a narrow distribution of obligated dollars and limited vendor diversification for this award.

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 = '7590' AND content__award__awardID__awardContractID__PIID = '75ACF121C00020'
    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
624230 EMERGENCY AND OTHER RELIEF SERVICES 11,000,000.00 11.00 million 2

Insight

Obligations for PIID 75ACF121C00020 are fully concentrated in NAICS 624230, Emergency and Other Relief Services, totaling $11.00 million across 2 awards. This indicates a narrow procurement profile within the 1-year window, with all reported obligations aligned to a single service category. The limited distribution suggests no diversification across NAICS codes in the provided data.

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 = '7590' AND content__award__awardID__awardContractID__PIID = '75ACF121C00020'
    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
R429 SUPPORT- PROFESSIONAL: EMERGENCY RESPONSE/DISASTER PLANNING/PREPAREDNESS SUPPORT 11,000,000.00 11.00 million 2

Insight

All obligations in the 1-year window are concentrated in PSC R429, Support- Professional: Emergency Response/Disaster Planning/Preparedness Support. This PSC accounts for 100% of the award’s reported obligations, totaling $11.0 million across 2 awards, indicating a highly concentrated spend profile with no other PSC distribution in the provided data.

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 = '7590' AND content__award__awardID__awardContractID__PIID = '75ACF121C00020'
    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 11,000,000.00 11.00 million 2

Insight

For PIID 75ACF121C00020 within Agency 7590, the 1-year annual trend indicates $11.00 million obligated in FY 2025 across 2 awards. Obligations are highly concentrated, averaging $5.50 million per award, which suggests limited distribution across actions in the period. With only a single year represented, no multi-year trend can be assessed from the provided data.

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.