Vehicle Number

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

Vehicle number record for agency 6920 and PIID DTFAWA05C00031R, showing obligated activity over the last 5 years.

This page summarizes procurement activity tied to vehicle number for agency 6920 under PIID DTFAWA05C00031R during the last 5 years. The record shows 2 award actions with total obligated amounts of -3.55 million.

Generated at 03/21/2026

Analysis period: Last 5 years

Figures are based on the provided analysis window and obligated totals; the exact total obligated amount is -3550681.45.

Agency ID
6920
PIID
DTFAWA05C00031R
Type
Vehicle
Total Obligated
-3.55 million
-3,550,681.45
Actions
2
Average Action Value
-1,775,340.73

Overview

The record covers vehicle number activity associated with agency 6920 and PIID DTFAWA05C00031R across the last 5 years. Total obligated value is -3550681.45 across 2 award actions, for an average action value of -1775340.73. The negative obligated totals should be read as provided in the source inputs.

How to use this page

Use this page to review the basic award pattern for this vehicle number record, including total obligated value, action count, and average action value. It provides a concise procurement summary for comparing this entry against other FPDS records in the same agency or period.

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 = 'DTFAWA05C00031R'
    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 -3,550,681.45 -3.55 million 2

Insight

Within the 5-year window, obligations for PIID DTFAWA05C00031R are fully concentrated in a single top agency: the Federal Aviation Administration (agency 6920). The FAA accounts for the full reported amount across 2 awards, with total obligated value of -$3.55 million. The negative obligated total indicates net deobligation activity for this vehicle over 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 = 'DTFAWA05C00031R'
        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 = 'DTFAWA05C00031R'
    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
488190 OTHER SUPPORT ACTIVITIES FOR AIR TRANSPORTATION -3,550,681.45 -3.55 million 2

Insight

Over the 5-year window, obligations for this vehicle are concentrated entirely in NAICS 488190, Other Support Activities for Air Transportation. The category shows net deobligations totaling $3.55 million across 2 awards, indicating a limited and negative funding pattern rather than a broad obligation base. With only one NAICS represented, there is no evidence of meaningful distribution across multiple industry sectors for this vehicle.

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 = 'DTFAWA05C00031R'
    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
AD25 R&D- DEFENSE OTHER: SERVICES (OPERATIONAL SYSTEMS DEVELOPMENT) -3,550,681.45 -3.55 million 2

Insight

Obligations for this vehicle are concentrated entirely in PSC AD25, R&D- Defense Other: Services (Operational Systems Development), with -$3.55 million across 2 awards over the 5-year window. This indicates a narrow product/service mix and minimal PSC distribution for the period reviewed. The negative obligated amount should be interpreted in the context of deobligations or funding adjustments associated with this PSC.

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 = 'DTFAWA05C00031R'
    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 -2,787,531.92 -2.79 million 1
2025 -763,149.53 -763.15 thousand 1

Insight

Obligations for PIID DTFAWA05C00031R are highly concentrated, with only two recorded years in the 5-year window. Activity declined from -$2.79 million in 2021 to -$763.15 thousand in 2025, indicating a lower level of obligated value in the later period. Each year reflects a single award action, so the observed distribution is narrow and not broadly dispersed across the period.

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.