Award Number

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

Federal award number 75ACF121C00020 for agency ID 7590, showing obligated dollars and action activity over the last 5 years.

This award page summarizes Federal procurement activity for PIID 75ACF121C00020 under agency ID 7590 during the last 5 years. The record shows 36 award actions and total obligated funding of $3.52 billion.

Generated at 03/20/2026

Analysis period: Last 5 years

Totals reflect the analysis window provided and an exact obligated amount of 3516373311.63 across 36 actions.

Agency ID
7590
PIID
75ACF121C00020
Type
Award
Total Obligated
3.52 billion
3,516,373,311.63
Actions
36
Average Action Value
97,677,036.43

Overview

PIID 75ACF121C00020 is associated with agency ID 7590 and records 36 award actions in the last 5 years. Total obligated funding is $3,516,373,311.63, with an average action value of $97,677,036.43. This page is intended to support review of award-level procurement activity without adding assumptions beyond the recorded figures.

How to use this page

Use this page to review the overall funding scale and action frequency for award number 75ACF121C00020. The obligated total and average action value provide a compact way to compare this award against other FPDS records in the same analysis window.

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 5 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 3,516,373,311.63 3.52 billion 36

Insight

Over the 5-year window, obligations for PIID 75ACF121C00020 are fully concentrated within the Administration for Children and Families (Agency ID 7590). The award accounts for $3.52 billion across 36 awards, indicating sustained activity rather than a single isolated obligation. This pattern suggests the award is material to a single agency portfolio, with no evidence of distribution across other top agencies in the provided data.

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 5 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 3,516,373,311.63 3.52 billion 36

Insight

Over the 5-year window for PIID 75ACF121C00020 under agency 7590, RAPID DEPLOYMENT INC (CAGE 4JXN5) is the only listed top vendor. It received 36 awards totaling $3.52 billion, indicating a highly concentrated award pattern with all reported obligation in this section attributed to a single vendor. This distribution suggests limited vendor dispersion within the queried results.

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 5 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 3,516,373,311.63 3.52 billion 36

Insight

Over the 5-year window, obligations for this award are entirely concentrated in NAICS 624230, Emergency and Other Relief Services, with $3.52 billion obligated across 36 awards. This indicates a highly focused procurement profile with no visible diversification across other NAICS categories in the provided data. The distribution suggests sustained emphasis on emergency and relief-related services for this PIID.

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 5 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 3,516,373,311.63 3.52 billion 36

Insight

Over the 5-year window, obligations for PIID 75ACF121C00020 are fully concentrated in PSC R429, indicating a single-service category profile for this award. The award accounts for $3.52 billion across 36 actions, suggesting repeated funding activity within emergency response/disaster planning and preparedness support. This concentration indicates limited PSC diversification for the identified award.

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 5 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2021 1,503,082,437.84 1.50 billion 20
2022 1,694,952,109.54 1.69 billion 10
2023 307,338,764.25 307.34 million 4
2025 11,000,000.00 11.00 million 2

Insight

Obligations for PIID 75ACF121C00020 are heavily concentrated in 2021 and 2022, with $1.50 billion across 20 awards in 2021 and $1.69 billion across 10 awards in 2022. Activity then declined sharply in 2023 to $307.34 million across 4 awards, followed by only $11.00 million across 2 awards in 2025. The pattern indicates a front-loaded award profile with substantially lower obligation levels in later years.

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 5 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.