CCR Exception
Boolean or coded indicator showing whether the vendor record has a Central Contractor Registration (CCR) exception on the award. It is a vendor-level compliance/status flag stored under the award's vendor information and may be represented as a code rather than a simple true/false value.
FPDS Compare
Paired Field
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
- Contractor profiling and competitor analysis
Common Usage
- Filter awards where the vendor had a CCR exception
- Segment compliance or validation exceptions in vendor data
- Review outlier records for policy or reporting exceptions
Common Mistakes
- Assuming every non-null value means the same thing as a boolean true
- Interpreting the field as contractor performance or responsibility status
Query Guidance
Use this field in WHERE clauses to isolate exception records, but first confirm the actual stored codes or literals in your dataset. If the value is coded, map each observed code to its meaning before aggregating; if it behaves like a flag, test for the exception value rather than relying on generic truthy comparisons.
SQL Examples
Preview values
SELECT
content__award__vendor__CCRException AS c_c_r_exception
FROM fpds.data
WHERE content__award__vendor__CCRException IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__award__vendor__CCRException AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__award__vendor__CCRException IS NOT NULL
GROUP BY flag_value
ORDER BY record_count DESC
Each dictionary item includes SQL-ready examples generated alongside the variable metadata, allowing immediate use in FPDS Query for filtering, aggregation, and analysis.