Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

namedesctypeindexed
timestamplast modification stamptdatetrue
ucidunique character identifierstringtrue
loadidmeta load identifiertinttrue
nclmsnumber of claimstinttrue
nindepclmsnumber of independent claimstinttrue
famfamily identifierstringtrue
pnpatent number (tokenized)alexandria_tokentrue
pdpublication datetinttrue
anapplication number (tokenized)alexandria_tokentrue
anseriesUS application series codealexandria_stringtrue
anorigoriginal, patent office format application numberalexandria_tokentrue
adfiling datetinttrue
pripriority filing number (tokenized)alexandria_stringtrue
priorigoriginal, patent office format priority numberalexandria_stringtrue
pridearliest priority filing datetinttrue
icl,cpcl,uscl,ficlclassifications suitable for displaystringfalse
invInventorsinventorsalexandria_tokentrue
paApplicantsapplicants/Assignees assignees (all formats)alexandria_tokentrue
ifi_paIFI Assigneesassigneesalexandria_tokentrue
ttl_*All all titlesmixed: alexandria_text, alexandria_asian_texttrue
ab_*All all abstractsmixed: alexandria_text, alexandria_asian_texttrue

 

The short-hand shorthand to return all static fields is the asterisk fl=*

...

As with all examples, we discuss results in JSON format.

Code Block
         "docs" : [
            {
               "timestamp" : "2016-02-27T08:29:31.936Z",
               "ucid" : "US-20160054444-A1",
               "loadid" : 229946,
               "nclms" : 19,
               "nindepclms" : 2,
               "fam" : "-1",
               "pn" : "US-20160054444-A1 US20160054444A1",
               "pd" : 20160225,
               "an" : "US-201514833357-A"
               "anseries" : "14",
               "anorig" : "US-14833357",
               "ad" : 20150824,
               "pri" : [
                  "FR-1457951"
               ],
               "prid" : 20140825,
               "priorig" : [
                  "FR-1457951"
               ],
               "cpcl" : [
                  "G01S  15/588       20130101 LI20160225BHUS        ",
                  "G01S  15/60        20130101 FI20160225BHUS        "
               ],
               "icl" : [
                  "G01S  15/58        20060101ALI20160225BHUS        ",
                  "G01S  15/60        20060101AFI20160225BHUS        "
               ],
               "ifi_pa" : [
                  "ECA ROBOTICS",
                  "ECA ROBOTICS"
               ],
               "inv" : [
                  "Pinto, Marc"
               ],
               "pa" : [
                  "ECA ROBOTICS",
                  "ECA ROBOTICS"
               ],
               "ttl_en" : [
                  "METHOD AND SONAR DEVICE FOR DETERMINING THE SPEED OF MOVEMENT OF A NAVAL VEHICLE IN RELATION TO THE SEA BED"
               ],
               "ab_en" : [
                  "<abstract mxw-id=\"PA168904151\" lang=\"EN\" load-source=\"patent-office\">\n    <p id=\"p-0001\" num=\"0000\">Sonar intended to be carried by a naval vehicle including at least one element for transmitting an acoustic signal, at least one element for receiving the acoustic signal transmitted and reflected on the sea bed and at least two phase centres (PC<sub>1</sub>, PC<sub>2</sub>) that are disposed along a first and a second axis (v<sub>1</sub>, v<sub>2</sub>), respectively, forming an interferometric antenna. The sonar includes elements for determining the speed of movement of the vehicle as a function of the computed value of the relative trim angle (β) formed between a straight line (d<sub>1</sub>) that is perpendicular to the axes (v<sub>1</sub>, v<sub>2</sub>) of the phase centres and a straight line (d<sub>2</sub>) that is perpendicular to the sea bed (F) and of the value determined for the angle of sight.</p>\n  </abstract>"
               ],
            }
         ],

...

Another type of dynamic field makes use of function queries. A simple, yet contrived, example would be to return the number of dependent claims. Claims CLAIMS Direct stores the total number of claims claims in nclms as well as the number of independent claims claims in nindepclms, both as tint. Simple subtraction yields the desired result.

...