patent-query-shortcuts 0.2.1 → 0.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +749 -102
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +749 -102
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -55,91 +55,603 @@ var patsnapTemplate = {
|
|
|
55
55
|
{ key: "METHOD_SUM", kind: "field", field: "METHOD_SUM", label: "Technical Method", description: "Method summary" },
|
|
56
56
|
{ key: "BENEFIT_SUM", kind: "field", field: "BENEFIT_SUM", label: "Technical Benefit", description: "Benefit summary" },
|
|
57
57
|
// --- Classification (2nd screenshot) ---
|
|
58
|
-
{
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
{
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
58
|
+
{
|
|
59
|
+
key: "CLASS",
|
|
60
|
+
kind: "field",
|
|
61
|
+
field: "CLASS",
|
|
62
|
+
label: "Patent Classification",
|
|
63
|
+
description: "Search across multiple classification systems (IPC, CPC, LOC, FI, F-term, UPC)"
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
key: "IPC",
|
|
67
|
+
kind: "field",
|
|
68
|
+
field: "IPC",
|
|
69
|
+
label: "IPC",
|
|
70
|
+
description: "Search in IPC classification codes"
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
key: "MCPC",
|
|
74
|
+
kind: "field",
|
|
75
|
+
field: "MCPC",
|
|
76
|
+
label: "Main CPC",
|
|
77
|
+
description: "Search in main/primary CPC codes"
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
key: "CPC_SUB_GROUP",
|
|
81
|
+
kind: "field",
|
|
82
|
+
field: "CPC_SUB_GROUP",
|
|
83
|
+
label: "CPC Sub Group",
|
|
84
|
+
description: "Search in CPC subgroup codes"
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
key: "IPC_CPC",
|
|
88
|
+
kind: "field",
|
|
89
|
+
field: "IPC_CPC",
|
|
90
|
+
label: "IPC & CPC",
|
|
91
|
+
description: "Search in both IPC and CPC codes"
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
key: "UPC",
|
|
95
|
+
kind: "field",
|
|
96
|
+
field: "UPC",
|
|
97
|
+
label: "UPC",
|
|
98
|
+
description: "Search in U.S. patent classification codes (USPC/UPC)"
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
key: "LOC",
|
|
102
|
+
kind: "field",
|
|
103
|
+
field: "LOC",
|
|
104
|
+
label: "LOC",
|
|
105
|
+
description: "Search in Locarno Classification codes (design patents)"
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
key: "FI",
|
|
109
|
+
kind: "field",
|
|
110
|
+
field: "FI",
|
|
111
|
+
label: "FI",
|
|
112
|
+
description: "Search in Japanese FI classification codes"
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
key: "FTERM",
|
|
116
|
+
kind: "field",
|
|
117
|
+
field: "FTERM",
|
|
118
|
+
label: "F-TERM",
|
|
119
|
+
description: "Search in Japanese F-term indexing codes"
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
key: "ADC",
|
|
123
|
+
kind: "field",
|
|
124
|
+
field: "ADC",
|
|
125
|
+
label: "Application Domain",
|
|
126
|
+
description: "Search in Application Domain categories"
|
|
127
|
+
},
|
|
128
|
+
{
|
|
129
|
+
key: "TTC",
|
|
130
|
+
kind: "field",
|
|
131
|
+
field: "TTC",
|
|
132
|
+
label: "Technology Topic",
|
|
133
|
+
description: "Search in Technology Topic categories"
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
key: "SEIC",
|
|
137
|
+
kind: "field",
|
|
138
|
+
field: "SEIC",
|
|
139
|
+
label: "Main SEIC",
|
|
140
|
+
description: "Search in main SEIC codes (China)"
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
key: "SEIC_ALL",
|
|
144
|
+
kind: "field",
|
|
145
|
+
field: "SEIC_ALL",
|
|
146
|
+
label: "SEIC (All)",
|
|
147
|
+
description: "Search in all SEIC codes (primary and secondary)"
|
|
148
|
+
},
|
|
149
|
+
{
|
|
150
|
+
key: "GBC",
|
|
151
|
+
kind: "field",
|
|
152
|
+
field: "GBC",
|
|
153
|
+
label: "GBC",
|
|
154
|
+
description: "Search in GBC codes (China - industry clusters)"
|
|
155
|
+
},
|
|
70
156
|
// --- Assignees / Inventors (3rd screenshot) ---
|
|
71
|
-
{
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
{
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
{
|
|
157
|
+
{
|
|
158
|
+
key: "ALL_AN",
|
|
159
|
+
kind: "field",
|
|
160
|
+
field: "ALL_AN",
|
|
161
|
+
label: "All Assignees",
|
|
162
|
+
description: "Search in all assignee names (original and current)"
|
|
163
|
+
},
|
|
164
|
+
{
|
|
165
|
+
key: "ANCS",
|
|
166
|
+
kind: "field",
|
|
167
|
+
field: "ANCS",
|
|
168
|
+
label: "Std. Current Assignee",
|
|
169
|
+
description: "Search in standardized current assignee name"
|
|
170
|
+
},
|
|
171
|
+
{
|
|
172
|
+
key: "ANC",
|
|
173
|
+
kind: "field",
|
|
174
|
+
field: "ANC",
|
|
175
|
+
label: "Current Assignee",
|
|
176
|
+
description: "Search in current assignee/owner name"
|
|
177
|
+
},
|
|
178
|
+
{
|
|
179
|
+
key: "GNAME",
|
|
180
|
+
kind: "field",
|
|
181
|
+
field: "GNAME",
|
|
182
|
+
label: "Grouped Assignee",
|
|
183
|
+
description: "Search in grouped assignee/corporate family name"
|
|
184
|
+
},
|
|
185
|
+
{
|
|
186
|
+
key: "ANS",
|
|
187
|
+
kind: "field",
|
|
188
|
+
field: "ANS",
|
|
189
|
+
label: "Std. Original Assignee",
|
|
190
|
+
description: "Search in standardized original assignee name"
|
|
191
|
+
},
|
|
192
|
+
{
|
|
193
|
+
key: "AN",
|
|
194
|
+
kind: "field",
|
|
195
|
+
field: "AN",
|
|
196
|
+
label: "Original Assignee",
|
|
197
|
+
description: "Search in original assignee at filing/publication"
|
|
198
|
+
},
|
|
199
|
+
{
|
|
200
|
+
key: "F_AN",
|
|
201
|
+
kind: "field",
|
|
202
|
+
field: "F_AN",
|
|
203
|
+
label: "First Original Assignee",
|
|
204
|
+
description: "Search in first original assignee"
|
|
205
|
+
},
|
|
206
|
+
{
|
|
207
|
+
key: "F_ANC",
|
|
208
|
+
kind: "field",
|
|
209
|
+
field: "F_ANC",
|
|
210
|
+
label: "First Current Assignee",
|
|
211
|
+
description: "Search in first current assignee"
|
|
212
|
+
},
|
|
213
|
+
{
|
|
214
|
+
key: "IN",
|
|
215
|
+
kind: "field",
|
|
216
|
+
field: "IN",
|
|
217
|
+
label: "Inventor Name",
|
|
218
|
+
description: "Search in inventor names"
|
|
219
|
+
},
|
|
220
|
+
{
|
|
221
|
+
key: "F_IN",
|
|
222
|
+
kind: "field",
|
|
223
|
+
field: "F_IN",
|
|
224
|
+
label: "First Inventor",
|
|
225
|
+
description: "Search in first inventor"
|
|
226
|
+
},
|
|
227
|
+
{
|
|
228
|
+
key: "ATC",
|
|
229
|
+
kind: "field",
|
|
230
|
+
field: "ATC",
|
|
231
|
+
label: "Agency",
|
|
232
|
+
description: "Search in prosecution agency/law firm name"
|
|
233
|
+
},
|
|
234
|
+
{
|
|
235
|
+
key: "ATCS",
|
|
236
|
+
kind: "field",
|
|
237
|
+
field: "ATCS",
|
|
238
|
+
label: "Std. Agency",
|
|
239
|
+
description: "Search in standardized agency name"
|
|
240
|
+
},
|
|
241
|
+
{
|
|
242
|
+
key: "AT",
|
|
243
|
+
kind: "field",
|
|
244
|
+
field: "AT",
|
|
245
|
+
label: "Attorney Name",
|
|
246
|
+
description: "Search in attorney/agent name"
|
|
247
|
+
},
|
|
248
|
+
{
|
|
249
|
+
key: "PE",
|
|
250
|
+
kind: "field",
|
|
251
|
+
field: "PE",
|
|
252
|
+
label: "Primary Examiner",
|
|
253
|
+
description: "Search in primary examiner name"
|
|
254
|
+
},
|
|
255
|
+
{
|
|
256
|
+
key: "AE",
|
|
257
|
+
kind: "field",
|
|
258
|
+
field: "AE",
|
|
259
|
+
label: "Assistant Examiner",
|
|
260
|
+
description: "Search in assistant examiner name"
|
|
261
|
+
},
|
|
86
262
|
// --- Dates (4th screenshot) ---
|
|
87
|
-
{
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
{
|
|
263
|
+
{
|
|
264
|
+
key: "APD",
|
|
265
|
+
kind: "field",
|
|
266
|
+
field: "APD",
|
|
267
|
+
label: "Application Date",
|
|
268
|
+
snippet: "APD:[| TO ]",
|
|
269
|
+
description: "Filter by application filing date (supports ranges)"
|
|
270
|
+
},
|
|
271
|
+
{
|
|
272
|
+
key: "PBD",
|
|
273
|
+
kind: "field",
|
|
274
|
+
field: "PBD",
|
|
275
|
+
label: "Publication Date",
|
|
276
|
+
snippet: "PBD:[| TO ]",
|
|
277
|
+
description: "Filter by publication date (supports ranges)"
|
|
278
|
+
},
|
|
279
|
+
{
|
|
280
|
+
key: "PRIORITY_DATE",
|
|
281
|
+
kind: "field",
|
|
282
|
+
field: "PRIORITY_DATE",
|
|
283
|
+
label: "Priority Date",
|
|
284
|
+
snippet: "PRIORITY_DATE:[| TO ]",
|
|
285
|
+
description: "Filter by priority date (supports ranges)"
|
|
286
|
+
},
|
|
287
|
+
{
|
|
288
|
+
key: "EXDT",
|
|
289
|
+
kind: "field",
|
|
290
|
+
field: "EXDT",
|
|
291
|
+
label: "Estimated Expiry Date",
|
|
292
|
+
snippet: "EXDT:[| TO ]",
|
|
293
|
+
description: "Filter by estimated expiry date (supports ranges)"
|
|
294
|
+
},
|
|
295
|
+
{
|
|
296
|
+
key: "ISD",
|
|
297
|
+
kind: "field",
|
|
298
|
+
field: "ISD",
|
|
299
|
+
label: "Issue Date",
|
|
300
|
+
snippet: "ISD:[| TO ]",
|
|
301
|
+
description: "Filter by grant/issue date (supports ranges)"
|
|
302
|
+
},
|
|
303
|
+
{
|
|
304
|
+
key: "EXPD",
|
|
305
|
+
kind: "field",
|
|
306
|
+
field: "EXPD",
|
|
307
|
+
label: "Expiry Date",
|
|
308
|
+
snippet: "EXPD:[| TO ]",
|
|
309
|
+
description: "Filter by recorded expiry date (supports ranges)"
|
|
310
|
+
},
|
|
311
|
+
{
|
|
312
|
+
key: "EXAMINE_DATE",
|
|
313
|
+
kind: "field",
|
|
314
|
+
field: "EXAMINE_DATE",
|
|
315
|
+
label: "Substantive Examination Date",
|
|
316
|
+
snippet: "EXAMINE_DATE:[| TO ]",
|
|
317
|
+
description: "Filter by examination date (supports ranges)"
|
|
318
|
+
},
|
|
319
|
+
{
|
|
320
|
+
key: "PCTENTRY_DATE",
|
|
321
|
+
kind: "field",
|
|
322
|
+
field: "PCTENTRY_DATE",
|
|
323
|
+
label: "PCT Entry Date",
|
|
324
|
+
snippet: "PCTENTRY_DATE:[| TO ]",
|
|
325
|
+
description: "Filter by PCT entry date (supports ranges)"
|
|
326
|
+
},
|
|
327
|
+
{
|
|
328
|
+
key: "LEGAL_STATUS_DATE",
|
|
329
|
+
kind: "field",
|
|
330
|
+
field: "LEGAL_STATUS_DATE",
|
|
331
|
+
label: "Legal Status Date",
|
|
332
|
+
snippet: "LEGAL_STATUS_DATE:[| TO ]",
|
|
333
|
+
description: "Filter by legal status event date (supports ranges)"
|
|
334
|
+
},
|
|
96
335
|
// --- Numbers (5th screenshot) ---
|
|
97
|
-
{
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
336
|
+
{
|
|
337
|
+
key: "PN",
|
|
338
|
+
kind: "field",
|
|
339
|
+
field: "PN",
|
|
340
|
+
label: "Publication Number",
|
|
341
|
+
description: "Search by publication number (e.g., US20240012345A1)"
|
|
342
|
+
},
|
|
343
|
+
{
|
|
344
|
+
key: "APNO",
|
|
345
|
+
kind: "field",
|
|
346
|
+
field: "APNO",
|
|
347
|
+
label: "Application Number",
|
|
348
|
+
description: "Search by application number"
|
|
349
|
+
},
|
|
350
|
+
{
|
|
351
|
+
key: "PRNO",
|
|
352
|
+
kind: "field",
|
|
353
|
+
field: "PRNO",
|
|
354
|
+
label: "Priority Number",
|
|
355
|
+
description: "Search by priority application number"
|
|
356
|
+
},
|
|
357
|
+
{
|
|
358
|
+
key: "KD",
|
|
359
|
+
kind: "field",
|
|
360
|
+
field: "KD",
|
|
361
|
+
label: "Kind Code",
|
|
362
|
+
description: "Search by kind code (e.g., A1, A2, B1, B2)"
|
|
363
|
+
},
|
|
364
|
+
{
|
|
365
|
+
key: "PCT_APNO",
|
|
366
|
+
kind: "field",
|
|
367
|
+
field: "PCT_APNO",
|
|
368
|
+
label: "PCT Application Number",
|
|
369
|
+
description: "Search by PCT application number"
|
|
370
|
+
},
|
|
371
|
+
{
|
|
372
|
+
key: "PCT_PN",
|
|
373
|
+
kind: "field",
|
|
374
|
+
field: "PCT_PN",
|
|
375
|
+
label: "PCT Publication Number",
|
|
376
|
+
description: "Search by PCT publication number (e.g., WO2024012345A1)"
|
|
377
|
+
},
|
|
103
378
|
// --- Addresses / Regions (6th screenshot) ---
|
|
104
|
-
{
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
379
|
+
{
|
|
380
|
+
key: "AN_ADD",
|
|
381
|
+
kind: "field",
|
|
382
|
+
field: "AN_ADD",
|
|
383
|
+
label: "Original Assignee Address",
|
|
384
|
+
description: "Search in original assignee address"
|
|
385
|
+
},
|
|
386
|
+
{
|
|
387
|
+
key: "ANC_ADD",
|
|
388
|
+
kind: "field",
|
|
389
|
+
field: "ANC_ADD",
|
|
390
|
+
label: "Current Assignee Address",
|
|
391
|
+
description: "Search in current assignee address"
|
|
392
|
+
},
|
|
393
|
+
{
|
|
394
|
+
key: "IN_ADDRESS",
|
|
395
|
+
kind: "field",
|
|
396
|
+
field: "IN_ADDRESS",
|
|
397
|
+
label: "Inventor Address",
|
|
398
|
+
description: "Search in inventor address"
|
|
399
|
+
},
|
|
400
|
+
{
|
|
401
|
+
key: "PRIORITY_COUNTRY",
|
|
402
|
+
kind: "field",
|
|
403
|
+
field: "PRIORITY_COUNTRY",
|
|
404
|
+
label: "Priority Country/Region",
|
|
405
|
+
description: "Filter by priority country/region"
|
|
406
|
+
},
|
|
407
|
+
{
|
|
408
|
+
key: "AUTHORITY",
|
|
409
|
+
kind: "field",
|
|
410
|
+
field: "AUTHORITY",
|
|
411
|
+
label: "Authority",
|
|
412
|
+
description: "Search by authority/jurisdiction code (e.g., US, EP, WO, CN, JP)"
|
|
413
|
+
},
|
|
414
|
+
{
|
|
415
|
+
key: "EPDS",
|
|
416
|
+
kind: "field",
|
|
417
|
+
field: "EPDS",
|
|
418
|
+
label: "EP Designated State",
|
|
419
|
+
description: "Search by EP designated states"
|
|
420
|
+
},
|
|
421
|
+
{
|
|
422
|
+
key: "ENTRY_COUNTRY",
|
|
423
|
+
kind: "field",
|
|
424
|
+
field: "ENTRY_COUNTRY",
|
|
425
|
+
label: "Entry Country/Region",
|
|
426
|
+
description: "Search by PCT entry country/region"
|
|
427
|
+
},
|
|
111
428
|
// --- Citations / Family (7th screenshot) ---
|
|
112
|
-
{
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
{
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
{
|
|
127
|
-
|
|
429
|
+
{
|
|
430
|
+
key: "B_CITES",
|
|
431
|
+
kind: "field",
|
|
432
|
+
field: "B_CITES",
|
|
433
|
+
label: "Backward Citations",
|
|
434
|
+
description: "Search patents cited by this patent"
|
|
435
|
+
},
|
|
436
|
+
{
|
|
437
|
+
key: "F_CITES",
|
|
438
|
+
kind: "field",
|
|
439
|
+
field: "F_CITES",
|
|
440
|
+
label: "Forward Citations",
|
|
441
|
+
description: "Search patents that cite this patent"
|
|
442
|
+
},
|
|
443
|
+
{
|
|
444
|
+
key: "BF_CITES",
|
|
445
|
+
kind: "field",
|
|
446
|
+
field: "BF_CITES",
|
|
447
|
+
label: "Backward Or Forward Citations",
|
|
448
|
+
description: "Search in backward or forward citations"
|
|
449
|
+
},
|
|
450
|
+
{
|
|
451
|
+
key: "B_CITES_COUNT",
|
|
452
|
+
kind: "field",
|
|
453
|
+
field: "B_CITES_COUNT",
|
|
454
|
+
label: "Count Of Backward Citations",
|
|
455
|
+
snippet: "B_CITES_COUNT:[| TO *]",
|
|
456
|
+
description: "Filter by backward citation count (supports ranges)"
|
|
457
|
+
},
|
|
458
|
+
{
|
|
459
|
+
key: "F_CITES_COUNT",
|
|
460
|
+
kind: "field",
|
|
461
|
+
field: "F_CITES_COUNT",
|
|
462
|
+
label: "Count Of Forward Citations",
|
|
463
|
+
snippet: "F_CITES_COUNT:[| TO *]",
|
|
464
|
+
description: "Filter by forward citation count (supports ranges)"
|
|
465
|
+
},
|
|
466
|
+
{
|
|
467
|
+
key: "F_CITES_ANC",
|
|
468
|
+
kind: "field",
|
|
469
|
+
field: "F_CITES_ANC",
|
|
470
|
+
label: "Assignee Forward Citations (Current)",
|
|
471
|
+
description: "Search forward citations by current assignee"
|
|
472
|
+
},
|
|
473
|
+
{
|
|
474
|
+
key: "B_CITES_ANC",
|
|
475
|
+
kind: "field",
|
|
476
|
+
field: "B_CITES_ANC",
|
|
477
|
+
label: "Assignee Backward Citations (Current)",
|
|
478
|
+
description: "Search backward citations by current assignee"
|
|
479
|
+
},
|
|
480
|
+
{
|
|
481
|
+
key: "CITE_CATEGORY",
|
|
482
|
+
kind: "field",
|
|
483
|
+
field: "CITE_CATEGORY",
|
|
484
|
+
label: "Citation/Rejection Category",
|
|
485
|
+
description: "Filter by citation category (examiner-cited, applicant-cited)"
|
|
486
|
+
},
|
|
487
|
+
{
|
|
488
|
+
key: "FAM",
|
|
489
|
+
kind: "field",
|
|
490
|
+
field: "FAM",
|
|
491
|
+
label: "Simple Family",
|
|
492
|
+
description: "Search by simple patent family ID"
|
|
493
|
+
},
|
|
494
|
+
{
|
|
495
|
+
key: "EFAM",
|
|
496
|
+
kind: "field",
|
|
497
|
+
field: "EFAM",
|
|
498
|
+
label: "PatSnap Family",
|
|
499
|
+
description: "Search by PatSnap extended family ID"
|
|
500
|
+
},
|
|
501
|
+
{
|
|
502
|
+
key: "FAM_COUNT",
|
|
503
|
+
kind: "field",
|
|
504
|
+
field: "FAM_COUNT",
|
|
505
|
+
label: "Simple Family Application Count",
|
|
506
|
+
snippet: "FAM_COUNT:[| TO *]",
|
|
507
|
+
description: "Filter by simple family count (supports ranges)"
|
|
508
|
+
},
|
|
509
|
+
{
|
|
510
|
+
key: "IFAM_COUNT",
|
|
511
|
+
kind: "field",
|
|
512
|
+
field: "IFAM_COUNT",
|
|
513
|
+
label: "INPADOC Family Application Count",
|
|
514
|
+
snippet: "IFAM_COUNT:[| TO *]",
|
|
515
|
+
description: "Filter by INPADOC family count (supports ranges)"
|
|
516
|
+
},
|
|
517
|
+
{
|
|
518
|
+
key: "EFAM_COUNT",
|
|
519
|
+
kind: "field",
|
|
520
|
+
field: "EFAM_COUNT",
|
|
521
|
+
label: "PatSnap Family Application Count",
|
|
522
|
+
snippet: "EFAM_COUNT:[| TO *]",
|
|
523
|
+
description: "Filter by PatSnap family count (supports ranges)"
|
|
524
|
+
},
|
|
525
|
+
{
|
|
526
|
+
key: "FAM_COUNTRY_COUNT",
|
|
527
|
+
kind: "field",
|
|
528
|
+
field: "FAM_COUNTRY_COUNT",
|
|
529
|
+
label: "Simple Family Jurisdiction Count",
|
|
530
|
+
snippet: "FAM_COUNTRY_COUNT:[| TO *]",
|
|
531
|
+
description: "Filter by simple family jurisdiction count (supports ranges)"
|
|
532
|
+
},
|
|
533
|
+
{
|
|
534
|
+
key: "IFAM_COUNTRY_COUNT",
|
|
535
|
+
kind: "field",
|
|
536
|
+
field: "IFAM_COUNTRY_COUNT",
|
|
537
|
+
label: "INPADOC Family Jurisdiction Count",
|
|
538
|
+
snippet: "IFAM_COUNTRY_COUNT:[| TO *]",
|
|
539
|
+
description: "Filter by INPADOC family jurisdiction count (supports ranges)"
|
|
540
|
+
},
|
|
541
|
+
{
|
|
542
|
+
key: "EFAM_COUNTRY_COUNT",
|
|
543
|
+
kind: "field",
|
|
544
|
+
field: "EFAM_COUNTRY_COUNT",
|
|
545
|
+
label: "PatSnap Family Jurisdiction Count",
|
|
546
|
+
snippet: "EFAM_COUNTRY_COUNT:[| TO *]",
|
|
547
|
+
description: "Filter by PatSnap family jurisdiction count (supports ranges)"
|
|
548
|
+
},
|
|
128
549
|
// --- Legal status / metrics (8th screenshot) ---
|
|
129
|
-
{
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
{
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
550
|
+
{
|
|
551
|
+
key: "LEGAL_STATUS",
|
|
552
|
+
kind: "field",
|
|
553
|
+
field: "LEGAL_STATUS",
|
|
554
|
+
label: "Legal Status",
|
|
555
|
+
description: "Search by legal status (active, expired, lapsed, withdrawn, revoked)"
|
|
556
|
+
},
|
|
557
|
+
{
|
|
558
|
+
key: "LEGAL_EVENT",
|
|
559
|
+
kind: "field",
|
|
560
|
+
field: "LEGAL_EVENT",
|
|
561
|
+
label: "Legal Event",
|
|
562
|
+
description: "Search by legal event codes (fee payment, lapse, reinstatement, opposition)"
|
|
563
|
+
},
|
|
564
|
+
{
|
|
565
|
+
key: "SIMPLE_LEGAL_STATUS",
|
|
566
|
+
kind: "field",
|
|
567
|
+
field: "SIMPLE_LEGAL_STATUS",
|
|
568
|
+
label: "Simple Legal Status",
|
|
569
|
+
description: "Search by simple legal status (Active, Pending, Expired, Lapsed, Abandoned)"
|
|
570
|
+
},
|
|
571
|
+
{
|
|
572
|
+
key: "UP_STATUS",
|
|
573
|
+
kind: "field",
|
|
574
|
+
field: "UP_STATUS",
|
|
575
|
+
label: "Status of Unified Patent Court",
|
|
576
|
+
description: "Search by Unified Patent Court status (EP/Unitary patents)"
|
|
577
|
+
},
|
|
578
|
+
{
|
|
579
|
+
key: "ENTRY_COUNTRY_LS",
|
|
580
|
+
kind: "field",
|
|
581
|
+
field: "ENTRY_COUNTRY_LS",
|
|
582
|
+
label: "Legal Status of Entry Country/Region",
|
|
583
|
+
description: "Search legal status for PCT entry countries"
|
|
584
|
+
},
|
|
585
|
+
{
|
|
586
|
+
key: "ENTRY_COUNTRY_SLS",
|
|
587
|
+
kind: "field",
|
|
588
|
+
field: "ENTRY_COUNTRY_SLS",
|
|
589
|
+
label: "Simple Legal Status of Entry Country/Region",
|
|
590
|
+
description: "Search simple legal status for PCT entry countries"
|
|
591
|
+
},
|
|
592
|
+
{
|
|
593
|
+
key: "PV",
|
|
594
|
+
kind: "field",
|
|
595
|
+
field: "PV",
|
|
596
|
+
label: "Patent Value",
|
|
597
|
+
snippet: "PV:[| TO *]",
|
|
598
|
+
description: "Filter by patent value score (supports ranges)"
|
|
599
|
+
},
|
|
600
|
+
{
|
|
601
|
+
key: "PAGE_COUNT",
|
|
602
|
+
kind: "field",
|
|
603
|
+
field: "PAGE_COUNT",
|
|
604
|
+
label: "Page Count",
|
|
605
|
+
snippet: "PAGE_COUNT:[| TO *]",
|
|
606
|
+
description: "Filter by page count (supports ranges)"
|
|
607
|
+
},
|
|
608
|
+
{
|
|
609
|
+
key: "CLAIM_COUNT",
|
|
610
|
+
kind: "field",
|
|
611
|
+
field: "CLAIM_COUNT",
|
|
612
|
+
label: "Claim Count",
|
|
613
|
+
snippet: "CLAIM_COUNT:[| TO *]",
|
|
614
|
+
description: "Filter by claim count (supports ranges)"
|
|
615
|
+
},
|
|
616
|
+
{
|
|
617
|
+
key: "FCLMS_WORDCOUNT",
|
|
618
|
+
kind: "field",
|
|
619
|
+
field: "FCLMS_WORDCOUNT",
|
|
620
|
+
label: "Word count of first claim",
|
|
621
|
+
snippet: "FCLMS_WORDCOUNT:[| TO *]",
|
|
622
|
+
description: "Filter by first claim word count (supports ranges)"
|
|
623
|
+
},
|
|
624
|
+
{
|
|
625
|
+
key: "AN_COUNT",
|
|
626
|
+
kind: "field",
|
|
627
|
+
field: "AN_COUNT",
|
|
628
|
+
label: "Count of Original Assignees",
|
|
629
|
+
snippet: "AN_COUNT:[| TO *]",
|
|
630
|
+
description: "Filter by original assignee count (supports ranges)"
|
|
631
|
+
},
|
|
632
|
+
{
|
|
633
|
+
key: "ANC_COUNT",
|
|
634
|
+
kind: "field",
|
|
635
|
+
field: "ANC_COUNT",
|
|
636
|
+
label: "Count of Current Assignees",
|
|
637
|
+
snippet: "ANC_COUNT:[| TO *]",
|
|
638
|
+
description: "Filter by current assignee count (supports ranges)"
|
|
639
|
+
},
|
|
640
|
+
{
|
|
641
|
+
key: "IN_COUNT",
|
|
642
|
+
kind: "field",
|
|
643
|
+
field: "IN_COUNT",
|
|
644
|
+
label: "Count of Inventors",
|
|
645
|
+
snippet: "IN_COUNT:[| TO *]",
|
|
646
|
+
description: "Filter by inventor count (supports ranges)"
|
|
647
|
+
},
|
|
648
|
+
{
|
|
649
|
+
key: "GOV",
|
|
650
|
+
kind: "field",
|
|
651
|
+
field: "GOV",
|
|
652
|
+
label: "Government Interest",
|
|
653
|
+
description: "Search by government interest indicators"
|
|
654
|
+
}
|
|
143
655
|
]
|
|
144
656
|
};
|
|
145
657
|
|
|
@@ -150,29 +662,164 @@ var nuvoaiTemplate = {
|
|
|
150
662
|
normalizeKey: "upper",
|
|
151
663
|
shortcuts: [
|
|
152
664
|
// Patent keyword (all-fields search)
|
|
153
|
-
{
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
{
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
{
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
{
|
|
665
|
+
{
|
|
666
|
+
key: "TTL",
|
|
667
|
+
kind: "field",
|
|
668
|
+
field: "TTL",
|
|
669
|
+
label: "Invention Title",
|
|
670
|
+
description: "Search in invention title (all languages)",
|
|
671
|
+
aliases: ["TITLE"]
|
|
672
|
+
},
|
|
673
|
+
{
|
|
674
|
+
key: "TA",
|
|
675
|
+
kind: "field",
|
|
676
|
+
field: "TA",
|
|
677
|
+
label: "Invention Title, Abstract",
|
|
678
|
+
description: "Search in title and abstract (all languages)"
|
|
679
|
+
},
|
|
680
|
+
{
|
|
681
|
+
key: "TAC",
|
|
682
|
+
kind: "field",
|
|
683
|
+
field: "TAC",
|
|
684
|
+
label: "Invention Title, Abstract, Claims",
|
|
685
|
+
description: "Search in title, abstract, and claims (all languages)"
|
|
686
|
+
},
|
|
687
|
+
{
|
|
688
|
+
key: "TACD",
|
|
689
|
+
kind: "field",
|
|
690
|
+
field: "TACD",
|
|
691
|
+
label: "Invention Title, Abstract, Claims, Description",
|
|
692
|
+
description: "Search in title, abstract, claims, and description (all languages)"
|
|
693
|
+
},
|
|
694
|
+
{
|
|
695
|
+
key: "COUNTRY",
|
|
696
|
+
kind: "field",
|
|
697
|
+
field: "COUNTRY",
|
|
698
|
+
label: "Country",
|
|
699
|
+
description: "Filter by country/region code (e.g., US, EP, WO, CN, JP)"
|
|
700
|
+
},
|
|
701
|
+
{
|
|
702
|
+
key: "KIND",
|
|
703
|
+
kind: "field",
|
|
704
|
+
field: "KIND",
|
|
705
|
+
label: "Patent Kind",
|
|
706
|
+
description: "Filter by kind code (e.g., A1, A2, B1, B2)"
|
|
707
|
+
},
|
|
708
|
+
{
|
|
709
|
+
key: "TYPE",
|
|
710
|
+
kind: "field",
|
|
711
|
+
field: "TYPE",
|
|
712
|
+
label: "Patent Type",
|
|
713
|
+
description: "Filter by document type (application, grant, utility, design)"
|
|
714
|
+
},
|
|
715
|
+
{
|
|
716
|
+
key: "ABST",
|
|
717
|
+
kind: "field",
|
|
718
|
+
field: "ABST",
|
|
719
|
+
label: "Abstract",
|
|
720
|
+
description: "Search in abstract (all languages)"
|
|
721
|
+
},
|
|
722
|
+
{
|
|
723
|
+
key: "CLM",
|
|
724
|
+
kind: "field",
|
|
725
|
+
field: "CLM",
|
|
726
|
+
label: "Claims",
|
|
727
|
+
description: "Search in claims (all languages)"
|
|
728
|
+
},
|
|
729
|
+
{
|
|
730
|
+
key: "DESC",
|
|
731
|
+
kind: "field",
|
|
732
|
+
field: "DESC",
|
|
733
|
+
label: "Description",
|
|
734
|
+
description: "Search in description (all languages)"
|
|
735
|
+
},
|
|
736
|
+
{
|
|
737
|
+
key: "PUB_DT",
|
|
738
|
+
kind: "field",
|
|
739
|
+
field: "PUB_DT",
|
|
740
|
+
label: "Publication Date",
|
|
741
|
+
snippet: "PUB_DT:[| TO ]",
|
|
742
|
+
description: "Filter by publication date (supports ranges)"
|
|
743
|
+
},
|
|
744
|
+
{
|
|
745
|
+
key: "APP_DT",
|
|
746
|
+
kind: "field",
|
|
747
|
+
field: "APP_DT",
|
|
748
|
+
label: "Application Date",
|
|
749
|
+
snippet: "APP_DT:[| TO ]",
|
|
750
|
+
description: "Filter by application filing date (supports ranges)"
|
|
751
|
+
},
|
|
752
|
+
{
|
|
753
|
+
key: "EXP_DT",
|
|
754
|
+
kind: "field",
|
|
755
|
+
field: "EXP_DT",
|
|
756
|
+
label: "Expiration Date",
|
|
757
|
+
snippet: "EXP_DT:[| TO ]",
|
|
758
|
+
description: "Filter by expiration date (supports ranges)"
|
|
759
|
+
},
|
|
760
|
+
{
|
|
761
|
+
key: "APP_NUM",
|
|
762
|
+
kind: "field",
|
|
763
|
+
field: "APP_NUM",
|
|
764
|
+
label: "Application Number",
|
|
765
|
+
description: "Search by application number"
|
|
766
|
+
},
|
|
767
|
+
{
|
|
768
|
+
key: "PUB_NUM",
|
|
769
|
+
kind: "field",
|
|
770
|
+
field: "PUB_NUM",
|
|
771
|
+
label: "Publication Number",
|
|
772
|
+
description: "Search by publication number"
|
|
773
|
+
},
|
|
774
|
+
{
|
|
775
|
+
key: "CURR_ASGN",
|
|
776
|
+
kind: "field",
|
|
777
|
+
field: "CURR_ASGN",
|
|
778
|
+
label: "Current Assignee",
|
|
779
|
+
description: "Search by current assignee/owner name"
|
|
780
|
+
},
|
|
781
|
+
{
|
|
782
|
+
key: "INV",
|
|
783
|
+
kind: "field",
|
|
784
|
+
field: "INV",
|
|
785
|
+
label: "Inventors",
|
|
786
|
+
description: "Search in inventor names"
|
|
787
|
+
},
|
|
788
|
+
{
|
|
789
|
+
key: "LEGAL_STATUS",
|
|
790
|
+
kind: "field",
|
|
791
|
+
field: "LEGAL_STATUS",
|
|
792
|
+
label: "Legal Status",
|
|
793
|
+
description: "Search by legal status (active, pending, expired, lapsed, revoked)"
|
|
794
|
+
},
|
|
795
|
+
{
|
|
796
|
+
key: "LEGAL_EVNTS",
|
|
797
|
+
kind: "field",
|
|
798
|
+
field: "LEGAL_EVNTS",
|
|
799
|
+
label: "Legal Events",
|
|
800
|
+
description: "Search in legal events (fee payments, lapse, reinstatement, opposition)"
|
|
801
|
+
},
|
|
802
|
+
{
|
|
803
|
+
key: "IPC",
|
|
804
|
+
kind: "field",
|
|
805
|
+
field: "IPC",
|
|
806
|
+
label: "IPC Classification (Main Group)",
|
|
807
|
+
description: "Search in IPC classification codes"
|
|
808
|
+
},
|
|
809
|
+
{
|
|
810
|
+
key: "CPC",
|
|
811
|
+
kind: "field",
|
|
812
|
+
field: "CPC",
|
|
813
|
+
label: "CPC Classification (Main Group)",
|
|
814
|
+
description: "Search in CPC classification codes"
|
|
815
|
+
},
|
|
816
|
+
{
|
|
817
|
+
key: "FAMILY_ID",
|
|
818
|
+
kind: "field",
|
|
819
|
+
field: "FAMILY_ID",
|
|
820
|
+
label: "Family ID",
|
|
821
|
+
description: "Search by patent family ID"
|
|
822
|
+
}
|
|
176
823
|
]
|
|
177
824
|
};
|
|
178
825
|
|