Clinger Cohen Act Description
Human-readable description for the paired Clinger Cohen Act indicator in an IDV record. It records the explanatory text for the coded status value rather than a separate analytical attribute.
FPDS Compare
Paired Field
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Validate the meaning of the paired Clinger Cohen Act code
- Translate coded FPDS values into readable labels in reports
- Support QA checks for legislative mandate reporting
Common Mistakes
- Using the description field as the primary filter instead of the coded indicator
- Assuming the text is standardized across all records without checking observed values
Query Guidance
In SQL, join or select this field alongside the paired Clinger Cohen Act code and use the code for filtering while using the description for display, validation, or null/unknown checks. If the description is abbreviated, map it only after confirming the set of observed source values.
SQL Examples
Preview values
SELECT
content__IDV__legislativeMandates__ClingerCohenAct__description AS clinger_cohen_act_description
FROM fpds.data
WHERE content__IDV__legislativeMandates__ClingerCohenAct__description IS NOT NULL
LIMIT 25
Top values
SELECT
content__IDV__legislativeMandates__ClingerCohenAct__description AS value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__legislativeMandates__ClingerCohenAct__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.