Cost Accounting Standards Clause
Indicates whether the awarded contract is subject to Cost Accounting Standards (CAS). In FPDS, this is a boolean-style compliance flag at the contract-data level, often stored as a coded value such as X rather than a long descriptive text.
FPDS Compare
Paired Field
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Filter awards subject to CAS
- Segment procurement portfolio by compliance-related characteristics
- Identify awards that may warrant audit or oversight review
Common Mistakes
- Treating X as a textual description instead of a coded indicator
- Assuming a blank value always means no CAS coverage rather than missing or unreported data
Query Guidance
In SQL, filter on the coded flag explicitly, for example WHERE content__award__contractData__costAccountingStandardsClause = 'X'. Use IS NULL or IN (...) checks to distinguish missing values from a populated negative indicator if the extract uses one.
SQL Examples
Preview values
SELECT
content__award__contractData__costAccountingStandardsClause AS cost_accounting_standards_clause
FROM fpds.data
WHERE content__award__contractData__costAccountingStandardsClause IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__award__contractData__costAccountingStandardsClause AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__award__contractData__costAccountingStandardsClause 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.