Vehicle Number

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

Analysis of vehicle number DTFAWA15D00016 for agency 6920 over the last 10 years shows 64 award actions and $369.90 million in total obligated value.

This page summarizes procurement activity for vehicle number DTFAWA15D00016 across the last 10 years for agency 6920. The record includes 64 award actions with an exact total obligated value of $369,899,791.50 and an average action value of $5,779,684.24.

Generated at 03/21/2026

Analysis period: Last 10 years

Totals are based on the provided analysis window and reported obligation values; readable figures are rounded from exact amounts.

Agency ID
6920
PIID
DTFAWA15D00016
Type
Vehicle
Total Obligated
369.90 million
369,899,791.50
Actions
64
Average Action Value
5,779,684.24

Overview

For agency 6920, vehicle number DTFAWA15D00016 recorded 64 award actions during the last 10 years. The total obligated value was $369,899,791.50, with an average action value of $5,779,684.24. The readable total is $369.90 million.

How to use this page

This page is intended to support review of obligation patterns tied to vehicle number DTFAWA15D00016 within the stated period. Use the award count, total obligation, and average action value to compare activity across the 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 = 'DTFAWA15D00016'
    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 369,899,791.50 369.90 million 64

Insight

Over the 10-year window, obligations for this vehicle are fully concentrated at the Federal Aviation Administration (agency 6920), which accounts for the entire reported total of $369.90 million. The agency is associated with 64 awards, indicating repeated use of the vehicle rather than reliance on a single action. This pattern suggests sustained agency-level utilization and a highly concentrated distribution with no other agencies represented in the provided data.

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 = 'DTFAWA15D00016'
        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 = 'DTFAWA15D00016'
    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 369,899,791.50 369.90 million 64

Insight

For PIID DTFAWA15D00016 over the 10-year window, obligations are fully concentrated in NAICS 541512, Computer Systems Design Services. This single NAICS accounts for $369.90 million across 64 awards, indicating a narrow and highly focused procurement profile for the vehicle. No other NAICS codes are identified in the provided rows, so distribution across industries cannot be assessed beyond this concentration.

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 = 'DTFAWA15D00016'
    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
R408 SUPPORT- PROFESSIONAL: PROGRAM MANAGEMENT/SUPPORT 369,899,791.50 369.90 million 64

Insight

Over the 10-year window, vehicle DTFAWA15D00016 is fully concentrated in PSC R408, with $369.90 million obligated across 64 awards. This indicates a sustained procurement profile centered on professional program management/support services rather than a diversified mix of product or service categories. The award count suggests repeated obligation activity within the same PSC, but no distribution beyond this code is present in 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 = 'DTFAWA15D00016'
    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 63,740,000.00 63.74 million 3
2017 94,480,100.11 94.48 million 11
2018 110,686,722.58 110.69 million 18
2019 96,131,410.86 96.13 million 18
2020 4,862,985.09 4.86 million 12
2021 -1,427.14 -1.43 thousand 2

Insight

Obligations on PIID DTFAWA15D00016 were concentrated in 2016–2019, with annual funding ranging from $63.74 million to $110.69 million and award activity increasing from 3 awards in 2016 to 18 awards in both 2018 and 2019. The highest annual obligation occurred in 2018 at $110.69 million, followed by a decline in 2019 to $96.13 million. Funding then dropped sharply in 2020 to $4.86 million across 12 awards and was effectively flat in 2021, with a negligible negative obligation of $1.43 thousand across 2 awards.

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.