Type of Fee for Use of Service
Human-readable value that identifies the type of fee associated with use of a service in the IDV contract marketing data. It describes the fee classification recorded for the service arrangement rather than the fee amount itself.
FPDS Compare
Paired Field
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Group IDV service records by fee type
- Filter contracts with fee-based service usage
- Support pricing and contract structure analyses
Common Mistakes
- Confusing the code with the fee amount or rate
- Interpreting the field without checking the coded value set
Query Guidance
Use this field as a categorical filter, GROUP BY dimension, or join key only if the corresponding code list is known. In SQL, prefer explicit value mapping or lookup tables for interpretation, and test for NULLs and unexpected codes before aggregating.
SQL Examples
Preview values
SELECT
content__IDV__contractMarketingData__typeOfFeeForUseOfService AS type_of_fee_for_use_of_service
FROM fpds.data
WHERE content__IDV__contractMarketingData__typeOfFeeForUseOfService IS NOT NULL
LIMIT 25
Top values
SELECT
content__IDV__contractMarketingData__typeOfFeeForUseOfService AS value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__contractMarketingData__typeOfFeeForUseOfService 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.