Property Financial Reporting
Boolean or coded flag indicating whether property financial reporting is required for the NASA IDV record. The value is stored as a 0/1-style indicator, where the field reflects the presence of the reporting requirement rather than a narrative description.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
- NASA-specific IDV record interpretation
Common Usage
- Filter IDVs that require property financial reporting
- Segment awards for property accountability analysis
- Assess compliance-related reporting scope by NASA vehicle
Common Mistakes
- Interpreting the flag as proof that property was actually reported
- Assuming the field contains a numeric count or dollar amount
Query Guidance
Use simple equality filters such as WHERE propertyFinancialReporting = 1 for required reporting, or = 0 for not required. When aggregating, count records by the flag value or convert it to a labeled category in CASE expressions; avoid comparing it as if it were a text description or a measure.
SQL Examples
Preview values
SELECT
content__IDV__agencySpecificIDVElements__NASASpecificIDVElements__propertyFinancialReporting AS property_financial_reporting
FROM fpds.data
WHERE content__IDV__agencySpecificIDVElements__NASASpecificIDVElements__propertyFinancialReporting IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__IDV__agencySpecificIDVElements__NASASpecificIDVElements__propertyFinancialReporting AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__agencySpecificIDVElements__NASASpecificIDVElements__propertyFinancialReporting 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.