Inherently Governmental Function Description
Human-readable text that describes the coded Inherently Governmental Function value on the IDV contract record. It serves as the label for the paired code field, translating the underlying classification into plain language.
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 underlying inherently governmental function classification
- Grouping IDVs by function description for reporting
- Validating coded values against readable labels in FPDS extracts
Common Mistakes
- Treating the description as an independent policy determination
- Filtering only on the description when the paired code field is available
Query Guidance
Join or select this field alongside its paired code field when categorizing records. In SQL, use it for readable output, reporting labels, and validation checks, but filter primarily on the coded field when exact classification is required.
SQL Examples
Preview values
SELECT
content__IDV__contractData__inherentlyGovernmentalFunction__description AS inherently_governmental_function_description
FROM fpds.data
WHERE content__IDV__contractData__inherentlyGovernmentalFunction__description IS NOT NULL
LIMIT 25
Top values
SELECT
content__IDV__contractData__inherentlyGovernmentalFunction__description AS value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__contractData__inherentlyGovernmentalFunction__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.