Difference between revisions of "Patent start date end date project"

From edegan.com
Jump to navigation Jump to search
(Created page with "Patent start date end date project Patent Maintenance Fee Schedule https://www.uspto.gov/learning-and-resources/fees-and-payment/uspto-fee-schedule#Patent Maintenance Fee Fe...")
 
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
Patent start date end date project
+
<p>Patent Maintenance Fee Schedule:</p>
 +
<p>https://www.uspto.gov/learning-and-resources/fees-and-payment/uspto-fee-schedule#Patent </p>
 +
<p>Maintenance fees need to be paid 3.5 ~4, 7.5 ~8, and 11.5 ~12 years after grant</p>
 +
<p>After some time, t, patents are valid from the grant date to 20 years after the application date.</p>
 +
<p>Before t, patents are valid from the application date to 18 years before the grant date.</p>
 +
<p><strong>I don&rsquo;t know what happens when people don&rsquo;t pay maintenance fees.</strong></p>
 +
<p>There is enough information in the <strong>patent </strong>&nbsp;and <strong>feestatus </strong>table to create a <strong>patentStartdateEnddate</strong> table.</p>
 +
<p>http://mcnair.bakerinstitute.org/wiki/Patent_Table</p>
 +
<p>http://mcnair.bakerinstitute.org/wiki/Fee_Status_Table</p>
  
Patent Maintenance Fee Schedule
+
<p>Table we want to make:</p>
https://www.uspto.gov/learning-and-resources/fees-and-payment/uspto-fee-schedule#Patent Maintenance Fee
+
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Table "public.patentstartdateenddate"</p>
 
+
<p>Column&nbsp; |&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Type &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; | Modifiers</p>
Fees need to be paid 3.5 ~4, 7.5 ~8, and 11.5 ~12 years after grant
+
<p>---------+--------------------+-----------</p>
After some time, t, patents are valid from the grant date to 20 years after the application date.
+
<p>patent &nbsp; | character varying |</p>
Before t, patents are valid from the application date to 18 years before the grant date.
+
<p>start &nbsp; &nbsp; &nbsp;| date &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; |</p>
 
+
<p>end &nbsp; &nbsp; &nbsp; | date &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;|</p>
'''I don’t know what happens when people don’t pay maintenance fees.'''
+
<p>&nbsp;</p>
 
+
<p><strong>Methodology:</strong></p>
There is enough information in the patent  and feestatus table to create a patentStartdateEnddate table.
+
<p>Take the patentID from the ''patent'' table.</p>
 
+
<p>Check if a fee has been paid within a certain date range using the ''feestatus'' table.</p>
Table we want to make:
+
<p>The date range will have to be determined by learning about the rules around maintenance fees.</p>
 
 
      Table "public.patentstartdateenddate"
 
Column |       Type       | Modifiers  
 
--------+-------------------+-----------
 
patent | character varying |  
 
start   | date             |  
 
end     | date             |  
 
 
 
Methodology:
 
Take the patentID from the ''patent'' table.
 
Check if a fee has been paid within a certain date range using the ''feestatus'' table.
 
The date range will have to be determined by learning about the rules around maintenance fees.
 

Latest revision as of 17:58, 12 October 2016

Patent Maintenance Fee Schedule:

https://www.uspto.gov/learning-and-resources/fees-and-payment/uspto-fee-schedule#Patent

Maintenance fees need to be paid 3.5 ~4, 7.5 ~8, and 11.5 ~12 years after grant

After some time, t, patents are valid from the grant date to 20 years after the application date.

Before t, patents are valid from the application date to 18 years before the grant date.

I don’t know what happens when people don’t pay maintenance fees.

There is enough information in the patent  and feestatus table to create a patentStartdateEnddate table.

http://mcnair.bakerinstitute.org/wiki/Patent_Table

http://mcnair.bakerinstitute.org/wiki/Fee_Status_Table

Table we want to make:

       Table "public.patentstartdateenddate"

Column  |       Type             | Modifiers

---------+--------------------+-----------

patent   | character varying |

start      | date                   |

end       | date                    |

 

Methodology:

Take the patentID from the patent table.

Check if a fee has been paid within a certain date range using the feestatus table.

The date range will have to be determined by learning about the rules around maintenance fees.