Vehicle Number

Vehicle Number 7200 / AID612H1600001 Federal Contract Action Summary (Last 5 Years)

Vehicle number AID612H1600001 for Agency ID 7200 shows 5 award actions over the last 5 years with total obligations of 18.75 million.

This page summarizes procurement activity for vehicle number AID612H1600001 within Agency ID 7200 over the last 5 years. The record shows 5 award actions and total obligated funding of 18,746,843.58, with an average action value of 3,749,368.72.

Generated at 03/21/2026

Analysis period: Last 5 years

Amounts are shown as reported for the analysis window and may reflect obligated values across multiple award actions.

Agency ID
7200
PIID
AID612H1600001
Type
Vehicle
Total Obligated
18.75 million
18,746,843.58
Actions
5
Average Action Value
3,749,368.72

Overview

The procurement record for vehicle number AID612H1600001 covers 5 award actions in the last 5 years. Total obligated value is 18,746,843.58, which equals 18.75 million in readable form, and the average action value is 3,749,368.72.

How to use this page

This page is intended to support review of obligation patterns tied to vehicle number AID612H1600001. Use it to compare total funded activity and average action size across the recorded award actions within Agency ID 7200.

Top Agencies

SELECT
    content__IDV__purchaserInformation__contractingOfficeAgencyID AS agency_id,
    content__IDV__purchaserInformation__contractingOfficeAgencyID__name AS agency_name,
    sum(content__IDV__dollarValues__obligatedAmount) AS total_obligated,
    count() AS award_count,
    formatReadableQuantity(sum(content__IDV__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
    content__IDV__contractID__IDVID__agencyID = '7200' AND content__IDV__contractID__IDVID__PIID = 'AID612H1600001'
    AND content__IDV__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
    AND content__IDV__purchaserInformation__contractingOfficeAgencyID != ''
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 YEAR
    AND parseDateTimeBestEffortOrNull(content__IDV__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
7200 AGENCY FOR INTERNATIONAL DEVELOPMENT 18,746,843.58 18.75 million 5

Insight

All reported obligations in the 5-year window are concentrated in a single agency: the Agency for International Development, which accounts for $18.75 million across 5 awards. This indicates that the vehicle’s activity is fully attributable to one agency, with no interagency distribution in the provided data. The small award count relative to total obligated suggests a limited number of high-value transactions rather than broad award dispersion.

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__IDV__dollarValues__obligatedAmount) AS total_obligated,
        count() AS award_count
    FROM fpds.data
    WHERE
        content__IDV__contractID__IDVID__agencyID = '7200' AND content__IDV__contractID__IDVID__PIID = 'AID612H1600001'
        AND content__award__vendor__vendorHeader__vendorName IS NOT NULL
        AND content__award__vendor__vendorHeader__vendorName != ''
        AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 YEAR
        AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) < toStartOfYear(now())
    GROUP BY
        vendor_name,
        cage_code
)
ORDER BY total_obligated DESC
LIMIT 10
Vendor CAGE Code Total Obligated Readable Actions

Insight

No vendor concentration was available for this analysis window.

Top NAICS

SELECT
    content__IDV__productOrServiceInformation__principalNAICSCode AS naics_code,
    content__IDV__productOrServiceInformation__principalNAICSCode__description AS naics_name,
    sum(content__IDV__dollarValues__obligatedAmount) AS total_obligated,
    count() AS award_count,
    formatReadableQuantity(sum(content__IDV__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
    content__IDV__contractID__IDVID__agencyID = '7200' AND content__IDV__contractID__IDVID__PIID = 'AID612H1600001'
    AND content__IDV__productOrServiceInformation__principalNAICSCode IS NOT NULL
    AND content__IDV__productOrServiceInformation__principalNAICSCode != ''
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 YEAR
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY
    naics_code,
    naics_name
ORDER BY total_obligated DESC
LIMIT 10
NAICS Code Description Total Obligated Readable Actions
541990 ALL OTHER PROFESSIONAL, SCIENTIFIC, AND TECHNICAL SERVICES 18,746,843.58 18.75 million 5

Insight

Obligations under PIID AID612H1600001 are fully concentrated in NAICS 541990, All Other Professional, Scientific, and Technical Services, with $18.75 million obligated across 5 awards over the 5-year window. This indicates a narrow procurement profile for this vehicle, with no observed diversification across other NAICS codes in the provided data. The small award count suggests funding is concentrated in a limited number of actions within a single service category.

Top PSC Codes

SELECT
    content__IDV__productOrServiceInformation__productOrServiceCode AS psc_code,
    content__IDV__productOrServiceInformation__productOrServiceCode__description AS psc_name,
    sum(content__IDV__dollarValues__obligatedAmount) AS total_obligated,
    count() AS award_count,
    formatReadableQuantity(sum(content__IDV__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
    content__IDV__contractID__IDVID__agencyID = '7200' AND content__IDV__contractID__IDVID__PIID = 'AID612H1600001'
    AND content__IDV__productOrServiceInformation__productOrServiceCode IS NOT NULL
    AND content__IDV__productOrServiceInformation__productOrServiceCode != ''
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 YEAR
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY
    psc_code,
    psc_name
ORDER BY total_obligated DESC
LIMIT 10
PSC Code Description Total Obligated Readable Actions
R408 SUPPORT- PROFESSIONAL: PROGRAM MANAGEMENT/SUPPORT 18,746,843.58 18.75 million 5

Insight

Over the 5-year window, obligations for PIID AID612H1600001 are fully concentrated in PSC R408, Support- Professional: Program Management/Support, with $18.75 million across 5 awards. This indicates a narrow service mix and no observable PSC diversification within the provided data. The distribution suggests the vehicle is being used primarily for program management/support services rather than a broader set of procurement categories.

Annual Trend

SELECT
    toYear(parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate)) AS year,
    sum(content__IDV__dollarValues__obligatedAmount) AS total_obligated,
    formatReadableQuantity(sum(content__IDV__dollarValues__obligatedAmount)) AS total_obligated_readable,
    count() AS award_count
FROM fpds.data
WHERE
    content__IDV__contractID__IDVID__agencyID = '7200' AND content__IDV__contractID__IDVID__PIID = 'AID612H1600001'
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 YEAR
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2021 6,747,371.58 6.75 million 3
2022 11,999,472.00 12.00 million 2

Insight

Obligations under PIID AID612H1600001 increased from 6.75 million in 2021 across 3 awards to 12.00 million in 2022 across 2 awards. This indicates a higher annual obligation level despite fewer awards, suggesting concentration of funding into fewer actions. Over the reported 5-year window, only these two years are present, so the available trend is limited to a single year-over-year increase.

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.