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.

Family: IDV
Category: NASA Specific Fields
Data Type: boolean_or_code_flag
Semantic Type: flag
Mapping: flattened_fpds_xml_field
AI Confidence: high

Variable Overview

FPDS Query Variable
content__IDV__agencySpecificIDVElements__NASASpecificIDVElements__propertyFinancialReporting
Title
Property Financial Reporting
FPDS Path
IDV/agencySpecificIDVElements/NASASpecificIDVElements/propertyFinancialReporting
Description
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.
Business Meaning
This flag identifies agreements that carry a property financial reporting obligation, which is relevant for oversight of government property, compliance monitoring, and workload segmentation. Analysts can use it to isolate awards with property accountability requirements and compare reporting obligations across vehicles, offices, or time periods.
Example Value
0
Observed Non-Null Count
58,110

FPDS Compare

FPDS Query Variable
content__IDV__agencySpecificIDVElements__NASASpecificIDVElements__propertyFinancialReporting
FPDS XML Path
IDV/agencySpecificIDVElements/NASASpecificIDVElements/propertyFinancialReporting
Mapping Type
flattened_fpds_xml_field
Comparison Summary
FPDS Query flattens the original nested FPDS XML path 'IDV/agencySpecificIDVElements/NASASpecificIDVElements/propertyFinancialReporting' into the SQL-ready variable 'content__IDV__agencySpecificIDVElements__NASASpecificIDVElements__propertyFinancialReporting'.

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.