Interagency Contracting Authority
Boolean or coded flag indicating whether the IDV involves use of interagency contracting authority. In FPDS, this captures whether the award is associated with an authorized interagency contracting arrangement rather than describing the contract action itself.
FPDS Compare
Paired Field
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Filter IDVs associated with interagency contracting arrangements
- Segment awards for compliance or policy analysis
- Compare use of interagency authority across agencies or time periods
Common Mistakes
- Treating the field as a free-text description instead of a coded flag
- Assuming any non-null value has the same meaning without checking the code legend
Query Guidance
Use the field as a filter on the specific code or boolean indicator present in your data extract, and verify whether the stored value is a literal true/false, Y/N, or another code such as 'B'. In SQL, test for the documented code set and preserve null handling explicitly so missing values are not confused with 'no'.
SQL Examples
Preview values
SELECT
content__IDV__legislativeMandates__interagencyContractingAuthority AS interagency_contracting_authority
FROM fpds.data
WHERE content__IDV__legislativeMandates__interagencyContractingAuthority IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__IDV__legislativeMandates__interagencyContractingAuthority AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__legislativeMandates__interagencyContractingAuthority 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.