Vehicle Number

Vehicle Number 7200 / AID514H1700001 Federal Contract Action Summary (Last 10 Years)

Procurement summary for vehicle number under agency 7200 and PIID AID514H1700001 over the last 10 years.

This page summarizes federal award activity for vehicle number associated with agency ID 7200 and PIID AID514H1700001. The record shows 11 award actions with total obligated funding of 38.99 million.

Generated at 03/21/2026

Analysis period: Last 10 years

Amounts reflect the analysis window of the last 10 years; average action value is 3,544,507.34 based on the provided award actions.

Agency ID
7200
PIID
AID514H1700001
Type
Vehicle
Total Obligated
38.99 million
38,989,580.75
Actions
11
Average Action Value
3,544,507.34

Overview

In the last 10 years, this vehicle number record is associated with 11 award actions and total obligated funding of 38,989,580.75. The average action value is 3,544,507.34, which provides a simple measure of the funding level across the recorded actions. The page is limited to the provided agency ID 7200 and PIID AID514H1700001.

How to use this page

Use this page to review the award volume and obligated value associated with the vehicle number record. The summary supports quick comparison of total funding and average action size within the stated 10-year window, without adding details beyond the available procurement data.

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 = 'AID514H1700001'
    AND content__IDV__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
    AND content__IDV__purchaserInformation__contractingOfficeAgencyID != ''
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 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 38,989,580.75 38.99 million 11

Insight

Over the 10-year window, obligations for vehicle AID514H1700001 are fully concentrated within the Agency for International Development, which accounts for $38.99 million across 11 awards. This indicates a single-agency funding profile with no diversification across other agencies in the provided rows. The award count suggests repeated use of the vehicle by the same agency rather than a one-time obligation pattern.

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 = 'AID514H1700001'
        AND content__award__vendor__vendorHeader__vendorName IS NOT NULL
        AND content__award__vendor__vendorHeader__vendorName != ''
        AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 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 = 'AID514H1700001'
    AND content__IDV__productOrServiceInformation__principalNAICSCode IS NOT NULL
    AND content__IDV__productOrServiceInformation__principalNAICSCode != ''
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 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 38,989,580.75 38.99 million 11

Insight

Obligations for PIID AID514H1700001 are fully concentrated in NAICS 541990, All Other Professional, Scientific, and Technical Services, with $38.99 million across 11 awards over the 10-year window. This indicates a narrow service profile and no diversification across other NAICS categories in the provided data. The award pattern suggests repeated procurement of the same broad professional and technical support services rather than a mixed acquisition base.

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 = 'AID514H1700001'
    AND content__IDV__productOrServiceInformation__productOrServiceCode IS NOT NULL
    AND content__IDV__productOrServiceInformation__productOrServiceCode != ''
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 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 38,989,580.75 38.99 million 11

Insight

Within the 10-year window for PIID AID514H1700001, obligations are fully concentrated in PSC R408, Support-Professional: Program Management/Support. This PSC accounts for $38.99 million across 11 awards, indicating repeated procurement of the same service category rather than a broad mix of product or service codes. The distribution suggests a sustained reliance on program management/support services under this vehicle.

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 = 'AID514H1700001'
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2017 15,542,111.00 15.54 million 1
2018 0.00 0.00 1
2019 12,833,477.50 12.83 million 4
2020 5,298,802.00 5.30 million 2
2021 5,315,190.25 5.32 million 1
2022 0.00 0.00 1
2024 0.00 0.00 1

Insight

Obligations for PIID AID514H1700001 are uneven over the 10-year window, with funding concentrated in 2017 and 2019, which together account for the largest obligation totals. Annual activity drops substantially after 2019, with smaller obligated amounts in 2020 and 2021 and zero obligated value recorded in 2018, 2022, and 2024 despite one or more awards in those years. This pattern indicates intermittent funding rather than a steady annual obligation profile.

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