Other Statutory Authority
Human-readable text for NASA's statutory authority supporting the award action. It identifies the legal basis or authority cited for the procurement, such as a Space Act-based transaction, rather than a numeric code.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Filter NASA awards by statutory authority
- Group awards by legal basis for reporting
- Identify Space Act or other non-FAR actions
Common Mistakes
- Assuming the value is a universal government-wide code
- Grouping raw text without normalizing equivalent labels
Query Guidance
Use exact-match or normalized text predicates for targeted analysis, for example WHERE LOWER(otherStatutoryAuthority) = 'space act'. For rollups, apply TRIM/LOWER and consider DISTINCT values first to see whether the field contains standardized terms or free-text variants.
SQL Examples
Preview values
SELECT
content__award__agencySpecificAwardElements__NASASpecificAwardElements__otherStatutoryAuthority AS other_statutory_authority
FROM fpds.data
WHERE content__award__agencySpecificAwardElements__NASASpecificAwardElements__otherStatutoryAuthority IS NOT NULL
LIMIT 25
Top values
SELECT
content__award__agencySpecificAwardElements__NASASpecificAwardElements__otherStatutoryAuthority AS value,
count() AS record_count
FROM fpds.data
WHERE content__award__agencySpecificAwardElements__NASASpecificAwardElements__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.