Vehicle Number

Vehicle Number 6920 / DTFAWA02C00206R Federal Contract Action Summary (Last 10 Years)

Analysis of vehicle number under PIID DTFAWA02C00206R for Agency ID 6920 over the last 10 years shows 73 award actions and $53.28 million obligated.

This page summarizes procurement activity for the vehicle number associated with PIID DTFAWA02C00206R and Agency ID 6920. The 10-year window includes 73 award actions with total obligated spending of $53,282,761.19 and an average action value of $729,900.84.

Generated at 03/21/2026

Analysis period: Last 10 years

Dollar figures are shown as provided, with readable and exact totals presented separately.

Agency ID
6920
PIID
DTFAWA02C00206R
Type
Vehicle
Total Obligated
53.28 million
53,282,761.19
Actions
73
Average Action Value
729,900.84

Overview

The overview on this page is limited to the procurement record identified by vehicle number, PIID DTFAWA02C00206R, and Agency ID 6920. Over the last 10 years, the record shows 73 award actions and total obligated spending of $53,282,761.19. The average action value for the period is $729,900.84.

How to use this page

Use this page to review the volume and value of award actions tied to this vehicle number within the stated analysis window. The totals provide a compact reference for comparing this record against other PIIDs, agencies, or vehicle-level procurement entries.

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 = 'DTFAWA02C00206R'
    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
6920 FEDERAL AVIATION ADMINISTRATION 53,282,761.19 53.28 million 73

Insight

Obligations for this vehicle are fully concentrated within the Federal Aviation Administration, which accounts for $53.28 million across 73 awards over the 10-year window. This indicates a single-agency funding pattern with no evidence of distribution across other agencies in the provided data. The award count suggests repeated use of the vehicle by the same agency rather than reliance on a broad interagency customer base.

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 = 'DTFAWA02C00206R'
        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 = '6920' AND content__IDV__contractID__IDVID__PIID = 'DTFAWA02C00206R'
    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 53,282,761.19 53.28 million 73

Insight

For PIID DTFAWA02C00206R over the 10-year window, obligations are fully concentrated in NAICS 541990, All Other Professional, Scientific, and Technical Services. This category accounts for $53.28 million across 73 awards, indicating sustained use of this vehicle for recurring professional and technical support. No other NAICS codes are reflected in the provided rows, so the observed activity is entirely concentrated in a single industry classification.

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 = 'DTFAWA02C00206R'
    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
R710 SUPPORT- MANAGEMENT: FINANCIAL 53,282,761.19 53.28 million 73

Insight

Over the 10-year window for vehicle DTFAWA02C00206R, obligations are fully concentrated in PSC R710, Support-Management: Financial. This PSC accounts for $53.28 million across 73 awards, indicating a sustained pattern of financial management support requirements under this vehicle. No other PSCs are provided for this section, so the observed obligation profile is highly concentrated rather than distributed across multiple product or service 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 = '6920' AND content__IDV__contractID__IDVID__PIID = 'DTFAWA02C00206R'
    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
2018 5,476,917.56 5.48 million 8
2019 6,859,974.66 6.86 million 7
2020 6,615,777.06 6.62 million 8
2021 5,264,900.97 5.26 million 8
2022 6,807,773.43 6.81 million 10
2023 6,876,622.60 6.88 million 12
2024 6,896,364.01 6.90 million 8
2025 8,484,430.90 8.48 million 12

Insight

Obligations for PIID DTFAWA02C00206R were relatively stable from 2018 through 2024, ranging from $5.26 million to $6.90 million annually, with award counts generally between 7 and 12. The series shows a dip in 2021, followed by recovery in 2022-2024 to about $6.8-$6.9 million. In 2025, obligated amounts increased to $8.48 million, the highest in the 10-year window, alongside 12 awards, indicating a notable upward shift in both funding and activity.

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.