Other Statutory Authority
Human-readable statutory basis recorded for the award when the obligation is associated with an authority other than the standard procurement statutes. It captures the text label for the legal authority cited in the legislative mandates portion of the FPDS award record.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Classifying awards by statutory or regulatory authority
- Filtering nonstandard procurement actions for compliance analysis
- Grouping awards for legal authority trend reporting
Common Mistakes
- Assuming the text is a controlled vocabulary or unique code
- Using raw values without normalizing abbreviations and variant spellings
Query Guidance
Use this field as a text attribute in WHERE, GROUP BY, or CASE logic after normalizing values. For SQL, prefer ILIKE, TRIM, and mapping tables for consolidation, and combine it with other legislative mandate fields when identifying the applicable authority.
SQL Examples
Preview values
SELECT
content__award__legislativeMandates__otherStatutoryAuthority AS other_statutory_authority
FROM fpds.data
WHERE content__award__legislativeMandates__otherStatutoryAuthority IS NOT NULL
LIMIT 25
Top values
SELECT
content__award__legislativeMandates__otherStatutoryAuthority AS value,
count() AS record_count
FROM fpds.data
WHERE content__award__legislativeMandates__otherStatutoryAuthority 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.