Vehicle Number

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

Vehicle number under PIID DTFAWA02C00206R for Agency ID 6920 shows 12 award actions in the last full year with 8.48 million obligated.

This page summarizes the procurement activity for vehicle number tied to PIID DTFAWA02C00206R and Agency ID 6920 during the last full year. Total obligated was 8,484,430.9 across 12 award actions, for an average action value of 707,035.91.

Generated at 03/21/2026

Analysis period: Last full year

Dollar values are shown as provided for the analysis window and may differ slightly between rounded and exact displays.

Agency ID
6920
PIID
DTFAWA02C00206R
Type
Vehicle
Total Obligated
8.48 million
8,484,430.90
Actions
12
Average Action Value
707,035.91

Overview

For the last full year, vehicle number under PIID DTFAWA02C00206R recorded 12 award actions with total obligated dollars of 8,484,430.9. The average action value was 707,035.91, which provides a simple view of the obligation level across the period. This page is focused on the procurement record associated with Agency ID 6920.

How to use this page

Use this page to review the obligation total, action count, and average action value for the selected vehicle record. The figures support basic FPDS comparison and trend review for the stated analysis window, without adding details beyond the reported award activity.

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 1 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 8,484,430.90 8.48 million 12

Insight

Within the 1-year window for vehicle PIID DTFAWA02C00206R, all reported obligations are concentrated with the Federal Aviation Administration (Agency ID 6920). The agency accounts for 12 awards totaling $8.48 million, indicating a fully concentrated obligation pattern with no other agencies represented in the provided data. This distribution suggests the vehicle is being used exclusively within FAA activity for the period reviewed.

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 1 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 1 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 8,484,430.90 8.48 million 12

Insight

Obligations for PIID DTFAWA02C00206R over the 1-year window are fully concentrated in NAICS 541990, All Other Professional, Scientific, and Technical Services. This category accounts for $8.48 million across 12 awards, indicating a narrow procurement profile with no evidence of NAICS diversification in the provided data. The award pattern suggests repeated obligation activity within a single service category rather than a broad spread across industries.

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 1 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 8,484,430.90 8.48 million 12

Insight

Over the 1-year window, obligations under PIID DTFAWA02C00206R are fully concentrated in PSC R710, Support- Management: Financial. The vehicle reflects 12 awards totaling $8.48 million, indicating a narrow service profile with all recorded obligations in a single PSC category. This concentration suggests the contract is used exclusively for financial management support rather than a diversified mix of services.

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 1 YEAR
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2025 8,484,430.90 8.48 million 12

Insight

For FY 2025, obligations on PIID DTFAWA02C00206R total $8.48 million across 12 awards, indicating moderate transaction activity within the 1-year window. The observed activity is concentrated in a single year, so no multi-year trend or year-over-year change can be assessed from the provided data.

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