Vehicle Number

Vehicle Number 6920 / 693KA921D00008 Federal Contract Action Summary (Last 5 Years)

Federal procurement analysis for vehicle number under agency 6920 and PIID 693KA921D00008, covering the last 5 years.

This page summarizes award activity for vehicle number associated with agency 6920 and PIID 693KA921D00008 over the last 5 years. The record shows 474 award actions and total obligated amounts of 1.51 billion dollars.

Generated at 03/20/2026

Analysis period: Last 5 years

Totals are based on the provided analysis window, with exact obligated value of 1511081608.81 and average action value of 3187935.88.

Agency ID
6920
PIID
693KA921D00008
Type
Vehicle
Total Obligated
1.51 billion
1,511,081,608.81
Actions
474
Average Action Value
3,187,935.88

Overview

The procurement record for vehicle number tied to agency 6920 and PIID 693KA921D00008 spans 474 award actions in the last 5 years. Total obligated dollars equal 1,511,081,608.81, with an average action value of 3,187,935.88. These figures provide a concise view of award volume and spending for the identified vehicle.

How to use this page

Use this page to review obligation levels, action count, and average action value for the specified vehicle record. The data can support basic trend review and comparison within the same agency and PIID context.

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 = '6920' AND content__IDV__contractID__IDVID__PIID = '693KA921D00008'
    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
6920 FEDERAL AVIATION ADMINISTRATION 1,511,081,608.81 1.51 billion 474

Insight

Within the 5-year window for vehicle PIID 693KA921D00008, all reported obligations are concentrated in a single agency: the Federal Aviation Administration. FAA accounts for $1.51 billion across 474 awards, indicating highly concentrated award activity with no visible distribution across other agencies in the provided data. This pattern suggests the vehicle has been used almost exclusively by FAA during the period.

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 = '6920' AND content__IDV__contractID__IDVID__PIID = '693KA921D00008'
        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 = '6920' AND content__IDV__contractID__IDVID__PIID = '693KA921D00008'
    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
541330 ENGINEERING SERVICES 1,511,081,608.81 1.51 billion 474

Insight

Obligations for PIID 693KA921D00008 are fully concentrated in NAICS 541330, Engineering Services, with $1.51 billion obligated across 474 awards over the 5-year window. This indicates a highly focused procurement pattern with no visible diversification across other NAICS codes in the provided data. The award count suggests repeated use of this vehicle for engineering services requirements rather than broad category coverage.

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 = '6920' AND content__IDV__contractID__IDVID__PIID = '693KA921D00008'
    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
K017 MODIFICATION OF EQUIPMENT- AIRCRAFT LAUNCHING, LANDING, AND GROUND HANDLING EQUIPMENT 1,511,081,608.81 1.51 billion 474

Insight

Over the 5-year window for PIID 693KA921D00008, obligations are fully concentrated in PSC K017, with $1.51 billion across 474 awards. This indicates a highly focused vehicle profile centered on modification of aircraft launching, landing, and ground handling equipment. The concentration suggests limited PSC diversification within the reported scope for Agency ID 6920.

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 = '6920' AND content__IDV__contractID__IDVID__PIID = '693KA921D00008'
    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 276,491,683.16 276.49 million 38
2022 287,401,151.19 287.40 million 60
2023 315,562,918.49 315.56 million 100
2024 327,832,131.38 327.83 million 112
2025 303,793,724.59 303.79 million 164

Insight

Obligations under PIID 693KA921D00008 increased from $276.49 million in 2021 to a peak of $327.83 million in 2024, then declined to $303.79 million in 2025. Award volume rose steadily from 38 awards in 2021 to 164 in 2025, indicating a broader distribution of obligations across more actions even as annual dollars remained relatively stable in the low-to-mid $300 million range. Overall, the series suggests moderate growth in obligated value through 2024 followed by a modest pullback in 2025, with materially higher award counts in the 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.