Vehicle Number

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

Federal procurement analysis for vehicle number under agency 6920 and PIID DTFAWA17D00035 over the last 10 years.

This page summarizes award activity for vehicle number associated with agency 6920 and PIID DTFAWA17D00035 during the last 10 years. The record shows 58 award actions with total obligated funding of $74.80 million.

Generated at 03/21/2026

Analysis period: Last 10 years

Totals are based on the provided analysis window and may differ slightly from rounded values because of exact obligation calculations.

Agency ID
6920
PIID
DTFAWA17D00035
Type
Vehicle
Total Obligated
74.80 million
74,801,091.41
Actions
58
Average Action Value
1,289,673.99

Overview

Over the last 10 years, vehicle number tied to agency 6920 and PIID DTFAWA17D00035 shows 58 award actions with total obligated funding of $74,801,091.41. The average action value is $1,289,673.99, indicating recurring procurement activity across the analysis period. This page presents the obligation and action history in a concise form for federal procurement review.

How to use this page

Use this page to review funding concentration and award activity associated with the specified vehicle number. The totals provide a basic reference for comparing this PIID against other contracts or tracking procurement activity over time.

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 = 'DTFAWA17D00035'
    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 74,801,091.41 74.80 million 58

Insight

Within the 10-year window for PIID DTFAWA17D00035, all reported obligated dollars in this section are concentrated in the Federal Aviation Administration (agency ID 6920). The FAA accounts for $74.80 million across 58 awards, indicating that this vehicle has been used exclusively or overwhelmingly within a single agency. This concentration suggests a focused procurement pattern rather than a broadly distributed interagency vehicle.

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 = 'DTFAWA17D00035'
        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 = 'DTFAWA17D00035'
    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 74,801,091.41 74.80 million 58

Insight

Over the 10-year window, obligations under PIID DTFAWA17D00035 for Agency 6920 are fully concentrated in NAICS 561612, Security Guards and Patrol Services. The vehicle shows 58 awards totaling $74.80 million, indicating sustained reliance on a single service category rather than a diversified NAICS mix. This concentration suggests the award history is narrowly focused on security guard and patrol requirements.

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 = 'DTFAWA17D00035'
    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 74,801,091.41 74.80 million 58

Insight

For PIID DTFAWA17D00035 over the 10-year window, obligations are fully concentrated in PSC S206 (HOUSEKEEPING- GUARD), totaling $74.80 million across 58 awards. This indicates a narrow service profile with consistent recurring activity in a single PSC rather than a diversified mix of 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 = 'DTFAWA17D00035'
    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 5,811,427.90 5.81 million 7
2018 15,661,762.84 15.66 million 15
2019 13,404,581.11 13.40 million 8
2020 16,385,919.97 16.39 million 9
2021 14,203,980.72 14.20 million 8
2022 9,333,418.87 9.33 million 11

Insight

Obligations under PIID DTFAWA17D00035 are concentrated in FY 2018 through FY 2021, when annual funding ranged from $13.40 million to $16.39 million and accounted for the highest award activity, with 8 to 15 awards per year. FY 2017 was materially lower at $5.81 million and 7 awards, while FY 2022 declined to $9.33 million despite 11 awards, indicating reduced funding levels but continued obligation activity. Overall, the pattern reflects a mid-period peak followed by moderation rather than steady growth.

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.