Vehicle Number

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

Federal procurement overview for vehicle number under agency 6920 and PIID DTFAWA03C00059R across the last 5 years.

This page summarizes federal award activity for vehicle number tied to agency 6920 and contract DTFAWA03C00059R over the last 5 years. Total obligations reached $14.24 million across 9 award actions, with an average action value of $1,582,009.49.

Generated at 03/21/2026

Analysis period: Last 5 years

Amounts shown reflect the reported obligated total of $14,238,085.45 and may differ from rounded display values.

Agency ID
6920
PIID
DTFAWA03C00059R
Type
Vehicle
Total Obligated
14.24 million
14,238,085.45
Actions
9
Average Action Value
1,582,009.49

Overview

Within the last 5 years, this vehicle number record for agency 6920 and PIID DTFAWA03C00059R shows 9 award actions totaling $14,238,085.45 in obligations. The average action value is $1,582,009.49, indicating multiple recorded actions within the same procurement line.

How to use this page

Use this page to review the obligation history associated with vehicle number for agency 6920 and contract DTFAWA03C00059R. The summary supports basic procurement analysis by showing total obligated dollars, action count, and average action value over the selected 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 = 'DTFAWA03C00059R'
    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 14,238,085.45 14.24 million 9

Insight

Within the 5-year window, obligations for vehicle PIID DTFAWA03C00059R are fully concentrated in the Federal Aviation Administration (agency ID 6920), which accounts for the entire $14.24 million in recorded obligations. The activity is distributed across 9 awards, indicating repeated funding within the same agency rather than cross-agency use. This concentration suggests the vehicle is agency-specific in practice for this 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 = 'DTFAWA03C00059R'
        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 = 'DTFAWA03C00059R'
    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
811213 COMMUNICATION EQUIPMENT REPAIR AND MAINTENANCE 14,238,085.45 14.24 million 9

Insight

Over the 5-year window, obligations for vehicle-related activity under PIID DTFAWA03C00059R are fully concentrated in NAICS 811213, Communication Equipment Repair and Maintenance. This category accounts for $14.24 million across 9 awards, indicating a narrow procurement profile with spending focused on a single service line. The concentration suggests limited NAICS diversification within this vehicle record.

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 = 'DTFAWA03C00059R'
    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
5820 RADIO AND TELEVISION COMMUNICATION EQUIPMENT, EXCEPT AIRBORNE 14,238,085.45 14.24 million 9

Insight

Obligations for this vehicle are fully concentrated in PSC 5820, Radio and Television Communication Equipment, Except Airborne, which accounts for $14.24 million across 9 awards over the 5-year window. This indicates a narrow product/services mix with spending concentrated in a single PSC rather than distributed across multiple categories. The award count suggests repeated procurement activity within the same equipment category, but no diversification is evident from the provided data.

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 = 'DTFAWA03C00059R'
    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 10,046,027.42 10.05 million 4
2022 4,192,058.03 4.19 million 5

Insight

For PIID DTFAWA03C00059R, obligations were concentrated in 2021 at $10.05 million across 4 awards, then declined to $4.19 million across 5 awards in 2022. This reflects a year-over-year reduction in obligated dollars of about 58%, despite a slight increase in award count. The pattern suggests lower-value obligations in 2022 relative to the prior year.

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.