Vehicle Number

Vehicle Number 7015 / HSFLCS17D00001 Federal Contract Action Summary (Last 10 Years)

Procurement analysis for vehicle number HSFLCS17D00001 under agency 7015 over the last 10 years, showing 133 award actions and $106.46 million obligated.

This page summarizes procurement activity for vehicle number HSFLCS17D00001 for agency ID 7015 across the last 10 years. The record reflects 133 award actions with total obligated funding of $106,460,462.44.

Generated at 03/21/2026

Analysis period: Last 10 years

Figures are based on the provided analysis window and obligated amounts; readable totals are rounded from the exact value.

Agency ID
7015
PIID
HSFLCS17D00001
Type
Vehicle
Total Obligated
106.46 million
106,460,462.44
Actions
133
Average Action Value
800,454.60

Overview

Over the last 10 years, vehicle number HSFLCS17D00001 has generated 133 award actions for agency ID 7015. Total obligated funding is $106,460,462.44, with an average action value of $800,454.60. This page provides a procurement-focused summary of that award history.

How to use this page

Use this page to review the scale and frequency of obligation activity associated with vehicle number HSFLCS17D00001. The action count and average action value help frame how funding was distributed across the analysis window. The totals shown here are limited to the inputs provided for this record.

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 = '7015' AND content__IDV__contractID__IDVID__PIID = 'HSFLCS17D00001'
    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
7015 FEDERAL LAW ENFORCEMENT TRAINING CENTER 106,460,462.44 106.46 million 133

Insight

Over the 10-year window, obligations for PIID HSFLCS17D00001 are entirely concentrated with the Federal Law Enforcement Training Center, which accounts for $106.46 million across 133 awards. This indicates a single-agency distribution pattern rather than broad interagency use of the vehicle. The volume of awards suggests repeated utilization by the same agency 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 = '7015' AND content__IDV__contractID__IDVID__PIID = 'HSFLCS17D00001'
        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 = '7015' AND content__IDV__contractID__IDVID__PIID = 'HSFLCS17D00001'
    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
561210 FACILITIES SUPPORT SERVICES 106,460,462.44 106.46 million 133

Insight

Obligations under PIID HSFLCS17D00001 are fully concentrated in NAICS 561210, Facilities Support Services, with $106.46 million across 133 awards over the 10-year window. This indicates a narrow procurement profile for the vehicle, with all recorded obligated dollars in a single NAICS category and no diversification across other industries in the provided data. The award count suggests repeated use of the vehicle for the same service type rather than a broad mix of 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 = '7015' AND content__IDV__contractID__IDVID__PIID = 'HSFLCS17D00001'
    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
S216 HOUSEKEEPING- FACILITIES OPERATIONS SUPPORT 106,460,462.44 106.46 million 133

Insight

Over the 10-year window, this vehicle is entirely concentrated in PSC S216, Housekeeping-Facilities Operations Support, with $106.46 million across 133 awards. This indicates a highly focused spend profile with activity distributed over multiple awards rather than a single large obligation. The concentration in one PSC suggests the vehicle is used primarily for a specific recurring service requirement.

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 = '7015' AND content__IDV__contractID__IDVID__PIID = 'HSFLCS17D00001'
    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 7,842,713.93 7.84 million 15
2018 11,855,346.51 11.86 million 18
2019 11,770,059.04 11.77 million 12
2020 11,794,610.56 11.79 million 15
2021 12,965,501.80 12.97 million 16
2022 12,255,036.85 12.26 million 12
2023 15,985,848.90 15.99 million 13
2024 11,289,706.02 11.29 million 17
2025 10,701,638.83 10.70 million 15

Insight

Obligations for PIID HSFLCS17D00001 were relatively stable across 2018–2022, generally ranging from $11.77 million to $12.97 million annually, after a lower $7.84 million in 2017. The highest annual obligation occurred in 2023 at $15.99 million, followed by a decline in 2024 to $11.29 million and $10.70 million in 2025. Award counts were distributed between 12 and 18 per year, indicating moderate year-to-year variation rather than a sustained expansion or contraction in action volume.

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.