Property Financial Reporting

Binary NASA-specific award attribute indicating whether property financial reporting is required or applicable for the award. The coded values are 0 for false and 1 for true.

Family: Award
Category: General
Data Type: numeric
Semantic Type: attribute
Mapping: flattened_fpds_xml_field
AI Confidence: high

Variable Overview

FPDS Query Variable
content__award__agencySpecificAwardElements__NASASpecificAwardElements__propertyFinancialReporting
Title
Property Financial Reporting
FPDS Path
award/agencySpecificAwardElements/NASASpecificAwardElements/propertyFinancialReporting
Description
Binary NASA-specific award attribute indicating whether property financial reporting is required or applicable for the award. The coded values are 0 for false and 1 for true.
Business Meaning
This flag helps identify awards that carry property reporting obligations, which can affect award administration, compliance monitoring, and asset accountability analysis. It is useful when segmenting NASA awards for oversight, reporting workload, or property-related audit review.
Example Value
0
Observed Non-Null Count
695,127

FPDS Compare

FPDS Query Variable
content__award__agencySpecificAwardElements__NASASpecificAwardElements__propertyFinancialReporting
FPDS XML Path
award/agencySpecificAwardElements/NASASpecificAwardElements/propertyFinancialReporting
Mapping Type
flattened_fpds_xml_field
Comparison Summary
FPDS Query flattens the original nested FPDS XML path 'award/agencySpecificAwardElements/NASASpecificAwardElements/propertyFinancialReporting' into the SQL-ready variable 'content__award__agencySpecificAwardElements__NASASpecificAwardElements__propertyFinancialReporting'.

Use Cases

  • Dictionary lookup and field explanation
  • SQL filtering and grouping
  • Analytical reporting and reusable query building

Common Usage

  • Filter NASA awards with property reporting requirements
  • Count awards by compliance-related attribute
  • Join with other NASA-specific award elements for administrative analysis

Common Mistakes

  • Interpreting 0 as missing instead of false
  • Using the field outside NASA-related records without checking agency applicability

Query Guidance

Filter on the numeric value, e.g. WHERE propertyFinancialReporting = 1 for awards requiring property financial reporting. When summarizing, group by the code value and handle null separately if your extract distinguishes missing from false.

SQL Examples

Preview values

SELECT
    content__award__agencySpecificAwardElements__NASASpecificAwardElements__propertyFinancialReporting AS property_financial_reporting
FROM fpds.data
WHERE content__award__agencySpecificAwardElements__NASASpecificAwardElements__propertyFinancialReporting IS NOT NULL
LIMIT 25

Aggregate total

SELECT
    sum(content__award__agencySpecificAwardElements__NASASpecificAwardElements__propertyFinancialReporting) AS total_value
FROM fpds.data
WHERE content__award__agencySpecificAwardElements__NASASpecificAwardElements__propertyFinancialReporting IS NOT NULL

Distribution overview

SELECT
    min(content__award__agencySpecificAwardElements__NASASpecificAwardElements__propertyFinancialReporting) AS min_value,
    avg(content__award__agencySpecificAwardElements__NASASpecificAwardElements__propertyFinancialReporting) AS avg_value,
    max(content__award__agencySpecificAwardElements__NASASpecificAwardElements__propertyFinancialReporting) AS max_value,
    count() AS record_count
FROM fpds.data
WHERE content__award__agencySpecificAwardElements__NASASpecificAwardElements__propertyFinancialReporting IS NOT NULL

Each dictionary item includes SQL-ready examples generated alongside the variable metadata, allowing immediate use in FPDS Query for filtering, aggregation, and analysis.