Vehicle Number

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

Federal procurement analysis for vehicle number records tied to agency 6920 and PIID DTFAWA12D00058 over the last 10 years.

This page summarizes vehicle number activity for agency 6920 under PIID DTFAWA12D00058 during the last 10 years. The award history includes 115 actions with total obligated amount of $853.94 million and an average action value of $7.43 million.

Generated at 03/20/2026

Analysis period: Last 10 years

Dollar totals reflect the provided readable and exact obligated amounts for the analysis window.

Agency ID
6920
PIID
DTFAWA12D00058
Type
Vehicle
Total Obligated
853.94 million
853,936,695.97
Actions
115
Average Action Value
7,425,536.49

Overview

The record set covers 115 award actions for vehicle number activity associated with agency 6920 and PIID DTFAWA12D00058. Total obligated value over the last 10 years is $853,936,695.97, with an average action value of $7,425,536.49. These figures provide a concise view of the award volume and spend associated with this procurement reference.

How to use this page

Use this page to review the scale of obligated dollars and the frequency of award actions tied to this vehicle number record. The values support basic procurement analysis, including spend concentration and action-level comparison within the stated 10-year window.

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 = 'DTFAWA12D00058'
    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 853,936,695.97 853.94 million 115

Insight

Over the 10-year window, obligations for PIID DTFAWA12D00058 are fully concentrated in a single agency: the Federal Aviation Administration (agency ID 6920). The FAA accounts for $853.94 million across 115 awards, indicating sustained use of this vehicle by one agency rather than broad cross-agency distribution. This level of concentration suggests the vehicle has been a major FAA-specific contracting instrument 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 = 'DTFAWA12D00058'
        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 = 'DTFAWA12D00058'
    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
541512 COMPUTER SYSTEMS DESIGN SERVICES 853,936,695.97 853.94 million 115

Insight

Over the 10-year window, obligations for vehicle DTFAWA12D00058 are fully concentrated in NAICS 541512, Computer Systems Design Services. This category accounts for $853.94 million across 115 awards, indicating sustained procurement activity within a single NAICS code rather than a diversified distribution across multiple industries. The pattern suggests a highly focused contracting profile 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 = 'DTFAWA12D00058'
    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
R425 SUPPORT- PROFESSIONAL: ENGINEERING/TECHNICAL 853,936,695.97 853.94 million 115

Insight

Over the 10-year window, obligations under PIID DTFAWA12D00058 are fully concentrated in PSC R425, Support- Professional: Engineering/Technical. The vehicle has 115 awards totaling $853.94 million, indicating sustained use of this PSC rather than a diversified mix of product or service categories. This concentration suggests the contract vehicle has been used primarily for engineering and technical support requirements.

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 = 'DTFAWA12D00058'
    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
2016 81,166,916.00 81.17 million 7
2017 101,212,445.56 101.21 million 12
2018 102,584,886.31 102.58 million 16
2019 83,025,554.64 83.03 million 12
2020 92,221,018.00 92.22 million 12
2021 85,351,671.00 85.35 million 10
2022 82,901,704.00 82.90 million 10
2023 88,135,987.24 88.14 million 9
2024 86,383,187.00 86.38 million 13
2025 50,953,326.22 50.95 million 14

Insight

Obligations for PIID DTFAWA12D00058 are broadly stable across the 10-year window, generally ranging from about $81.17 million to $102.58 million annually. Funding peaks in 2018 at $102.58 million with 16 awards, then remains in a narrower band of roughly $82.90 million to $92.22 million through 2024 despite fluctuating award counts. In 2025, obligated value drops to $50.95 million while award count rises to 14, indicating a lower-dollar, higher-count pattern in the most recent 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 10 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.