Vehicle Number

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

FPDS query page for vehicle number under agency 6920 and PIID DTFAWA17D00033, covering award activity in the last 10 years.

This page summarizes federal procurement activity tied to vehicle number for agency 6920 under PIID DTFAWA17D00033. The record set covers the last 10 years and includes 70 award actions with total obligations of $101.45 million.

Generated at 03/21/2026

Analysis period: Last 10 years

Totals reflect the provided readable amount of $101.45 million and the exact obligated value of $101,449,401.98.

Agency ID
6920
PIID
DTFAWA17D00033
Type
Vehicle
Total Obligated
101.45 million
101,449,401.98
Actions
70
Average Action Value
1,449,277.17

Overview

The award record for vehicle number under PIID DTFAWA17D00033 shows 70 actions over the last 10 years. Total obligated value is $101,449,401.98, with an average action value of $1,449,277.17. This page presents the core procurement totals for the entity and time window provided.

How to use this page

Use this page to review the action count and obligated dollars associated with the vehicle record for agency 6920. The figures support basic trend review, scope checks, and cross-reference against the underlying FPDS award history. All values on this page are limited to the inputs supplied for this query.

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 = 'DTFAWA17D00033'
    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 101,449,401.98 101.45 million 70

Insight

Obligations for this vehicle are fully concentrated within the Federal Aviation Administration (agency ID 6920), which accounts for $101.45 million across 70 awards in the 10-year window. This indicates the vehicle has been used exclusively or nearly exclusively by a single agency, with no observable interagency distribution in the provided data. The volume of awards relative to obligated dollars suggests repeated use of the same vehicle for FAA requirements over time.

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 = 'DTFAWA17D00033'
        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 = 'DTFAWA17D00033'
    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
561612 SECURITY GUARDS AND PATROL SERVICES 101,449,401.98 101.45 million 70

Insight

Over the 10-year window, obligations for vehicle DTFAWA17D00033 are entirely concentrated in NAICS 561612, Security Guards and Patrol Services, with $101.45 million obligated across 70 awards. This indicates a fully focused spending pattern in a single labor service category, with no diversification across other NAICS codes in the provided data. The award count suggests repeated procurement activity under the same NAICS, supporting a sustained requirement rather than an isolated obligation.

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 = 'DTFAWA17D00033'
    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
S206 HOUSEKEEPING- GUARD 101,449,401.98 101.45 million 70

Insight

Over the 10-year window for vehicle DTFAWA17D00033 under agency 6920, obligations are fully concentrated in PSC S206, Housekeeping-Guard. This PSC accounts for the entire reported total of $101.45 million across 70 awards, indicating a highly focused service profile with no diversification across other PSCs in the provided data. The pattern suggests sustained reliance on a single labor/service category for this vehicle.

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 = 'DTFAWA17D00033'
    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
2017 8,830,808.85 8.83 million 7
2018 16,662,340.96 16.66 million 19
2019 20,981,712.56 20.98 million 9
2020 19,778,051.53 19.78 million 10
2021 17,809,530.00 17.81 million 7
2022 16,106,252.11 16.11 million 12
2023 1,280,705.97 1.28 million 6

Insight

Obligations for PIID DTFAWA17D00033 were concentrated in FY 2018–FY 2022, with annual funding ranging from $16.11 million to $20.98 million and award counts generally between 7 and 19. FY 2019 was the peak year at $20.98 million, followed by sustained but slightly lower levels through FY 2022. FY 2023 drops sharply to $1.28 million, indicating a substantial decline in both obligated dollars and activity 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.