Type of Fee for Use of Service Description
Human-readable description of the fee type associated with use of a service in the IDV contract marketing data. It is the descriptive label paired with the coded "Type of Fee for Use of Service" value, used to spell out the underlying fee classification.
FPDS Compare
Paired Field
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Decoding the associated fee type code
- Reviewing service pricing and access terms
- Filtering contracts by fee structure
Common Mistakes
- Using the description as if it were the authoritative code
- Assuming a blank or short label means missing data rather than a valid category
Query Guidance
Select this field with the paired fee code when decoding contract marketing terms. In SQL, use it for display, grouping by normalized labels only after checking the underlying code values, and filter on exact text matches when needed because labels may vary by capitalization or phrasing.
SQL Examples
Preview values
SELECT
content__IDV__contractMarketingData__typeOfFeeForUseOfService__description AS type_of_fee_for_use_of_service_description
FROM fpds.data
WHERE content__IDV__contractMarketingData__typeOfFeeForUseOfService__description IS NOT NULL
LIMIT 25
Top values
SELECT
content__IDV__contractMarketingData__typeOfFeeForUseOfService__description AS value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__contractMarketingData__typeOfFeeForUseOfService__description IS NOT NULL
GROUP BY value
ORDER BY record_count DESC
LIMIT 25
Each dictionary item includes SQL-ready examples generated alongside the variable metadata, allowing immediate use in FPDS Query for filtering, aggregation, and analysis.