New Technology or Patent Rights Clause
Boolean or coded flag indicating whether NASA's New Technology or Patent Rights clause applies to the IDV record. A value of 0 means the clause does not apply; a value of 1 means it does. This is a record-level compliance indicator tied to the NASA-specific terms of the agreement.
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
- Identify NASA IDVs subject to technology or patent rights clauses
- Segment awards for compliance or IP-rights analysis
- Measure prevalence of NASA-specific clause usage across IDVs
Common Mistakes
- Treating null or missing values the same as 0
- Using the flag as a proxy for overall competition, award size, or contract type
Query Guidance
Use a direct equality filter on the true code, for example WHERE newTechnologyOrPatentRightsClause = 1. If comparing compliance coverage, include explicit null handling so missing data is not counted as false. When aggregating, report counts and rates by the flag value rather than interpreting it as a text field.
SQL Examples
Preview values
SELECT
content__IDV__agencySpecificIDVElements__NASASpecificIDVElements__newTechnologyOrPatentRightsClause AS new_technology_or_patent_rights_clause
FROM fpds.data
WHERE content__IDV__agencySpecificIDVElements__NASASpecificIDVElements__newTechnologyOrPatentRightsClause IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__IDV__agencySpecificIDVElements__NASASpecificIDVElements__newTechnologyOrPatentRightsClause AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__agencySpecificIDVElements__NASASpecificIDVElements__newTechnologyOrPatentRightsClause 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.