patents-mcp-server 1.0.0
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/LICENSE +21 -0
- package/README.md +191 -0
- package/dist/base.client-zZnUjoIb.js +2 -0
- package/dist/base.client-zZnUjoIb.js.map +1 -0
- package/dist/clients/base.client.d.ts +19 -0
- package/dist/clients/base.client.js +1 -0
- package/dist/clients/bigquery.client.d.ts +14 -0
- package/dist/clients/bigquery.client.js +66 -0
- package/dist/clients/bigquery.client.js.map +1 -0
- package/dist/clients/epo-ops.client.d.ts +13 -0
- package/dist/clients/epo-ops.client.js +2 -0
- package/dist/clients/epo-ops.client.js.map +1 -0
- package/dist/clients/odp.client.d.ts +52 -0
- package/dist/clients/odp.client.js +2 -0
- package/dist/clients/odp.client.js.map +1 -0
- package/dist/clients/patentsview.client.d.ts +38 -0
- package/dist/clients/patentsview.client.js +2 -0
- package/dist/clients/patentsview.client.js.map +1 -0
- package/dist/generated/odp/index.d.ts +2 -0
- package/dist/generated/odp/index.js +1 -0
- package/dist/generated/odp/types.gen.d.ts +4432 -0
- package/dist/generated/odp/types.gen.js +1 -0
- package/dist/generated/odp/zod.gen.d.ts +7504 -0
- package/dist/generated/odp/zod.gen.js +2 -0
- package/dist/generated/odp/zod.gen.js.map +1 -0
- package/dist/generated/patentsview/index.d.ts +2 -0
- package/dist/generated/patentsview/index.js +1 -0
- package/dist/generated/patentsview/types.gen.d.ts +2454 -0
- package/dist/generated/patentsview/types.gen.js +1 -0
- package/dist/generated/patentsview/zod.gen.d.ts +3376 -0
- package/dist/generated/patentsview/zod.gen.js +2 -0
- package/dist/generated/patentsview/zod.gen.js.map +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +3 -0
- package/dist/index.js.map +1 -0
- package/dist/lib/config.d.ts +24 -0
- package/dist/lib/config.js +2 -0
- package/dist/lib/config.js.map +1 -0
- package/dist/lib/errors.d.ts +7 -0
- package/dist/lib/errors.js +2 -0
- package/dist/lib/errors.js.map +1 -0
- package/dist/lib/patent-number.d.ts +5 -0
- package/dist/lib/patent-number.js +2 -0
- package/dist/lib/patent-number.js.map +1 -0
- package/dist/lib/retry.d.ts +10 -0
- package/dist/lib/retry.js +2 -0
- package/dist/lib/retry.js.map +1 -0
- package/dist/lib/types.d.ts +22 -0
- package/dist/lib/types.js +1 -0
- package/dist/prompts/index.d.ts +7 -0
- package/dist/prompts/index.js +255 -0
- package/dist/prompts/index.js.map +1 -0
- package/dist/resources/index.d.ts +7 -0
- package/dist/resources/index.js +44 -0
- package/dist/resources/index.js.map +1 -0
- package/dist/server.d.ts +8 -0
- package/dist/server.js +2 -0
- package/dist/server.js.map +1 -0
- package/dist/tools/bigquery.tools.d.ts +7 -0
- package/dist/tools/bigquery.tools.js +14 -0
- package/dist/tools/bigquery.tools.js.map +1 -0
- package/dist/tools/citations.tools.d.ts +7 -0
- package/dist/tools/citations.tools.js +2 -0
- package/dist/tools/citations.tools.js.map +1 -0
- package/dist/tools/epo.tools.d.ts +7 -0
- package/dist/tools/epo.tools.js +18 -0
- package/dist/tools/epo.tools.js.map +1 -0
- package/dist/tools/index.d.ts +7 -0
- package/dist/tools/index.js +2 -0
- package/dist/tools/index.js.map +1 -0
- package/dist/tools/odp.tools.d.ts +7 -0
- package/dist/tools/odp.tools.js +2 -0
- package/dist/tools/odp.tools.js.map +1 -0
- package/dist/tools/office-actions.tools.d.ts +7 -0
- package/dist/tools/office-actions.tools.js +2 -0
- package/dist/tools/office-actions.tools.js.map +1 -0
- package/dist/tools/patentsview.tools.d.ts +7 -0
- package/dist/tools/patentsview.tools.js +2 -0
- package/dist/tools/patentsview.tools.js.map +1 -0
- package/dist/tools/ptab.tools.d.ts +7 -0
- package/dist/tools/ptab.tools.js +2 -0
- package/dist/tools/ptab.tools.js.map +1 -0
- package/dist/tools/utility.tools.d.ts +7 -0
- package/dist/tools/utility.tools.js +2 -0
- package/dist/tools/utility.tools.js.map +1 -0
- package/package.json +67 -0
|
@@ -0,0 +1,4432 @@
|
|
|
1
|
+
//#region src/generated/odp/types.gen.d.ts
|
|
2
|
+
type ClientOptions = {
|
|
3
|
+
baseUrl: "https://api.uspto.gov" | (string & {});
|
|
4
|
+
};
|
|
5
|
+
type PatentSearchRequest = {
|
|
6
|
+
/**
|
|
7
|
+
* Search by field value or pass opensearch string query syntax
|
|
8
|
+
*/
|
|
9
|
+
q?: string;
|
|
10
|
+
filters?: Array<Filter>;
|
|
11
|
+
rangeFilters?: Array<Range>;
|
|
12
|
+
sort?: Array<Sort2>;
|
|
13
|
+
fields?: Array<string>;
|
|
14
|
+
pagination?: Pagination;
|
|
15
|
+
facets?: Array<string>;
|
|
16
|
+
};
|
|
17
|
+
type PatentDownloadRequest = {
|
|
18
|
+
/**
|
|
19
|
+
* Search by field value or pass opensearch string query syntax
|
|
20
|
+
*/
|
|
21
|
+
q?: string;
|
|
22
|
+
filters?: Array<Filter>;
|
|
23
|
+
rangeFilters?: Array<Range>;
|
|
24
|
+
sort?: Array<Sort2>;
|
|
25
|
+
fields?: Array<string>;
|
|
26
|
+
pagination?: Pagination;
|
|
27
|
+
/**
|
|
28
|
+
* Download format. csv or json
|
|
29
|
+
*/
|
|
30
|
+
format?: "json" | "csv";
|
|
31
|
+
};
|
|
32
|
+
/**
|
|
33
|
+
* This json structure represents all data fields possible for a patent application. Not all fields mentioned here will be returned in API response, only fields that have data should present in the response.
|
|
34
|
+
*/
|
|
35
|
+
type PatentDataResponse = {
|
|
36
|
+
count?: number;
|
|
37
|
+
patentFileWrapperDataBag?: Array<{
|
|
38
|
+
/**
|
|
39
|
+
* Free format of application number
|
|
40
|
+
*/
|
|
41
|
+
applicationNumberText?: string;
|
|
42
|
+
applicationMetaData?: ApplicationMetaData;
|
|
43
|
+
/**
|
|
44
|
+
* Collection of correspondences
|
|
45
|
+
*/
|
|
46
|
+
correspondenceAddressBag?: Array<{
|
|
47
|
+
nameLineOneText?: string;
|
|
48
|
+
nameLineTwoText?: string;
|
|
49
|
+
addressLineOneText?: string;
|
|
50
|
+
addressLineTwoText?: string;
|
|
51
|
+
geographicRegionName?: string;
|
|
52
|
+
geographicRegionCode?: string;
|
|
53
|
+
postalCode?: string;
|
|
54
|
+
cityName?: string;
|
|
55
|
+
countryCode?: string;
|
|
56
|
+
countryName?: string;
|
|
57
|
+
postalAddressCategory?: string;
|
|
58
|
+
}>;
|
|
59
|
+
assignmentBag?: Array<Assignment>;
|
|
60
|
+
recordAttorney?: RecordAttorney;
|
|
61
|
+
foreignPriorityBag?: Array<ForeignPriority>;
|
|
62
|
+
parentContinuityBag?: Array<ParentContinuityData>;
|
|
63
|
+
childContinuityBag?: Array<ChildContinuityData>;
|
|
64
|
+
patentTermAdjustmentData?: PatentTermAdjustment;
|
|
65
|
+
eventDataBag?: Array<EventData>;
|
|
66
|
+
pgpubDocumentMetaData?: PgPubFileMetaData;
|
|
67
|
+
grantDocumentMetaData?: GrantFileMetaData;
|
|
68
|
+
lastIngestionDateTime?: string;
|
|
69
|
+
}>;
|
|
70
|
+
facets?: Array<{
|
|
71
|
+
applicationStatusCode?: Array<{
|
|
72
|
+
value?: string;
|
|
73
|
+
count?: number;
|
|
74
|
+
}>;
|
|
75
|
+
}>;
|
|
76
|
+
};
|
|
77
|
+
/**
|
|
78
|
+
* Represents patent application meta data properties
|
|
79
|
+
*/
|
|
80
|
+
type ApplicationMetaData = {
|
|
81
|
+
/**
|
|
82
|
+
* Indicates whether this application is a national application which entered the national stage from an international PCT application
|
|
83
|
+
*/
|
|
84
|
+
nationalStageIndicator?: boolean;
|
|
85
|
+
/**
|
|
86
|
+
* Indicates the applicant's entity status
|
|
87
|
+
*/
|
|
88
|
+
entityStatusData?: {
|
|
89
|
+
/**
|
|
90
|
+
* Indicates whether the applicant qualifies for small entity status
|
|
91
|
+
*/
|
|
92
|
+
smallEntityStatusIndicator?: boolean;
|
|
93
|
+
/**
|
|
94
|
+
* Status of business entity being established for the purpose of paying a fee such as a filing fee and a maintenance fee
|
|
95
|
+
*/
|
|
96
|
+
businessEntityStatusCategory?: string;
|
|
97
|
+
};
|
|
98
|
+
publicationDateBag?: Array<string>;
|
|
99
|
+
publicationSequenceNumberBag?: Array<string>;
|
|
100
|
+
publicationCategoryBag?: Array<string>;
|
|
101
|
+
docketNumber?: string;
|
|
102
|
+
firstInventorToFileIndicator?: string;
|
|
103
|
+
firstApplicantName?: string;
|
|
104
|
+
firstInventorName?: string;
|
|
105
|
+
applicationConfirmationNumber?: number;
|
|
106
|
+
applicationStatusDate?: string;
|
|
107
|
+
applicationStatusDescriptionText?: string;
|
|
108
|
+
/**
|
|
109
|
+
* The date assigned by the Patent Office that identifies when an application meets certain criteria to qualify as having been filed. Refers to ST.9 INID Code 22.
|
|
110
|
+
*/
|
|
111
|
+
filingDate?: string;
|
|
112
|
+
/**
|
|
113
|
+
* The date according to PTO criteria that the patent case qualified as having been 'filed'. The effective filing date is the same or later than the Filing Date. The filing date can be changed due to a subsequent action on an application patent case.
|
|
114
|
+
*/
|
|
115
|
+
effectiveFilingDate?: string;
|
|
116
|
+
grantDate?: string;
|
|
117
|
+
/**
|
|
118
|
+
* GAU Code
|
|
119
|
+
*/
|
|
120
|
+
groupArtUnitNumber?: string;
|
|
121
|
+
/**
|
|
122
|
+
* Code corresponding to Utility, Plant, Design, or Reissue
|
|
123
|
+
*/
|
|
124
|
+
applicationTypeCode?: string;
|
|
125
|
+
applicationTypeLabelName?: string;
|
|
126
|
+
applicationTypeCategory?: string;
|
|
127
|
+
inventionTitle?: string;
|
|
128
|
+
patentNumber?: string;
|
|
129
|
+
applicationStatusCode?: number;
|
|
130
|
+
/**
|
|
131
|
+
* Publication number corresponding to the earliest publication
|
|
132
|
+
*/
|
|
133
|
+
earliestPublicationNumber?: string;
|
|
134
|
+
earliestPublicationDate?: string;
|
|
135
|
+
/**
|
|
136
|
+
* The unique identifier assigned to the publication of an international patent application in the PCT Gazette by the International Bureau (IB) of the World Intellectual Property Organization (WIPO).
|
|
137
|
+
*/
|
|
138
|
+
pctPublicationNumber?: string;
|
|
139
|
+
pctPublicationDate?: string;
|
|
140
|
+
/**
|
|
141
|
+
* The date that the IPR is published by the International Bureau
|
|
142
|
+
*/
|
|
143
|
+
internationalRegistrationPublicationDate?: string;
|
|
144
|
+
/**
|
|
145
|
+
* The number assigned by the International Bureau to an international registration upon registering an industrial design, a trademark or other type of IPR in the International Register
|
|
146
|
+
*/
|
|
147
|
+
internationalRegistrationNumber?: string;
|
|
148
|
+
/**
|
|
149
|
+
* Name of patent examiner
|
|
150
|
+
*/
|
|
151
|
+
examinerNameText?: string;
|
|
152
|
+
/**
|
|
153
|
+
* The first hierarchical level in the USPC classification schedule
|
|
154
|
+
*/
|
|
155
|
+
class?: string;
|
|
156
|
+
/**
|
|
157
|
+
* The second highest hierarchical level in the USP C classification schedule
|
|
158
|
+
*/
|
|
159
|
+
subclass?: string;
|
|
160
|
+
/**
|
|
161
|
+
* The first hierarchical level in the USPC classification schedule/ The second highest hierarchical level in the USP C classification schedule
|
|
162
|
+
*/
|
|
163
|
+
uspcSymbolText?: string;
|
|
164
|
+
/**
|
|
165
|
+
* Correspondence address of the application inherited from the customer.
|
|
166
|
+
*/
|
|
167
|
+
customerNumber?: number;
|
|
168
|
+
/**
|
|
169
|
+
* Collection of Classifications for CPC
|
|
170
|
+
*/
|
|
171
|
+
cpcClassificationBag?: Array<string>;
|
|
172
|
+
applicantBag?: Array<{
|
|
173
|
+
applicantNameText?: string;
|
|
174
|
+
firstName?: string;
|
|
175
|
+
middleName?: string;
|
|
176
|
+
lastName?: string;
|
|
177
|
+
preferredName?: string;
|
|
178
|
+
namePrefix?: string;
|
|
179
|
+
nameSuffix?: string;
|
|
180
|
+
countryCode?: string;
|
|
181
|
+
correspondenceAddressBag?: Array<{
|
|
182
|
+
nameLineOneText?: string;
|
|
183
|
+
nameLineTwoText?: string;
|
|
184
|
+
geographicRegionName?: string;
|
|
185
|
+
geographicRegionCode?: string;
|
|
186
|
+
cityName?: string;
|
|
187
|
+
countryCode?: string;
|
|
188
|
+
countryName?: string;
|
|
189
|
+
postalAddressCategory?: string;
|
|
190
|
+
}>;
|
|
191
|
+
}>;
|
|
192
|
+
inventorBag?: Array<{
|
|
193
|
+
firstName?: string;
|
|
194
|
+
middleName?: string;
|
|
195
|
+
lastName?: string;
|
|
196
|
+
namePrefix?: string;
|
|
197
|
+
nameSuffix?: string;
|
|
198
|
+
preferredName?: string;
|
|
199
|
+
countryCode?: string;
|
|
200
|
+
inventorNameText?: string;
|
|
201
|
+
correspondenceAddressBag?: Array<{
|
|
202
|
+
nameLineOneText?: string;
|
|
203
|
+
nameLineTwoText?: string;
|
|
204
|
+
geographicRegionName?: string;
|
|
205
|
+
geographicRegionCode?: string;
|
|
206
|
+
cityName?: string;
|
|
207
|
+
countryCode?: string;
|
|
208
|
+
countryName?: string;
|
|
209
|
+
postalAddressCategory?: string;
|
|
210
|
+
}>;
|
|
211
|
+
}>;
|
|
212
|
+
};
|
|
213
|
+
/**
|
|
214
|
+
* Patent term adjustment data
|
|
215
|
+
*/
|
|
216
|
+
type PatentTermAdjustment = {
|
|
217
|
+
/**
|
|
218
|
+
* A delays quantity number of adjustments to the term of the patent based upon USPTO delays included in the PTA determination that is mailed as part of the ISSUE NOTIFICATION LETTER.
|
|
219
|
+
*/
|
|
220
|
+
aDelayQuantity?: number;
|
|
221
|
+
/**
|
|
222
|
+
* Patent term adjustment total quantity number that is a summation of NONOVERLAPPING USPTO DELAYS (+/- PTO MANUAL ADJUSTMENTS) - APPLICANT DELAYS.
|
|
223
|
+
*/
|
|
224
|
+
adjustmentTotalQuantity?: number;
|
|
225
|
+
/**
|
|
226
|
+
* Patent term adjustment applicant delays quantity number of the patent term due to the Applicant's failure to engage in reasonable efforts to conclude prosecution of the application for the cumulative period in excess of three
|
|
227
|
+
*/
|
|
228
|
+
applicantDayDelayQuantity?: number;
|
|
229
|
+
/**
|
|
230
|
+
* B delays quantity number of adjustments to the term of the patent based upon the patent failing to issue within three years of the actual filing date of the application at the time that the issue notification letter is generated and an issue date has been established.
|
|
231
|
+
*/
|
|
232
|
+
bDelayQuantity?: number;
|
|
233
|
+
/**
|
|
234
|
+
* C delays quantity number of adjustments to the term of the patent based upon USPTO delays caused by interference proceedings, secrecy orders, and successful appellate reviews.
|
|
235
|
+
*/
|
|
236
|
+
cDelayQuantity?: number;
|
|
237
|
+
/**
|
|
238
|
+
* Patent term adjustment non overlapping days quantity number of overall summation of the USPTO delays minus any overlapping days.
|
|
239
|
+
*/
|
|
240
|
+
nonOverlappingDayQuantity?: number;
|
|
241
|
+
/**
|
|
242
|
+
* Patent term adjustment overlapping days quantity number that reflects the calculation of overlapping delays consistent with the federal circuit's interpretation.
|
|
243
|
+
*/
|
|
244
|
+
overlappingDayQuantity?: number;
|
|
245
|
+
patentTermAdjustmentHistoryDataBag?: Array<{
|
|
246
|
+
/**
|
|
247
|
+
* The date that the symbol was assigned to the patent document
|
|
248
|
+
*/
|
|
249
|
+
eventDate?: string;
|
|
250
|
+
applicantDayDelayQuantity?: number;
|
|
251
|
+
eventDescriptionText?: string;
|
|
252
|
+
eventSequenceNumber?: number;
|
|
253
|
+
/**
|
|
254
|
+
* Number of days the UPSTO personnel adjusting the calculation to increase or decrease the patent term adjustment based upon a request for reconsideration of the patent term adjustment.
|
|
255
|
+
*/
|
|
256
|
+
ipOfficeDayDelayQuantity?: number;
|
|
257
|
+
originatingEventSequenceNumber?: number;
|
|
258
|
+
ptaPTECode?: string;
|
|
259
|
+
}>;
|
|
260
|
+
};
|
|
261
|
+
/**
|
|
262
|
+
* The collection of national assignments related to a patent
|
|
263
|
+
*/
|
|
264
|
+
type Assignment = {
|
|
265
|
+
/**
|
|
266
|
+
* 1-6 digit number identifies the reel number to be used to locate the assignment on microfilm.
|
|
267
|
+
*/
|
|
268
|
+
reelNumber?: number;
|
|
269
|
+
/**
|
|
270
|
+
* 1-4 digit number that identifies the frame number to be used to locate the first image(page) of the assignment on microfilm.
|
|
271
|
+
*/
|
|
272
|
+
frameNumber?: number;
|
|
273
|
+
reelAndFrameNumber?: string;
|
|
274
|
+
pageTotalQuantity?: number;
|
|
275
|
+
imageAvailableStatusCode?: boolean;
|
|
276
|
+
assignmentDocumentLocationURI?: string;
|
|
277
|
+
assignmentReceivedDate?: string;
|
|
278
|
+
assignmentRecordedDate?: string;
|
|
279
|
+
/**
|
|
280
|
+
* The date an assignment request was mailed to the office or received by the office
|
|
281
|
+
*/
|
|
282
|
+
assignmentMailedDate?: string;
|
|
283
|
+
/**
|
|
284
|
+
* A description of the nature of the interest conveyed or transaction to be recorded in an assignment. Examples of the types of descriptions `include:` assignment, security agreement, merger, change of name, license, foreclosure, lien,
|
|
285
|
+
*/
|
|
286
|
+
conveyanceText?: string;
|
|
287
|
+
assignorBag?: Array<{
|
|
288
|
+
assignorName?: string;
|
|
289
|
+
executionDate?: string;
|
|
290
|
+
}>;
|
|
291
|
+
assigneeBag?: Array<{
|
|
292
|
+
assigneeNameText?: string;
|
|
293
|
+
assigneeAddress?: {
|
|
294
|
+
addressLineOneText?: string;
|
|
295
|
+
addressLineTwoText?: string;
|
|
296
|
+
addressLineThreeText?: string;
|
|
297
|
+
addressLineFourText?: string;
|
|
298
|
+
cityName?: string;
|
|
299
|
+
geographicRegionName?: string;
|
|
300
|
+
geographicRegionCode?: string;
|
|
301
|
+
countryName?: string;
|
|
302
|
+
postalCode?: string;
|
|
303
|
+
countryOrStateCode?: string;
|
|
304
|
+
ictStateCode?: string;
|
|
305
|
+
ictCountryCode?: string;
|
|
306
|
+
};
|
|
307
|
+
}>;
|
|
308
|
+
correspondenceAddress?: {
|
|
309
|
+
[key: string]: unknown;
|
|
310
|
+
};
|
|
311
|
+
/**
|
|
312
|
+
* US representative for foreign entity
|
|
313
|
+
*/
|
|
314
|
+
domesticRepresentative?: {
|
|
315
|
+
name?: string;
|
|
316
|
+
addressLineOneText?: string;
|
|
317
|
+
addressLineTwoText?: string;
|
|
318
|
+
addressLineThreeText?: string;
|
|
319
|
+
addressLineFourText?: string;
|
|
320
|
+
cityName?: string;
|
|
321
|
+
postalCode?: string;
|
|
322
|
+
geographicRegionName?: string;
|
|
323
|
+
countryName?: string;
|
|
324
|
+
emailAddress?: string;
|
|
325
|
+
lastIngestionDateTime?: string;
|
|
326
|
+
};
|
|
327
|
+
};
|
|
328
|
+
/**
|
|
329
|
+
* An attorney selected by the applicant or owner of an intellectual property to represent them before the national office.
|
|
330
|
+
*/
|
|
331
|
+
type RecordAttorney = {
|
|
332
|
+
/**
|
|
333
|
+
* Correspondence address of the application inherited from the customer.
|
|
334
|
+
*/
|
|
335
|
+
customerNumberCorrespondenceData?: {
|
|
336
|
+
patronIdentifier?: number;
|
|
337
|
+
organizationStandardName?: string;
|
|
338
|
+
powerOfAttorneyAddressBag?: Array<{
|
|
339
|
+
nameLineOneText?: string;
|
|
340
|
+
addressLineOneText?: string;
|
|
341
|
+
addressLineTwoText?: string;
|
|
342
|
+
geographicRegionName?: string;
|
|
343
|
+
geographicRegionCode?: string;
|
|
344
|
+
postalCode?: string;
|
|
345
|
+
cityName?: string;
|
|
346
|
+
countryCode?: string;
|
|
347
|
+
countryName?: string;
|
|
348
|
+
}>;
|
|
349
|
+
telecommunicationAddressBag?: Array<{
|
|
350
|
+
telecommunicationNumber?: string;
|
|
351
|
+
extensionNumber?: string;
|
|
352
|
+
telecomTypeCode?: string;
|
|
353
|
+
}>;
|
|
354
|
+
};
|
|
355
|
+
powerOfAttorneyBag?: Array<{
|
|
356
|
+
firstName?: string;
|
|
357
|
+
middleName?: string;
|
|
358
|
+
lastName?: string;
|
|
359
|
+
namePrefix?: string;
|
|
360
|
+
nameSuffix?: string;
|
|
361
|
+
preferredName?: string;
|
|
362
|
+
countryCode?: string;
|
|
363
|
+
registrationNumber?: string;
|
|
364
|
+
activeIndicator?: string;
|
|
365
|
+
registeredPractitionerCategory?: string;
|
|
366
|
+
attorneyAddressBag?: Array<{
|
|
367
|
+
nameLineOneText?: string;
|
|
368
|
+
nameLineTwoText?: string;
|
|
369
|
+
addressLineOneText?: string;
|
|
370
|
+
addressLineTwoText?: string;
|
|
371
|
+
geographicRegionName?: string;
|
|
372
|
+
geographicRegionCode?: string;
|
|
373
|
+
postalCode?: string;
|
|
374
|
+
cityName?: string;
|
|
375
|
+
countryCode?: string;
|
|
376
|
+
countryName?: string;
|
|
377
|
+
}>;
|
|
378
|
+
telecommunicationAddressBag?: Array<{
|
|
379
|
+
telecommunicationNumber?: string;
|
|
380
|
+
extensionNumber?: string;
|
|
381
|
+
telecomTypeCode?: string;
|
|
382
|
+
}>;
|
|
383
|
+
}>;
|
|
384
|
+
attorneyBag?: Array<{
|
|
385
|
+
firstName?: string;
|
|
386
|
+
middleName?: string;
|
|
387
|
+
lastName?: string;
|
|
388
|
+
namePrefix?: string;
|
|
389
|
+
nameSuffix?: string;
|
|
390
|
+
registrationNumber?: string;
|
|
391
|
+
activeIndicator?: string;
|
|
392
|
+
registeredPractitionerCategory?: string;
|
|
393
|
+
attorneyAddressBag?: Array<{
|
|
394
|
+
nameLineOneText?: string;
|
|
395
|
+
nameLineTwoText?: string;
|
|
396
|
+
addressLineOneText?: string;
|
|
397
|
+
addressLineTwoText?: string;
|
|
398
|
+
geographicRegionName?: string;
|
|
399
|
+
geographicRegionCode?: string;
|
|
400
|
+
postalCode?: string;
|
|
401
|
+
cityName?: string;
|
|
402
|
+
countryCode?: string;
|
|
403
|
+
countryName?: string;
|
|
404
|
+
}>;
|
|
405
|
+
telecommunicationAddressBag?: Array<{
|
|
406
|
+
telecommunicationNumber?: string;
|
|
407
|
+
extensionNumber?: string;
|
|
408
|
+
telecomTypeCode?: string;
|
|
409
|
+
}>;
|
|
410
|
+
}>;
|
|
411
|
+
};
|
|
412
|
+
type ParentContinuityData = {
|
|
413
|
+
/**
|
|
414
|
+
* Indicates first inventor to file.
|
|
415
|
+
*/
|
|
416
|
+
firstInventorToFileIndicator?: boolean;
|
|
417
|
+
parentApplicationStatusCode?: number;
|
|
418
|
+
parentPatentNumber?: string;
|
|
419
|
+
parentApplicationStatusDescriptionText?: string;
|
|
420
|
+
parentApplicationFilingDate?: string;
|
|
421
|
+
parentApplicationNumberText?: string;
|
|
422
|
+
childApplicationNumberText?: string;
|
|
423
|
+
claimParentageTypeCode?: string;
|
|
424
|
+
claimParentageTypeCodeDescriptionText?: string;
|
|
425
|
+
};
|
|
426
|
+
type ChildContinuityData = {
|
|
427
|
+
childApplicationStatusCode?: number;
|
|
428
|
+
parentApplicationNumberText?: string;
|
|
429
|
+
/**
|
|
430
|
+
* Application number of the child application, which is the unique value assigned by the USPTO to a patent application upon receipt
|
|
431
|
+
*/
|
|
432
|
+
childApplicationNumberText?: string;
|
|
433
|
+
childApplicationStatusDescriptionText?: string;
|
|
434
|
+
childApplicationFilingDate?: string;
|
|
435
|
+
firstInventorToFileIndicator?: boolean;
|
|
436
|
+
childPatentNumber?: string;
|
|
437
|
+
claimParentageTypeCode?: string;
|
|
438
|
+
claimParentageTypeCodeDescriptionText?: string;
|
|
439
|
+
};
|
|
440
|
+
type ForeignPriority = {
|
|
441
|
+
ipOfficeName?: string;
|
|
442
|
+
filingDate?: string;
|
|
443
|
+
applicationNumberText?: string;
|
|
444
|
+
};
|
|
445
|
+
/**
|
|
446
|
+
* The date the patent case action was recorded.
|
|
447
|
+
*/
|
|
448
|
+
type EventData = {
|
|
449
|
+
eventCode?: string;
|
|
450
|
+
eventDescriptionText?: string;
|
|
451
|
+
/**
|
|
452
|
+
* The date the patent case action was recorded.
|
|
453
|
+
*/
|
|
454
|
+
eventDate?: string;
|
|
455
|
+
};
|
|
456
|
+
type DocumentBag = {
|
|
457
|
+
documentBag?: Array<{
|
|
458
|
+
applicationNumberText?: string;
|
|
459
|
+
officialDate?: string;
|
|
460
|
+
documentIdentifier?: string;
|
|
461
|
+
documentCode?: string;
|
|
462
|
+
documentCodeDescriptionText?: string;
|
|
463
|
+
documentDirectionCategory?: string;
|
|
464
|
+
downloadOptionBag?: Array<{
|
|
465
|
+
mimeTypeIdentifier?: string;
|
|
466
|
+
downloadUrl?: string;
|
|
467
|
+
pageTotalQuantity?: number;
|
|
468
|
+
}>;
|
|
469
|
+
}>;
|
|
470
|
+
};
|
|
471
|
+
/**
|
|
472
|
+
* Contains pgpub zip and xml file meta data for an application
|
|
473
|
+
*/
|
|
474
|
+
type PgPubFileMetaData = {
|
|
475
|
+
zipFileName?: string;
|
|
476
|
+
productIdentifier?: string;
|
|
477
|
+
fileLocationURI?: string;
|
|
478
|
+
fileCreateDateTime?: string;
|
|
479
|
+
xmlFileName?: string;
|
|
480
|
+
};
|
|
481
|
+
/**
|
|
482
|
+
* Contains patent grant zip and xml file meta data for an application
|
|
483
|
+
*/
|
|
484
|
+
type GrantFileMetaData = {
|
|
485
|
+
zipFileName?: string;
|
|
486
|
+
productIdentifier?: string;
|
|
487
|
+
fileLocationURI?: string;
|
|
488
|
+
fileCreateDateTime?: string;
|
|
489
|
+
xmlFileName?: string;
|
|
490
|
+
};
|
|
491
|
+
/**
|
|
492
|
+
* This json structure represents data fields for status codes search API
|
|
493
|
+
*/
|
|
494
|
+
type StatusCodeSearchResponse = {
|
|
495
|
+
count?: number;
|
|
496
|
+
statusCodeBag?: Array<{
|
|
497
|
+
/**
|
|
498
|
+
* Application status code
|
|
499
|
+
*/
|
|
500
|
+
applicationStatusCode?: number;
|
|
501
|
+
/**
|
|
502
|
+
* Application status code description
|
|
503
|
+
*/
|
|
504
|
+
applicationStatusDescriptionText?: string;
|
|
505
|
+
}>;
|
|
506
|
+
requestIdentifier?: string;
|
|
507
|
+
};
|
|
508
|
+
type BdssResponseProductBag = {
|
|
509
|
+
count?: number;
|
|
510
|
+
bulkDataProductBag?: Array<BulkDataProductBag>;
|
|
511
|
+
};
|
|
512
|
+
type PetitionDecisionResponseBag = {
|
|
513
|
+
count?: number;
|
|
514
|
+
petitionDecisionDataBag?: Array<PetitionDecision>;
|
|
515
|
+
facets?: Array<PetitionDecisionFacet>;
|
|
516
|
+
};
|
|
517
|
+
type PetitionDecisionIdentifierResponseBag = {
|
|
518
|
+
count?: number;
|
|
519
|
+
petitionDecisionDataBag?: Array<PetitionDecisionAndDocuments>;
|
|
520
|
+
};
|
|
521
|
+
type ProceedingDataResponse = {
|
|
522
|
+
count?: number;
|
|
523
|
+
requestIdentifier?: string;
|
|
524
|
+
patentTrialProceedingDataBag?: Array<PatentTrialProceedingDataBag2>;
|
|
525
|
+
};
|
|
526
|
+
type PatentTrialProceedingDataBag = PatentTrialProceedingDataBag2;
|
|
527
|
+
type DocumentDataResponse = {
|
|
528
|
+
count?: number;
|
|
529
|
+
patentTrialDocumentDataBag?: Array<PatentTrialDocumentDataBag2>;
|
|
530
|
+
facets?: Array<Facet>;
|
|
531
|
+
};
|
|
532
|
+
type PatentTrialDocumentDataBag = PatentTrialDocumentDataBag2;
|
|
533
|
+
/**
|
|
534
|
+
* Identical structure, just decisions-only data.
|
|
535
|
+
*/
|
|
536
|
+
type DecisionDataResponse = DocumentDataResponse;
|
|
537
|
+
type PatentTrialDecisionDataBag = PatentTrialDecisionDataBag2;
|
|
538
|
+
type InterferenceDecisionDataResponse = {
|
|
539
|
+
count: number;
|
|
540
|
+
requestIdentifier: string;
|
|
541
|
+
patentInterferenceDataBag: Array<InterferenceDecisionRecord>;
|
|
542
|
+
};
|
|
543
|
+
type AppealDecisionDataResponse = {
|
|
544
|
+
count?: number;
|
|
545
|
+
patentAppealDataBag?: Array<PatentAppealDataBag2>;
|
|
546
|
+
};
|
|
547
|
+
type PatentAppealDataBag = PatentAppealDataBag2;
|
|
548
|
+
type Q = ParamQ;
|
|
549
|
+
type Sort = ParamSort;
|
|
550
|
+
type Offset = ParamOffset;
|
|
551
|
+
type Limit = ParamLimit;
|
|
552
|
+
type Facets = ParamFacets;
|
|
553
|
+
type Fields = ParamFields;
|
|
554
|
+
type Filters = ParamFilters;
|
|
555
|
+
type RangeFilters = ParamRangeFilters;
|
|
556
|
+
type Format = ParamFormat;
|
|
557
|
+
type BadRequestSchema = {
|
|
558
|
+
code?: unknown;
|
|
559
|
+
error?: unknown;
|
|
560
|
+
errorDetails?: unknown;
|
|
561
|
+
requestIdentifier?: unknown;
|
|
562
|
+
};
|
|
563
|
+
type ForbiddenSchema = {
|
|
564
|
+
code?: string;
|
|
565
|
+
error?: string;
|
|
566
|
+
};
|
|
567
|
+
type NotFoundSchema = {
|
|
568
|
+
code?: string;
|
|
569
|
+
error?: string;
|
|
570
|
+
errorDetails?: string;
|
|
571
|
+
requestIdentifier?: string;
|
|
572
|
+
};
|
|
573
|
+
type Status413 = {
|
|
574
|
+
code?: string;
|
|
575
|
+
message?: string;
|
|
576
|
+
detailedMessage?: string;
|
|
577
|
+
requestIdentifier?: string;
|
|
578
|
+
};
|
|
579
|
+
type InternalErrorSchema = {
|
|
580
|
+
code?: string;
|
|
581
|
+
error?: string;
|
|
582
|
+
errorDetails?: string;
|
|
583
|
+
requestIdentifier?: string;
|
|
584
|
+
};
|
|
585
|
+
/**
|
|
586
|
+
* A single PTAB trial proceeding record.
|
|
587
|
+
*/
|
|
588
|
+
type PatentTrialProceedingDataBag2 = {
|
|
589
|
+
trialNumber?: string;
|
|
590
|
+
lastModifiedDateTime?: string;
|
|
591
|
+
trialMetaData?: TrialMetaData;
|
|
592
|
+
patentOwnerData?: PatentOwnerData;
|
|
593
|
+
regularPetitionerData?: RegularPetitionerData;
|
|
594
|
+
respondentData?: RespondentData;
|
|
595
|
+
derivationPetitionerData?: DerivationPetitionerData;
|
|
596
|
+
};
|
|
597
|
+
type StatusCodeSearchRequest = {
|
|
598
|
+
/**
|
|
599
|
+
* Search by field value or pass opensearch string query syntax
|
|
600
|
+
*/
|
|
601
|
+
q?: string;
|
|
602
|
+
pagination?: Pagination;
|
|
603
|
+
};
|
|
604
|
+
/**
|
|
605
|
+
* Add filters to your search request by providing filter name and filter value where name in filter request some field in data set.
|
|
606
|
+
*/
|
|
607
|
+
type Filter = {
|
|
608
|
+
name?: string;
|
|
609
|
+
value?: Array<string>;
|
|
610
|
+
};
|
|
611
|
+
/**
|
|
612
|
+
* Range filter. Provide field from dataset and valueFrom and valueTo. If range filter is for date field, date must be in “yyyy-MM-dd” format
|
|
613
|
+
*/
|
|
614
|
+
type Range = {
|
|
615
|
+
field?: string;
|
|
616
|
+
valueFrom?: string;
|
|
617
|
+
valueTo?: string;
|
|
618
|
+
};
|
|
619
|
+
/**
|
|
620
|
+
* Sort you search result by providing field to be sorted and sort order
|
|
621
|
+
*/
|
|
622
|
+
type Sort2 = {
|
|
623
|
+
field?: string;
|
|
624
|
+
/**
|
|
625
|
+
* Sort order. e.g. Asc, ASC, Desc, desc, DESC
|
|
626
|
+
*/
|
|
627
|
+
order?: "Asc" | "asc" | "Desc" | "desc";
|
|
628
|
+
};
|
|
629
|
+
/**
|
|
630
|
+
* Pagination information.
|
|
631
|
+
*/
|
|
632
|
+
type Pagination = {
|
|
633
|
+
/**
|
|
634
|
+
* Start
|
|
635
|
+
*/
|
|
636
|
+
offset?: number;
|
|
637
|
+
/**
|
|
638
|
+
* Maximum number of patent records to be returned in response
|
|
639
|
+
*/
|
|
640
|
+
limit?: number;
|
|
641
|
+
};
|
|
642
|
+
/**
|
|
643
|
+
* Facet Description
|
|
644
|
+
*/
|
|
645
|
+
type Facet = {
|
|
646
|
+
value?: string;
|
|
647
|
+
count?: number;
|
|
648
|
+
};
|
|
649
|
+
/**
|
|
650
|
+
* Object representing the error response
|
|
651
|
+
*/
|
|
652
|
+
type Error = {
|
|
653
|
+
code?: 400 | 403 | 404 | 413 | 500;
|
|
654
|
+
description?: "Bad Request" | "Unauthorized" | "Not Found" | "Payload Too Large" | "Internal Server Error";
|
|
655
|
+
detailedError?: string;
|
|
656
|
+
requestIdentifier?: string;
|
|
657
|
+
};
|
|
658
|
+
type BulkDataProductBag = {
|
|
659
|
+
productIdentifier?: string;
|
|
660
|
+
productDescriptionText?: string;
|
|
661
|
+
productTitleText?: string;
|
|
662
|
+
productFrequencyText?: string;
|
|
663
|
+
daysOfWeekText?: string;
|
|
664
|
+
productLabelArrayText?: Array<string>;
|
|
665
|
+
productDataSetArrayText?: Array<string>;
|
|
666
|
+
productDataSetCategoryArrayText?: Array<string>;
|
|
667
|
+
productFromDate?: string;
|
|
668
|
+
productToDate?: string;
|
|
669
|
+
productTotalFileSize?: number;
|
|
670
|
+
productFileTotalQuantity?: number;
|
|
671
|
+
lastModifiedDateTime?: string;
|
|
672
|
+
mimeTypeIdentifierArrayText?: Array<string>;
|
|
673
|
+
productFileBag?: ProductFileBag;
|
|
674
|
+
};
|
|
675
|
+
type ProductFileBag = {
|
|
676
|
+
count?: number;
|
|
677
|
+
fileDataBag?: Array<{
|
|
678
|
+
fileName?: string;
|
|
679
|
+
fileSize?: number;
|
|
680
|
+
fileDataFromDate?: string;
|
|
681
|
+
fileDataToDate?: string;
|
|
682
|
+
fileTypeText?: string;
|
|
683
|
+
fileDownloadURI?: string;
|
|
684
|
+
fileReleaseDate?: string;
|
|
685
|
+
fileDate?: string;
|
|
686
|
+
fileLastModifiedDateTime?: string;
|
|
687
|
+
}>;
|
|
688
|
+
};
|
|
689
|
+
type BdssResponseBag = {
|
|
690
|
+
count?: number;
|
|
691
|
+
bulkDataProductBag?: Array<BulkDataProductBag>;
|
|
692
|
+
facets?: Facets2;
|
|
693
|
+
};
|
|
694
|
+
type Facets2 = {
|
|
695
|
+
productLabelArrayText?: Array<{
|
|
696
|
+
value?: string;
|
|
697
|
+
count?: number;
|
|
698
|
+
}>;
|
|
699
|
+
productDataSetArrayText?: Array<{
|
|
700
|
+
value?: string;
|
|
701
|
+
count?: number;
|
|
702
|
+
}>;
|
|
703
|
+
productCategoryArrayText?: Array<{
|
|
704
|
+
value?: string;
|
|
705
|
+
count?: number;
|
|
706
|
+
}>;
|
|
707
|
+
mimeTypeIdentifierArrayText?: Array<{
|
|
708
|
+
value?: string;
|
|
709
|
+
count?: number;
|
|
710
|
+
}>;
|
|
711
|
+
productFrequencyArrayText?: Array<{
|
|
712
|
+
value?: string;
|
|
713
|
+
count?: number;
|
|
714
|
+
}>;
|
|
715
|
+
};
|
|
716
|
+
/**
|
|
717
|
+
* Add filters to your search request by providing filter name and filter value where name in filter request some field in data set.
|
|
718
|
+
*/
|
|
719
|
+
type PetitionDecisionFilter = {
|
|
720
|
+
name?: string;
|
|
721
|
+
value?: Array<string>;
|
|
722
|
+
};
|
|
723
|
+
/**
|
|
724
|
+
* Range filter. Provide field from dataset and valueFrom and valueTo. If range filter is for date field, date must be in “yyyy-MM-dd” format
|
|
725
|
+
*/
|
|
726
|
+
type PetitionDecisionRange = {
|
|
727
|
+
field?: string;
|
|
728
|
+
valueFrom?: string;
|
|
729
|
+
valueTo?: string;
|
|
730
|
+
};
|
|
731
|
+
/**
|
|
732
|
+
* Sort you search result by providing field to be sorted and sort order
|
|
733
|
+
*/
|
|
734
|
+
type PetitionDecisionSort = {
|
|
735
|
+
field?: string;
|
|
736
|
+
/**
|
|
737
|
+
* Sort order. e.g. Asc, ASC, Desc, desc, DESC
|
|
738
|
+
*/
|
|
739
|
+
order?: "Asc" | "asc" | "Desc" | "desc";
|
|
740
|
+
};
|
|
741
|
+
type Response400 = {
|
|
742
|
+
code?: unknown;
|
|
743
|
+
error?: unknown;
|
|
744
|
+
errorDetails?: unknown;
|
|
745
|
+
requestIdentifier?: unknown;
|
|
746
|
+
};
|
|
747
|
+
type Response403 = {
|
|
748
|
+
code?: unknown;
|
|
749
|
+
error?: unknown;
|
|
750
|
+
};
|
|
751
|
+
type Response404 = {
|
|
752
|
+
code?: unknown;
|
|
753
|
+
error?: unknown;
|
|
754
|
+
errorDetails?: unknown;
|
|
755
|
+
requestIdentifier?: unknown;
|
|
756
|
+
};
|
|
757
|
+
type Response500 = {
|
|
758
|
+
code?: unknown;
|
|
759
|
+
error?: unknown;
|
|
760
|
+
errorDetails?: unknown;
|
|
761
|
+
requestIdentifier?: unknown;
|
|
762
|
+
};
|
|
763
|
+
type PetitionDecisionSearchRequest = {
|
|
764
|
+
/**
|
|
765
|
+
* Search by field value or pass opensearch string query syntax
|
|
766
|
+
*/
|
|
767
|
+
q?: string;
|
|
768
|
+
filters?: Array<PetitionDecisionFilter>;
|
|
769
|
+
rangeFilters?: Array<PetitionDecisionRange>;
|
|
770
|
+
sort?: Array<PetitionDecisionSort>;
|
|
771
|
+
fields?: Array<string>;
|
|
772
|
+
pagination?: Pagination;
|
|
773
|
+
facets?: Array<string>;
|
|
774
|
+
};
|
|
775
|
+
type PetitionDecisionDownloadRequest = {
|
|
776
|
+
/**
|
|
777
|
+
* Search by field value or pass opensearch string query syntax
|
|
778
|
+
*/
|
|
779
|
+
q?: string;
|
|
780
|
+
filters?: Array<PetitionDecisionFilter>;
|
|
781
|
+
rangeFilters?: Array<PetitionDecisionRange>;
|
|
782
|
+
sort?: Array<PetitionDecisionSort>;
|
|
783
|
+
fields?: Array<string>;
|
|
784
|
+
pagination?: Pagination;
|
|
785
|
+
/**
|
|
786
|
+
* Download format. pdf,xml or docs
|
|
787
|
+
*/
|
|
788
|
+
format?: "json" | "csv";
|
|
789
|
+
};
|
|
790
|
+
type PetitionDecision = {
|
|
791
|
+
petitionDecisionRecordIdentifier?: string;
|
|
792
|
+
applicationNumberText?: string;
|
|
793
|
+
businessEntityStatusCategory?: string;
|
|
794
|
+
customerNumber?: number;
|
|
795
|
+
decisionDate?: string;
|
|
796
|
+
decisionPetitionTypeCode?: number;
|
|
797
|
+
decisionTypeCode?: string;
|
|
798
|
+
decisionPetitionTypeCodeDescriptionText?: string;
|
|
799
|
+
finalDecidingOfficeName?: string;
|
|
800
|
+
firstApplicantName?: string;
|
|
801
|
+
firstInventorToFileIndicator?: boolean;
|
|
802
|
+
groupArtUnitNumber?: string;
|
|
803
|
+
technologyCenter?: string;
|
|
804
|
+
inventionTitle?: string;
|
|
805
|
+
inventorBag?: Array<string>;
|
|
806
|
+
actionTakenByCourtName?: string;
|
|
807
|
+
courtActionIndicator?: boolean;
|
|
808
|
+
lastIngestionDateTime?: string;
|
|
809
|
+
patentNumber?: string;
|
|
810
|
+
petitionIssueConsideredTextBag?: Array<string>;
|
|
811
|
+
petitionMailDate?: string;
|
|
812
|
+
prosecutionStatusCodeDescriptionText?: string;
|
|
813
|
+
ruleBag?: Array<string>;
|
|
814
|
+
statuteBag?: Array<string>;
|
|
815
|
+
};
|
|
816
|
+
type PetitionDecisionAndDocuments = PetitionDecision & {
|
|
817
|
+
documentBag?: Array<PetitionDecisionDocument>;
|
|
818
|
+
};
|
|
819
|
+
type PetitionDecisionFacetEntity = {
|
|
820
|
+
value?: string;
|
|
821
|
+
count?: number;
|
|
822
|
+
};
|
|
823
|
+
type PetitionDecisionFacet = {
|
|
824
|
+
technologyCenter?: Array<PetitionDecisionFacetEntity>;
|
|
825
|
+
finalDecidingOfficeName?: Array<PetitionDecisionFacetEntity>;
|
|
826
|
+
firstInventorToFileIndicator?: Array<PetitionDecisionFacetEntity>;
|
|
827
|
+
decisionPetitionTypeCode?: Array<PetitionDecisionFacetEntity>;
|
|
828
|
+
decisionTypeCodeDescriptionText?: Array<PetitionDecisionFacetEntity>;
|
|
829
|
+
prosecutionStatusCodeDescriptionText?: Array<PetitionDecisionFacetEntity>;
|
|
830
|
+
petitionIssueConsideredTextBag?: Array<PetitionDecisionFacetEntity>;
|
|
831
|
+
statuteBag?: Array<PetitionDecisionFacetEntity>;
|
|
832
|
+
ruleBag?: Array<PetitionDecisionFacetEntity>;
|
|
833
|
+
actionTakenByCourtName?: Array<PetitionDecisionFacetEntity>;
|
|
834
|
+
courtActionIndicator?: Array<PetitionDecisionFacetEntity>;
|
|
835
|
+
businessEntityStatusCategory?: Array<PetitionDecisionFacetEntity>;
|
|
836
|
+
};
|
|
837
|
+
type PetitionDecisionDocument = {
|
|
838
|
+
applicationNumberText?: string;
|
|
839
|
+
officialDate?: string;
|
|
840
|
+
documentIdentifier?: string;
|
|
841
|
+
documentCode?: string;
|
|
842
|
+
documentCodeDescriptionText?: string;
|
|
843
|
+
documentDirectionCategory?: string;
|
|
844
|
+
downloadOptionBag?: Array<{
|
|
845
|
+
mimeTypeIdentifier?: string;
|
|
846
|
+
documentURI?: string;
|
|
847
|
+
pageTotalQuantity?: number;
|
|
848
|
+
}>;
|
|
849
|
+
};
|
|
850
|
+
/**
|
|
851
|
+
* Boolean/wildcard search query string.
|
|
852
|
+
*/
|
|
853
|
+
type ParamQ = string;
|
|
854
|
+
/**
|
|
855
|
+
* Field followed by sort order, e.g. 'fieldName desc'.
|
|
856
|
+
*/
|
|
857
|
+
type ParamSort = string;
|
|
858
|
+
type ParamOffset = number;
|
|
859
|
+
type ParamLimit = number;
|
|
860
|
+
/**
|
|
861
|
+
* Comma-separated facet fields.
|
|
862
|
+
*/
|
|
863
|
+
type ParamFacets = string;
|
|
864
|
+
/**
|
|
865
|
+
* Comma-separated field list to include in the response.
|
|
866
|
+
*/
|
|
867
|
+
type ParamFields = string;
|
|
868
|
+
/**
|
|
869
|
+
* Whitespace-separated filters.
|
|
870
|
+
*/
|
|
871
|
+
type ParamFilters = string;
|
|
872
|
+
/**
|
|
873
|
+
* Range filter: 'field YYYY-MM-DD:YYYY-MM-DD'.
|
|
874
|
+
*/
|
|
875
|
+
type ParamRangeFilters = string;
|
|
876
|
+
type ParamFormat = "json" | "csv";
|
|
877
|
+
type PatentAppealDataBag2 = {
|
|
878
|
+
appealNumber?: string;
|
|
879
|
+
lastModifiedDateTime?: string;
|
|
880
|
+
appealDocumentCategory?: string;
|
|
881
|
+
appealMetaData?: {
|
|
882
|
+
docketNoticeMailedDate?: string;
|
|
883
|
+
appealFilingDate?: string;
|
|
884
|
+
appealLastModifiedDate?: string;
|
|
885
|
+
appealLastModifiedDateTime?: string;
|
|
886
|
+
applicationTypeCategory?: string;
|
|
887
|
+
fileDownloadURI?: string;
|
|
888
|
+
};
|
|
889
|
+
appelantData?: {
|
|
890
|
+
applicationNumberText?: string;
|
|
891
|
+
counselName?: string;
|
|
892
|
+
groupArtUnitNumber?: string;
|
|
893
|
+
inventorName?: string;
|
|
894
|
+
realPartyName?: string;
|
|
895
|
+
patentNumber?: string;
|
|
896
|
+
patentOwnerName?: string;
|
|
897
|
+
publicationDate?: string;
|
|
898
|
+
publicationNumber?: string;
|
|
899
|
+
techCenterNumber?: string;
|
|
900
|
+
};
|
|
901
|
+
requestorData?: {
|
|
902
|
+
thirdPartyName?: string;
|
|
903
|
+
};
|
|
904
|
+
documentData?: {
|
|
905
|
+
documentFilingDate?: string;
|
|
906
|
+
documentIdentifier?: string;
|
|
907
|
+
documentName?: string;
|
|
908
|
+
documentSizeQuantity?: number;
|
|
909
|
+
documentOCRText?: string;
|
|
910
|
+
documentTypeCategory?: string;
|
|
911
|
+
downloadURI?: string;
|
|
912
|
+
};
|
|
913
|
+
};
|
|
914
|
+
type SearchRequest = PatentSearchRequest;
|
|
915
|
+
type DownloadRequest = PatentDownloadRequest;
|
|
916
|
+
type LookupRequest = {
|
|
917
|
+
trialNumber: string;
|
|
918
|
+
};
|
|
919
|
+
type TrialMetaData = {
|
|
920
|
+
accordedFilingDate?: string;
|
|
921
|
+
institutionDecisionDate?: string;
|
|
922
|
+
latestDecisionDate?: string;
|
|
923
|
+
petitionFilingDate?: string;
|
|
924
|
+
terminationDate?: string;
|
|
925
|
+
trialLastModifiedDateTime?: string;
|
|
926
|
+
trialLastModifiedDate?: string;
|
|
927
|
+
trialStatusCategory?: string;
|
|
928
|
+
trialTypeCode?: string;
|
|
929
|
+
};
|
|
930
|
+
type PatentOwnerData = {
|
|
931
|
+
applicationNumberText?: string;
|
|
932
|
+
counselName?: string;
|
|
933
|
+
grantDate?: string;
|
|
934
|
+
groupArtUnitNumber?: string;
|
|
935
|
+
inventorName?: string;
|
|
936
|
+
realPartyInInterestName?: string;
|
|
937
|
+
patentNumber?: string;
|
|
938
|
+
patentOwnerName?: string;
|
|
939
|
+
technologyCenterNumber?: string;
|
|
940
|
+
};
|
|
941
|
+
type RegularPetitionerData = {
|
|
942
|
+
counselName?: string;
|
|
943
|
+
realPartyInInterestName?: string;
|
|
944
|
+
};
|
|
945
|
+
type RespondentData = {
|
|
946
|
+
applicationNumberText?: string;
|
|
947
|
+
counselName?: string;
|
|
948
|
+
grantDate?: string;
|
|
949
|
+
groupArtUnitNumber?: string;
|
|
950
|
+
inventorName?: string;
|
|
951
|
+
realPartyInInterestName?: string;
|
|
952
|
+
patentNumber?: string;
|
|
953
|
+
patentOwnerName?: string;
|
|
954
|
+
technologyCenterNumber?: string;
|
|
955
|
+
};
|
|
956
|
+
type DerivationPetitionerData = {
|
|
957
|
+
applicationNumberText?: string;
|
|
958
|
+
counselName?: string;
|
|
959
|
+
grantDate?: string;
|
|
960
|
+
groupArtUnitNumber?: string;
|
|
961
|
+
inventorName?: string;
|
|
962
|
+
realPartyInInterestName?: string;
|
|
963
|
+
patentNumber?: string;
|
|
964
|
+
technologyCenterNumber?: string;
|
|
965
|
+
patentOwnerName?: string;
|
|
966
|
+
};
|
|
967
|
+
type DocumentData = {
|
|
968
|
+
documentCategory?: string;
|
|
969
|
+
documentFilingDate?: string;
|
|
970
|
+
documentIdentifier?: string;
|
|
971
|
+
documentName?: string;
|
|
972
|
+
documentNumber?: number;
|
|
973
|
+
documentSizeQuantity?: number;
|
|
974
|
+
documentOCRText?: string;
|
|
975
|
+
documentTitleText?: string;
|
|
976
|
+
documentTypeDescriptionText?: string;
|
|
977
|
+
downloadURI?: string;
|
|
978
|
+
filingPartyCategory?: string;
|
|
979
|
+
mimeTypeIdentifier?: string;
|
|
980
|
+
documentStatus?: string;
|
|
981
|
+
};
|
|
982
|
+
type DecisionData = {
|
|
983
|
+
statuteAndRuleBag?: Array<string>;
|
|
984
|
+
decisionIssueDate?: string;
|
|
985
|
+
decisionTypeCategory?: string;
|
|
986
|
+
issueTypeBag?: Array<string>;
|
|
987
|
+
trialOutcomeCategory?: string;
|
|
988
|
+
};
|
|
989
|
+
type FacetItem = {
|
|
990
|
+
name?: string;
|
|
991
|
+
quantity?: number;
|
|
992
|
+
};
|
|
993
|
+
type InterferenceDecisionRecord = {
|
|
994
|
+
interferenceNumber: string;
|
|
995
|
+
lastModifiedDateTime?: string;
|
|
996
|
+
interferenceMetaData?: {
|
|
997
|
+
interferenceStyleName?: string;
|
|
998
|
+
interferenceLastModifiedDate?: string;
|
|
999
|
+
fileDownloadURI?: string;
|
|
1000
|
+
};
|
|
1001
|
+
seniorPartyData?: InterferencePartyData;
|
|
1002
|
+
juniorPartyData?: InterferencePartyData;
|
|
1003
|
+
additionalPartyDataBag?: Array<{
|
|
1004
|
+
applicationNumberText?: string;
|
|
1005
|
+
inventorName?: string;
|
|
1006
|
+
additionalPartyName?: string;
|
|
1007
|
+
patentNumber?: string;
|
|
1008
|
+
}>;
|
|
1009
|
+
documentData?: InterferenceDecisionDocumentData;
|
|
1010
|
+
};
|
|
1011
|
+
type InterferencePartyData = {
|
|
1012
|
+
applicationNumberText?: string;
|
|
1013
|
+
counselName?: string;
|
|
1014
|
+
grantDate?: string;
|
|
1015
|
+
groupArtUnitNumber?: string;
|
|
1016
|
+
inventorName?: string;
|
|
1017
|
+
realPartyInInterestName?: string;
|
|
1018
|
+
patentNumber?: string;
|
|
1019
|
+
patentOwnerName?: string;
|
|
1020
|
+
technologyCenterNumber?: string;
|
|
1021
|
+
publicationDate?: string;
|
|
1022
|
+
publicationNumber?: string;
|
|
1023
|
+
};
|
|
1024
|
+
type InterferenceDecisionDocumentData = {
|
|
1025
|
+
documentFilingDate?: string;
|
|
1026
|
+
documentIdentifier?: string;
|
|
1027
|
+
documentName?: string;
|
|
1028
|
+
documentSizeQuantity?: number;
|
|
1029
|
+
documentOCRText?: string;
|
|
1030
|
+
documentTitleText?: string;
|
|
1031
|
+
downloadURI?: string;
|
|
1032
|
+
statuteAndRuleBag?: Array<string>;
|
|
1033
|
+
decisionIssueDate?: string;
|
|
1034
|
+
decisionTypeCategory?: string;
|
|
1035
|
+
issueTypeBag?: Array<string>;
|
|
1036
|
+
interferenceOutcomeCategory?: string;
|
|
1037
|
+
};
|
|
1038
|
+
/**
|
|
1039
|
+
* Decision records only (trialDocumentCategory = decision).
|
|
1040
|
+
*/
|
|
1041
|
+
type PatentTrialDecisionDataBag2 = PatentTrialDocumentDataBag2;
|
|
1042
|
+
/**
|
|
1043
|
+
* A single PTAB document record.
|
|
1044
|
+
*/
|
|
1045
|
+
type PatentTrialDocumentDataBag2 = {
|
|
1046
|
+
trialDocumentCategory?: string;
|
|
1047
|
+
lastModifiedDateTime?: string;
|
|
1048
|
+
trialNumber?: string;
|
|
1049
|
+
trialTypeCode?: string;
|
|
1050
|
+
trialMetaData?: TrialMetaData;
|
|
1051
|
+
patentOwnerData?: PatentOwnerData;
|
|
1052
|
+
regularPetitionerData?: RegularPetitionerData;
|
|
1053
|
+
respondentData?: RespondentData;
|
|
1054
|
+
derivationPetitionerData?: DerivationPetitionerData;
|
|
1055
|
+
documentData?: DocumentData;
|
|
1056
|
+
decisionData?: DecisionData;
|
|
1057
|
+
};
|
|
1058
|
+
type GetApiV1PatentApplicationsSearchData = {
|
|
1059
|
+
body?: never;
|
|
1060
|
+
path?: never;
|
|
1061
|
+
query?: {
|
|
1062
|
+
/**
|
|
1063
|
+
* A search query string which accepts boolean operators (AND, OR, NOT), wildcards (*), and exact phrases ("").
|
|
1064
|
+
*/
|
|
1065
|
+
q?: string;
|
|
1066
|
+
/**
|
|
1067
|
+
* Field to be sorted followed by sort order
|
|
1068
|
+
*/
|
|
1069
|
+
sort?: string;
|
|
1070
|
+
/**
|
|
1071
|
+
* Position in the dataset of a particular record
|
|
1072
|
+
*/
|
|
1073
|
+
offset?: number;
|
|
1074
|
+
/**
|
|
1075
|
+
* Limit the number of results returned
|
|
1076
|
+
*/
|
|
1077
|
+
limit?: number;
|
|
1078
|
+
/**
|
|
1079
|
+
* List of fields names to be faceted upon separated by comma (<b>,</b>)
|
|
1080
|
+
*/
|
|
1081
|
+
facets?: string;
|
|
1082
|
+
/**
|
|
1083
|
+
* Limits the response by specifying which fields from dataset should be included.
|
|
1084
|
+
*/
|
|
1085
|
+
fields?: string;
|
|
1086
|
+
/**
|
|
1087
|
+
* Filter data by supplying filter parameter. Provide field name and its value.
|
|
1088
|
+
*/
|
|
1089
|
+
filters?: string;
|
|
1090
|
+
/**
|
|
1091
|
+
* Filter the data by supplying range of values. Applicable for number and date type fields.
|
|
1092
|
+
*/
|
|
1093
|
+
rangeFilters?: string;
|
|
1094
|
+
};
|
|
1095
|
+
url: "/api/v1/patent/applications/search";
|
|
1096
|
+
};
|
|
1097
|
+
type GetApiV1PatentApplicationsSearchErrors = {
|
|
1098
|
+
/**
|
|
1099
|
+
* Bad Request
|
|
1100
|
+
*/
|
|
1101
|
+
400: {
|
|
1102
|
+
code?: unknown;
|
|
1103
|
+
error?: unknown;
|
|
1104
|
+
errorDetails?: unknown;
|
|
1105
|
+
requestIdentifier?: unknown;
|
|
1106
|
+
};
|
|
1107
|
+
/**
|
|
1108
|
+
* Forbidden
|
|
1109
|
+
*/
|
|
1110
|
+
403: {
|
|
1111
|
+
code?: unknown;
|
|
1112
|
+
error?: unknown;
|
|
1113
|
+
};
|
|
1114
|
+
/**
|
|
1115
|
+
* Not Found
|
|
1116
|
+
*/
|
|
1117
|
+
404: {
|
|
1118
|
+
code?: unknown;
|
|
1119
|
+
error?: unknown;
|
|
1120
|
+
errorDetails?: unknown;
|
|
1121
|
+
requestIdentifier?: unknown;
|
|
1122
|
+
};
|
|
1123
|
+
/**
|
|
1124
|
+
* Payload Too Large
|
|
1125
|
+
*/
|
|
1126
|
+
413: Status413;
|
|
1127
|
+
/**
|
|
1128
|
+
* Internal Server Error
|
|
1129
|
+
*/
|
|
1130
|
+
500: {
|
|
1131
|
+
code?: unknown;
|
|
1132
|
+
error?: unknown;
|
|
1133
|
+
errorDetails?: unknown;
|
|
1134
|
+
requestIdentifier?: unknown;
|
|
1135
|
+
};
|
|
1136
|
+
};
|
|
1137
|
+
type GetApiV1PatentApplicationsSearchError = GetApiV1PatentApplicationsSearchErrors[keyof GetApiV1PatentApplicationsSearchErrors];
|
|
1138
|
+
type GetApiV1PatentApplicationsSearchResponses = {
|
|
1139
|
+
/**
|
|
1140
|
+
* OK
|
|
1141
|
+
*/
|
|
1142
|
+
200: PatentDataResponse;
|
|
1143
|
+
};
|
|
1144
|
+
type GetApiV1PatentApplicationsSearchResponse = GetApiV1PatentApplicationsSearchResponses[keyof GetApiV1PatentApplicationsSearchResponses];
|
|
1145
|
+
type PostApiV1PatentApplicationsSearchData = {
|
|
1146
|
+
/**
|
|
1147
|
+
* Patent data search request json payload. Fields in the request is optional
|
|
1148
|
+
*/
|
|
1149
|
+
body?: PatentSearchRequest;
|
|
1150
|
+
path?: never;
|
|
1151
|
+
query?: never;
|
|
1152
|
+
url: "/api/v1/patent/applications/search";
|
|
1153
|
+
};
|
|
1154
|
+
type PostApiV1PatentApplicationsSearchErrors = {
|
|
1155
|
+
/**
|
|
1156
|
+
* Bad Request
|
|
1157
|
+
*/
|
|
1158
|
+
400: {
|
|
1159
|
+
code?: unknown;
|
|
1160
|
+
error?: unknown;
|
|
1161
|
+
errorDetails?: unknown;
|
|
1162
|
+
requestIdentifier?: unknown;
|
|
1163
|
+
};
|
|
1164
|
+
/**
|
|
1165
|
+
* Forbidden
|
|
1166
|
+
*/
|
|
1167
|
+
403: {
|
|
1168
|
+
code?: unknown;
|
|
1169
|
+
error?: unknown;
|
|
1170
|
+
};
|
|
1171
|
+
/**
|
|
1172
|
+
* Not Found
|
|
1173
|
+
*/
|
|
1174
|
+
404: {
|
|
1175
|
+
code?: unknown;
|
|
1176
|
+
error?: unknown;
|
|
1177
|
+
errorDetails?: unknown;
|
|
1178
|
+
requestIdentifier?: unknown;
|
|
1179
|
+
};
|
|
1180
|
+
/**
|
|
1181
|
+
* Payload Too Large
|
|
1182
|
+
*/
|
|
1183
|
+
413: Status413;
|
|
1184
|
+
/**
|
|
1185
|
+
* Internal Server Error
|
|
1186
|
+
*/
|
|
1187
|
+
500: {
|
|
1188
|
+
code?: unknown;
|
|
1189
|
+
error?: unknown;
|
|
1190
|
+
errorDetails?: unknown;
|
|
1191
|
+
requestIdentifier?: unknown;
|
|
1192
|
+
};
|
|
1193
|
+
};
|
|
1194
|
+
type PostApiV1PatentApplicationsSearchError = PostApiV1PatentApplicationsSearchErrors[keyof PostApiV1PatentApplicationsSearchErrors];
|
|
1195
|
+
type PostApiV1PatentApplicationsSearchResponses = {
|
|
1196
|
+
/**
|
|
1197
|
+
* OK
|
|
1198
|
+
*/
|
|
1199
|
+
200: PatentDataResponse;
|
|
1200
|
+
};
|
|
1201
|
+
type PostApiV1PatentApplicationsSearchResponse = PostApiV1PatentApplicationsSearchResponses[keyof PostApiV1PatentApplicationsSearchResponses];
|
|
1202
|
+
type GetApiV1PatentApplicationsSearchDownloadData = {
|
|
1203
|
+
body?: never;
|
|
1204
|
+
path?: never;
|
|
1205
|
+
query?: {
|
|
1206
|
+
/**
|
|
1207
|
+
* A search query string which accepts boolean operators (AND, OR, NOT), wildcards (*), and exact phrases ("").
|
|
1208
|
+
*/
|
|
1209
|
+
q?: string;
|
|
1210
|
+
/**
|
|
1211
|
+
* field to be sorted followed by sort order
|
|
1212
|
+
*/
|
|
1213
|
+
sort?: string;
|
|
1214
|
+
/**
|
|
1215
|
+
* Page number to begin with
|
|
1216
|
+
*/
|
|
1217
|
+
offset?: number;
|
|
1218
|
+
/**
|
|
1219
|
+
* Limit the number of results returned
|
|
1220
|
+
*/
|
|
1221
|
+
limit?: number;
|
|
1222
|
+
/**
|
|
1223
|
+
* Limits the response by specifying fields from dataset should be included.
|
|
1224
|
+
*/
|
|
1225
|
+
fields?: string;
|
|
1226
|
+
/**
|
|
1227
|
+
* Filter data by supplying filter parameter. Provide field name and its value
|
|
1228
|
+
*/
|
|
1229
|
+
filters?: string;
|
|
1230
|
+
/**
|
|
1231
|
+
* Filter the data by supplying range of values. Applicable for number and date type fields.
|
|
1232
|
+
*/
|
|
1233
|
+
rangeFilters?: string;
|
|
1234
|
+
/**
|
|
1235
|
+
* Download Format
|
|
1236
|
+
*/
|
|
1237
|
+
format?: string;
|
|
1238
|
+
};
|
|
1239
|
+
url: "/api/v1/patent/applications/search/download";
|
|
1240
|
+
};
|
|
1241
|
+
type GetApiV1PatentApplicationsSearchDownloadErrors = {
|
|
1242
|
+
/**
|
|
1243
|
+
* Bad Request
|
|
1244
|
+
*/
|
|
1245
|
+
400: {
|
|
1246
|
+
code?: unknown;
|
|
1247
|
+
error?: unknown;
|
|
1248
|
+
errorDetails?: unknown;
|
|
1249
|
+
requestIdentifier?: unknown;
|
|
1250
|
+
};
|
|
1251
|
+
/**
|
|
1252
|
+
* Forbidden
|
|
1253
|
+
*/
|
|
1254
|
+
403: {
|
|
1255
|
+
message?: unknown;
|
|
1256
|
+
};
|
|
1257
|
+
/**
|
|
1258
|
+
* Not Found
|
|
1259
|
+
*/
|
|
1260
|
+
404: {
|
|
1261
|
+
code?: unknown;
|
|
1262
|
+
error?: unknown;
|
|
1263
|
+
errorDetails?: unknown;
|
|
1264
|
+
requestIdentifier?: unknown;
|
|
1265
|
+
};
|
|
1266
|
+
/**
|
|
1267
|
+
* Internal Server Error
|
|
1268
|
+
*/
|
|
1269
|
+
500: {
|
|
1270
|
+
code?: unknown;
|
|
1271
|
+
error?: unknown;
|
|
1272
|
+
errorDetails?: unknown;
|
|
1273
|
+
requestIdentifier?: unknown;
|
|
1274
|
+
};
|
|
1275
|
+
};
|
|
1276
|
+
type GetApiV1PatentApplicationsSearchDownloadError = GetApiV1PatentApplicationsSearchDownloadErrors[keyof GetApiV1PatentApplicationsSearchDownloadErrors];
|
|
1277
|
+
type GetApiV1PatentApplicationsSearchDownloadResponses = {
|
|
1278
|
+
/**
|
|
1279
|
+
* OK
|
|
1280
|
+
*/
|
|
1281
|
+
200: PatentDataResponse;
|
|
1282
|
+
};
|
|
1283
|
+
type GetApiV1PatentApplicationsSearchDownloadResponse = GetApiV1PatentApplicationsSearchDownloadResponses[keyof GetApiV1PatentApplicationsSearchDownloadResponses];
|
|
1284
|
+
type PostApiV1PatentApplicationsSearchDownloadData = {
|
|
1285
|
+
/**
|
|
1286
|
+
* Patent data search request json payload. Fields in the request is optional
|
|
1287
|
+
*/
|
|
1288
|
+
body?: PatentDownloadRequest;
|
|
1289
|
+
path?: never;
|
|
1290
|
+
query?: never;
|
|
1291
|
+
url: "/api/v1/patent/applications/search/download";
|
|
1292
|
+
};
|
|
1293
|
+
type PostApiV1PatentApplicationsSearchDownloadErrors = {
|
|
1294
|
+
/**
|
|
1295
|
+
* Bad Request
|
|
1296
|
+
*/
|
|
1297
|
+
400: {
|
|
1298
|
+
code?: unknown;
|
|
1299
|
+
error?: unknown;
|
|
1300
|
+
errorDetails?: unknown;
|
|
1301
|
+
requestIdentifier?: unknown;
|
|
1302
|
+
};
|
|
1303
|
+
/**
|
|
1304
|
+
* Forbidden
|
|
1305
|
+
*/
|
|
1306
|
+
403: {
|
|
1307
|
+
code?: unknown;
|
|
1308
|
+
error?: unknown;
|
|
1309
|
+
};
|
|
1310
|
+
/**
|
|
1311
|
+
* Not Found
|
|
1312
|
+
*/
|
|
1313
|
+
404: {
|
|
1314
|
+
code?: unknown;
|
|
1315
|
+
error?: unknown;
|
|
1316
|
+
errorDetails?: unknown;
|
|
1317
|
+
requestIdentifier?: unknown;
|
|
1318
|
+
};
|
|
1319
|
+
/**
|
|
1320
|
+
* Internal Server Error
|
|
1321
|
+
*/
|
|
1322
|
+
500: {
|
|
1323
|
+
code?: unknown;
|
|
1324
|
+
error?: unknown;
|
|
1325
|
+
errorDetails?: unknown;
|
|
1326
|
+
requestIdentifier?: unknown;
|
|
1327
|
+
};
|
|
1328
|
+
};
|
|
1329
|
+
type PostApiV1PatentApplicationsSearchDownloadError = PostApiV1PatentApplicationsSearchDownloadErrors[keyof PostApiV1PatentApplicationsSearchDownloadErrors];
|
|
1330
|
+
type PostApiV1PatentApplicationsSearchDownloadResponses = {
|
|
1331
|
+
/**
|
|
1332
|
+
* OK
|
|
1333
|
+
*/
|
|
1334
|
+
200: PatentDataResponse;
|
|
1335
|
+
};
|
|
1336
|
+
type PostApiV1PatentApplicationsSearchDownloadResponse = PostApiV1PatentApplicationsSearchDownloadResponses[keyof PostApiV1PatentApplicationsSearchDownloadResponses];
|
|
1337
|
+
type GetApiV1PatentApplicationsByApplicationNumberTextData = {
|
|
1338
|
+
body?: never;
|
|
1339
|
+
path: {
|
|
1340
|
+
/**
|
|
1341
|
+
* Patent application number. <b>Note</b>:Application number having special character e.g PCT/BR00/000001 must be encoded with UTF-8 character encoding standard
|
|
1342
|
+
*/
|
|
1343
|
+
applicationNumberText: string;
|
|
1344
|
+
};
|
|
1345
|
+
query?: never;
|
|
1346
|
+
url: "/api/v1/patent/applications/{applicationNumberText}";
|
|
1347
|
+
};
|
|
1348
|
+
type GetApiV1PatentApplicationsByApplicationNumberTextErrors = {
|
|
1349
|
+
/**
|
|
1350
|
+
* Bad Request
|
|
1351
|
+
*/
|
|
1352
|
+
400: {
|
|
1353
|
+
code?: unknown;
|
|
1354
|
+
error?: unknown;
|
|
1355
|
+
errorDetails?: unknown;
|
|
1356
|
+
requestIdentifier?: unknown;
|
|
1357
|
+
};
|
|
1358
|
+
/**
|
|
1359
|
+
* Forbidden
|
|
1360
|
+
*/
|
|
1361
|
+
403: {
|
|
1362
|
+
code?: unknown;
|
|
1363
|
+
error?: unknown;
|
|
1364
|
+
};
|
|
1365
|
+
/**
|
|
1366
|
+
* Not Found
|
|
1367
|
+
*/
|
|
1368
|
+
404: {
|
|
1369
|
+
code?: unknown;
|
|
1370
|
+
error?: unknown;
|
|
1371
|
+
errorDetails?: unknown;
|
|
1372
|
+
requestIdentifier?: unknown;
|
|
1373
|
+
};
|
|
1374
|
+
/**
|
|
1375
|
+
* Internal Server Error
|
|
1376
|
+
*/
|
|
1377
|
+
500: {
|
|
1378
|
+
code?: unknown;
|
|
1379
|
+
error?: unknown;
|
|
1380
|
+
errorDetailed?: unknown;
|
|
1381
|
+
requestIdentifier?: unknown;
|
|
1382
|
+
};
|
|
1383
|
+
};
|
|
1384
|
+
type GetApiV1PatentApplicationsByApplicationNumberTextError = GetApiV1PatentApplicationsByApplicationNumberTextErrors[keyof GetApiV1PatentApplicationsByApplicationNumberTextErrors];
|
|
1385
|
+
type GetApiV1PatentApplicationsByApplicationNumberTextResponses = {
|
|
1386
|
+
/**
|
|
1387
|
+
* OK
|
|
1388
|
+
*/
|
|
1389
|
+
200: PatentDataResponse;
|
|
1390
|
+
};
|
|
1391
|
+
type GetApiV1PatentApplicationsByApplicationNumberTextResponse = GetApiV1PatentApplicationsByApplicationNumberTextResponses[keyof GetApiV1PatentApplicationsByApplicationNumberTextResponses];
|
|
1392
|
+
type GetApiV1PatentApplicationsByApplicationNumberTextMetaDataData = {
|
|
1393
|
+
body?: never;
|
|
1394
|
+
path: {
|
|
1395
|
+
/**
|
|
1396
|
+
* Patent application number
|
|
1397
|
+
*/
|
|
1398
|
+
applicationNumberText: string;
|
|
1399
|
+
};
|
|
1400
|
+
query?: never;
|
|
1401
|
+
url: "/api/v1/patent/applications/{applicationNumberText}/meta-data";
|
|
1402
|
+
};
|
|
1403
|
+
type GetApiV1PatentApplicationsByApplicationNumberTextMetaDataErrors = {
|
|
1404
|
+
/**
|
|
1405
|
+
* Bad Request
|
|
1406
|
+
*/
|
|
1407
|
+
400: {
|
|
1408
|
+
code?: unknown;
|
|
1409
|
+
error?: unknown;
|
|
1410
|
+
errorDetails?: unknown;
|
|
1411
|
+
requestIdentifier?: unknown;
|
|
1412
|
+
};
|
|
1413
|
+
/**
|
|
1414
|
+
* Forbidden
|
|
1415
|
+
*/
|
|
1416
|
+
403: {
|
|
1417
|
+
code?: unknown;
|
|
1418
|
+
error?: unknown;
|
|
1419
|
+
};
|
|
1420
|
+
/**
|
|
1421
|
+
* Not Found
|
|
1422
|
+
*/
|
|
1423
|
+
404: {
|
|
1424
|
+
code?: unknown;
|
|
1425
|
+
error?: unknown;
|
|
1426
|
+
errorDetails?: unknown;
|
|
1427
|
+
requestIdentifier?: unknown;
|
|
1428
|
+
};
|
|
1429
|
+
/**
|
|
1430
|
+
* Internal Server Error
|
|
1431
|
+
*/
|
|
1432
|
+
500: {
|
|
1433
|
+
code?: unknown;
|
|
1434
|
+
error?: unknown;
|
|
1435
|
+
errorDetails?: unknown;
|
|
1436
|
+
requestIdentifier?: unknown;
|
|
1437
|
+
};
|
|
1438
|
+
};
|
|
1439
|
+
type GetApiV1PatentApplicationsByApplicationNumberTextMetaDataError = GetApiV1PatentApplicationsByApplicationNumberTextMetaDataErrors[keyof GetApiV1PatentApplicationsByApplicationNumberTextMetaDataErrors];
|
|
1440
|
+
type GetApiV1PatentApplicationsByApplicationNumberTextMetaDataResponses = {
|
|
1441
|
+
/**
|
|
1442
|
+
* Application meta data section
|
|
1443
|
+
*/
|
|
1444
|
+
200: {
|
|
1445
|
+
count?: unknown;
|
|
1446
|
+
patentFileWrapperDataBag?: Array<{
|
|
1447
|
+
/**
|
|
1448
|
+
* Free format of application number
|
|
1449
|
+
*/
|
|
1450
|
+
applicationNumberText?: string;
|
|
1451
|
+
applicationMetaData?: ApplicationMetaData;
|
|
1452
|
+
}>;
|
|
1453
|
+
requestIdentifier?: unknown;
|
|
1454
|
+
};
|
|
1455
|
+
};
|
|
1456
|
+
type GetApiV1PatentApplicationsByApplicationNumberTextMetaDataResponse = GetApiV1PatentApplicationsByApplicationNumberTextMetaDataResponses[keyof GetApiV1PatentApplicationsByApplicationNumberTextMetaDataResponses];
|
|
1457
|
+
type GetApiV1PatentApplicationsByApplicationNumberTextAdjustmentData = {
|
|
1458
|
+
body?: never;
|
|
1459
|
+
path: {
|
|
1460
|
+
/**
|
|
1461
|
+
* Patent application number
|
|
1462
|
+
*/
|
|
1463
|
+
applicationNumberText: string;
|
|
1464
|
+
};
|
|
1465
|
+
query?: never;
|
|
1466
|
+
url: "/api/v1/patent/applications/{applicationNumberText}/adjustment";
|
|
1467
|
+
};
|
|
1468
|
+
type GetApiV1PatentApplicationsByApplicationNumberTextAdjustmentErrors = {
|
|
1469
|
+
/**
|
|
1470
|
+
* Bad Request
|
|
1471
|
+
*/
|
|
1472
|
+
400: {
|
|
1473
|
+
code?: unknown;
|
|
1474
|
+
error?: unknown;
|
|
1475
|
+
errorDetails?: unknown;
|
|
1476
|
+
requestIdentifier?: unknown;
|
|
1477
|
+
};
|
|
1478
|
+
/**
|
|
1479
|
+
* Forbidden
|
|
1480
|
+
*/
|
|
1481
|
+
403: {
|
|
1482
|
+
code?: unknown;
|
|
1483
|
+
error?: unknown;
|
|
1484
|
+
};
|
|
1485
|
+
/**
|
|
1486
|
+
* Not Found
|
|
1487
|
+
*/
|
|
1488
|
+
404: {
|
|
1489
|
+
code?: unknown;
|
|
1490
|
+
error?: unknown;
|
|
1491
|
+
errorDetails?: unknown;
|
|
1492
|
+
requestIdentifier?: unknown;
|
|
1493
|
+
};
|
|
1494
|
+
/**
|
|
1495
|
+
* Internal Server Error
|
|
1496
|
+
*/
|
|
1497
|
+
500: {
|
|
1498
|
+
code?: unknown;
|
|
1499
|
+
error?: unknown;
|
|
1500
|
+
errorDetails?: unknown;
|
|
1501
|
+
requestIdentifier?: unknown;
|
|
1502
|
+
};
|
|
1503
|
+
};
|
|
1504
|
+
type GetApiV1PatentApplicationsByApplicationNumberTextAdjustmentError = GetApiV1PatentApplicationsByApplicationNumberTextAdjustmentErrors[keyof GetApiV1PatentApplicationsByApplicationNumberTextAdjustmentErrors];
|
|
1505
|
+
type GetApiV1PatentApplicationsByApplicationNumberTextAdjustmentResponses = {
|
|
1506
|
+
/**
|
|
1507
|
+
* OK
|
|
1508
|
+
*/
|
|
1509
|
+
200: {
|
|
1510
|
+
count?: number;
|
|
1511
|
+
patentFileWrapperDataBag?: Array<{
|
|
1512
|
+
/**
|
|
1513
|
+
* Free format of application number
|
|
1514
|
+
*/
|
|
1515
|
+
applicationNumberText?: string;
|
|
1516
|
+
patentTermAdjustmentData?: PatentTermAdjustment;
|
|
1517
|
+
}>;
|
|
1518
|
+
};
|
|
1519
|
+
};
|
|
1520
|
+
type GetApiV1PatentApplicationsByApplicationNumberTextAdjustmentResponse = GetApiV1PatentApplicationsByApplicationNumberTextAdjustmentResponses[keyof GetApiV1PatentApplicationsByApplicationNumberTextAdjustmentResponses];
|
|
1521
|
+
type GetApiV1PatentApplicationsByApplicationNumberTextAssignmentData = {
|
|
1522
|
+
body?: never;
|
|
1523
|
+
path: {
|
|
1524
|
+
/**
|
|
1525
|
+
* Patent application number
|
|
1526
|
+
*/
|
|
1527
|
+
applicationNumberText: string;
|
|
1528
|
+
};
|
|
1529
|
+
query?: never;
|
|
1530
|
+
url: "/api/v1/patent/applications/{applicationNumberText}/assignment";
|
|
1531
|
+
};
|
|
1532
|
+
type GetApiV1PatentApplicationsByApplicationNumberTextAssignmentErrors = {
|
|
1533
|
+
/**
|
|
1534
|
+
* Bad Request
|
|
1535
|
+
*/
|
|
1536
|
+
400: {
|
|
1537
|
+
code?: unknown;
|
|
1538
|
+
error?: unknown;
|
|
1539
|
+
errorDetails?: unknown;
|
|
1540
|
+
requestIdentifier?: unknown;
|
|
1541
|
+
};
|
|
1542
|
+
/**
|
|
1543
|
+
* Forbidden
|
|
1544
|
+
*/
|
|
1545
|
+
403: {
|
|
1546
|
+
code?: unknown;
|
|
1547
|
+
error?: unknown;
|
|
1548
|
+
};
|
|
1549
|
+
/**
|
|
1550
|
+
* Not Found
|
|
1551
|
+
*/
|
|
1552
|
+
404: {
|
|
1553
|
+
code?: unknown;
|
|
1554
|
+
error?: unknown;
|
|
1555
|
+
errorDetails?: unknown;
|
|
1556
|
+
requestIdentifier?: unknown;
|
|
1557
|
+
};
|
|
1558
|
+
/**
|
|
1559
|
+
* Internal Server Error
|
|
1560
|
+
*/
|
|
1561
|
+
500: {
|
|
1562
|
+
code?: unknown;
|
|
1563
|
+
error?: unknown;
|
|
1564
|
+
errorDetails?: unknown;
|
|
1565
|
+
requestIdentifier?: unknown;
|
|
1566
|
+
};
|
|
1567
|
+
};
|
|
1568
|
+
type GetApiV1PatentApplicationsByApplicationNumberTextAssignmentError = GetApiV1PatentApplicationsByApplicationNumberTextAssignmentErrors[keyof GetApiV1PatentApplicationsByApplicationNumberTextAssignmentErrors];
|
|
1569
|
+
type GetApiV1PatentApplicationsByApplicationNumberTextAssignmentResponses = {
|
|
1570
|
+
/**
|
|
1571
|
+
* OK
|
|
1572
|
+
*/
|
|
1573
|
+
200: {
|
|
1574
|
+
count?: number;
|
|
1575
|
+
patentFileWrapperDataBag?: Array<{
|
|
1576
|
+
/**
|
|
1577
|
+
* Free format of application number
|
|
1578
|
+
*/
|
|
1579
|
+
applicationNumberText?: string;
|
|
1580
|
+
assignmentBag?: Array<Assignment>;
|
|
1581
|
+
}>;
|
|
1582
|
+
};
|
|
1583
|
+
};
|
|
1584
|
+
type GetApiV1PatentApplicationsByApplicationNumberTextAssignmentResponse = GetApiV1PatentApplicationsByApplicationNumberTextAssignmentResponses[keyof GetApiV1PatentApplicationsByApplicationNumberTextAssignmentResponses];
|
|
1585
|
+
type GetApiV1PatentApplicationsByApplicationNumberTextAttorneyData = {
|
|
1586
|
+
body?: never;
|
|
1587
|
+
path: {
|
|
1588
|
+
/**
|
|
1589
|
+
* Patent application number
|
|
1590
|
+
*/
|
|
1591
|
+
applicationNumberText: string;
|
|
1592
|
+
};
|
|
1593
|
+
query?: never;
|
|
1594
|
+
url: "/api/v1/patent/applications/{applicationNumberText}/attorney";
|
|
1595
|
+
};
|
|
1596
|
+
type GetApiV1PatentApplicationsByApplicationNumberTextAttorneyErrors = {
|
|
1597
|
+
/**
|
|
1598
|
+
* Bad Request
|
|
1599
|
+
*/
|
|
1600
|
+
400: {
|
|
1601
|
+
code?: unknown;
|
|
1602
|
+
error?: unknown;
|
|
1603
|
+
errorDetails?: unknown;
|
|
1604
|
+
requestIdentifier?: unknown;
|
|
1605
|
+
};
|
|
1606
|
+
/**
|
|
1607
|
+
* Forbidden
|
|
1608
|
+
*/
|
|
1609
|
+
403: {
|
|
1610
|
+
code?: unknown;
|
|
1611
|
+
error?: unknown;
|
|
1612
|
+
};
|
|
1613
|
+
/**
|
|
1614
|
+
* Not Found
|
|
1615
|
+
*/
|
|
1616
|
+
404: {
|
|
1617
|
+
code?: unknown;
|
|
1618
|
+
error?: unknown;
|
|
1619
|
+
errorDetails?: unknown;
|
|
1620
|
+
requestIdentifier?: unknown;
|
|
1621
|
+
};
|
|
1622
|
+
/**
|
|
1623
|
+
* Internal Server Error
|
|
1624
|
+
*/
|
|
1625
|
+
500: {
|
|
1626
|
+
code?: unknown;
|
|
1627
|
+
error?: unknown;
|
|
1628
|
+
errorDetails?: unknown;
|
|
1629
|
+
requestIdentifier?: unknown;
|
|
1630
|
+
};
|
|
1631
|
+
};
|
|
1632
|
+
type GetApiV1PatentApplicationsByApplicationNumberTextAttorneyError = GetApiV1PatentApplicationsByApplicationNumberTextAttorneyErrors[keyof GetApiV1PatentApplicationsByApplicationNumberTextAttorneyErrors];
|
|
1633
|
+
type GetApiV1PatentApplicationsByApplicationNumberTextAttorneyResponses = {
|
|
1634
|
+
/**
|
|
1635
|
+
* OK
|
|
1636
|
+
*/
|
|
1637
|
+
200: {
|
|
1638
|
+
count?: number;
|
|
1639
|
+
patentFileWrapperDataBag?: Array<{
|
|
1640
|
+
/**
|
|
1641
|
+
* Free format of application number
|
|
1642
|
+
*/
|
|
1643
|
+
applicationNumberText?: string;
|
|
1644
|
+
recordAttorney?: RecordAttorney;
|
|
1645
|
+
}>;
|
|
1646
|
+
};
|
|
1647
|
+
};
|
|
1648
|
+
type GetApiV1PatentApplicationsByApplicationNumberTextAttorneyResponse = GetApiV1PatentApplicationsByApplicationNumberTextAttorneyResponses[keyof GetApiV1PatentApplicationsByApplicationNumberTextAttorneyResponses];
|
|
1649
|
+
type GetApiV1PatentApplicationsByApplicationNumberTextContinuityData = {
|
|
1650
|
+
body?: never;
|
|
1651
|
+
path: {
|
|
1652
|
+
/**
|
|
1653
|
+
* Patent application number
|
|
1654
|
+
*/
|
|
1655
|
+
applicationNumberText: string;
|
|
1656
|
+
};
|
|
1657
|
+
query?: never;
|
|
1658
|
+
url: "/api/v1/patent/applications/{applicationNumberText}/continuity";
|
|
1659
|
+
};
|
|
1660
|
+
type GetApiV1PatentApplicationsByApplicationNumberTextContinuityResponses = {
|
|
1661
|
+
/**
|
|
1662
|
+
* OK
|
|
1663
|
+
*/
|
|
1664
|
+
200: {
|
|
1665
|
+
count?: number;
|
|
1666
|
+
patentFileWrapperDataBag?: Array<{
|
|
1667
|
+
/**
|
|
1668
|
+
* Free format of application number
|
|
1669
|
+
*/
|
|
1670
|
+
applicationNumberText?: string;
|
|
1671
|
+
parentContinuityBag?: Array<ParentContinuityData>;
|
|
1672
|
+
childContinuityBag?: Array<ChildContinuityData>;
|
|
1673
|
+
requestIdentifier?: string;
|
|
1674
|
+
}>;
|
|
1675
|
+
};
|
|
1676
|
+
};
|
|
1677
|
+
type GetApiV1PatentApplicationsByApplicationNumberTextContinuityResponse = GetApiV1PatentApplicationsByApplicationNumberTextContinuityResponses[keyof GetApiV1PatentApplicationsByApplicationNumberTextContinuityResponses];
|
|
1678
|
+
type GetApiV1PatentApplicationsByApplicationNumberTextForeignPriorityData = {
|
|
1679
|
+
body?: never;
|
|
1680
|
+
path: {
|
|
1681
|
+
/**
|
|
1682
|
+
* Patent application number
|
|
1683
|
+
*/
|
|
1684
|
+
applicationNumberText: string;
|
|
1685
|
+
};
|
|
1686
|
+
query?: never;
|
|
1687
|
+
url: "/api/v1/patent/applications/{applicationNumberText}/foreign-priority";
|
|
1688
|
+
};
|
|
1689
|
+
type GetApiV1PatentApplicationsByApplicationNumberTextForeignPriorityErrors = {
|
|
1690
|
+
/**
|
|
1691
|
+
* Bad Request
|
|
1692
|
+
*/
|
|
1693
|
+
400: {
|
|
1694
|
+
code?: unknown;
|
|
1695
|
+
error?: unknown;
|
|
1696
|
+
errorDetails?: unknown;
|
|
1697
|
+
requestIdentifier?: unknown;
|
|
1698
|
+
};
|
|
1699
|
+
/**
|
|
1700
|
+
* Forbidden
|
|
1701
|
+
*/
|
|
1702
|
+
403: {
|
|
1703
|
+
code?: unknown;
|
|
1704
|
+
error?: unknown;
|
|
1705
|
+
};
|
|
1706
|
+
/**
|
|
1707
|
+
* Not Found
|
|
1708
|
+
*/
|
|
1709
|
+
404: {
|
|
1710
|
+
code?: unknown;
|
|
1711
|
+
error?: unknown;
|
|
1712
|
+
errorDetails?: unknown;
|
|
1713
|
+
requestIdentifier?: unknown;
|
|
1714
|
+
};
|
|
1715
|
+
/**
|
|
1716
|
+
* Internal Server Error
|
|
1717
|
+
*/
|
|
1718
|
+
500: {
|
|
1719
|
+
code?: unknown;
|
|
1720
|
+
error?: unknown;
|
|
1721
|
+
errorDetails?: unknown;
|
|
1722
|
+
requestIdentifier?: unknown;
|
|
1723
|
+
};
|
|
1724
|
+
};
|
|
1725
|
+
type GetApiV1PatentApplicationsByApplicationNumberTextForeignPriorityError = GetApiV1PatentApplicationsByApplicationNumberTextForeignPriorityErrors[keyof GetApiV1PatentApplicationsByApplicationNumberTextForeignPriorityErrors];
|
|
1726
|
+
type GetApiV1PatentApplicationsByApplicationNumberTextForeignPriorityResponses = {
|
|
1727
|
+
/**
|
|
1728
|
+
* OK
|
|
1729
|
+
*/
|
|
1730
|
+
200: {
|
|
1731
|
+
count?: number;
|
|
1732
|
+
patentFileWrapperDataBag?: Array<{
|
|
1733
|
+
/**
|
|
1734
|
+
* Free format of application number
|
|
1735
|
+
*/
|
|
1736
|
+
applicationNumberText?: string;
|
|
1737
|
+
foreignPriorityBag?: Array<ForeignPriority>;
|
|
1738
|
+
}>;
|
|
1739
|
+
};
|
|
1740
|
+
};
|
|
1741
|
+
type GetApiV1PatentApplicationsByApplicationNumberTextForeignPriorityResponse = GetApiV1PatentApplicationsByApplicationNumberTextForeignPriorityResponses[keyof GetApiV1PatentApplicationsByApplicationNumberTextForeignPriorityResponses];
|
|
1742
|
+
type GetApiV1PatentApplicationsByApplicationNumberTextTransactionsData = {
|
|
1743
|
+
body?: never;
|
|
1744
|
+
path: {
|
|
1745
|
+
/**
|
|
1746
|
+
* Patent application number
|
|
1747
|
+
*/
|
|
1748
|
+
applicationNumberText: string;
|
|
1749
|
+
};
|
|
1750
|
+
query?: never;
|
|
1751
|
+
url: "/api/v1/patent/applications/{applicationNumberText}/transactions";
|
|
1752
|
+
};
|
|
1753
|
+
type GetApiV1PatentApplicationsByApplicationNumberTextTransactionsErrors = {
|
|
1754
|
+
/**
|
|
1755
|
+
* Bad Request
|
|
1756
|
+
*/
|
|
1757
|
+
400: {
|
|
1758
|
+
code?: unknown;
|
|
1759
|
+
error?: unknown;
|
|
1760
|
+
errorDetails?: unknown;
|
|
1761
|
+
requestIdentifier?: unknown;
|
|
1762
|
+
};
|
|
1763
|
+
/**
|
|
1764
|
+
* Forbidden
|
|
1765
|
+
*/
|
|
1766
|
+
403: {
|
|
1767
|
+
code?: unknown;
|
|
1768
|
+
error?: unknown;
|
|
1769
|
+
};
|
|
1770
|
+
/**
|
|
1771
|
+
* Not Found
|
|
1772
|
+
*/
|
|
1773
|
+
404: {
|
|
1774
|
+
code?: unknown;
|
|
1775
|
+
error?: unknown;
|
|
1776
|
+
errorDetails?: unknown;
|
|
1777
|
+
requestIdentifier?: unknown;
|
|
1778
|
+
};
|
|
1779
|
+
/**
|
|
1780
|
+
* Internal Server Error
|
|
1781
|
+
*/
|
|
1782
|
+
500: {
|
|
1783
|
+
code?: unknown;
|
|
1784
|
+
error?: unknown;
|
|
1785
|
+
errorDetails?: unknown;
|
|
1786
|
+
requestIdentifier?: unknown;
|
|
1787
|
+
};
|
|
1788
|
+
};
|
|
1789
|
+
type GetApiV1PatentApplicationsByApplicationNumberTextTransactionsError = GetApiV1PatentApplicationsByApplicationNumberTextTransactionsErrors[keyof GetApiV1PatentApplicationsByApplicationNumberTextTransactionsErrors];
|
|
1790
|
+
type GetApiV1PatentApplicationsByApplicationNumberTextTransactionsResponses = {
|
|
1791
|
+
/**
|
|
1792
|
+
* OK
|
|
1793
|
+
*/
|
|
1794
|
+
200: {
|
|
1795
|
+
count?: number;
|
|
1796
|
+
patentFileWrapperDataBag?: Array<{
|
|
1797
|
+
/**
|
|
1798
|
+
* Free format of application number
|
|
1799
|
+
*/
|
|
1800
|
+
applicationNumberText?: string;
|
|
1801
|
+
eventDataBag?: Array<EventData>;
|
|
1802
|
+
}>;
|
|
1803
|
+
};
|
|
1804
|
+
};
|
|
1805
|
+
type GetApiV1PatentApplicationsByApplicationNumberTextTransactionsResponse = GetApiV1PatentApplicationsByApplicationNumberTextTransactionsResponses[keyof GetApiV1PatentApplicationsByApplicationNumberTextTransactionsResponses];
|
|
1806
|
+
type GetApiV1PatentApplicationsByApplicationNumberTextDocumentsData = {
|
|
1807
|
+
body?: never;
|
|
1808
|
+
path: {
|
|
1809
|
+
/**
|
|
1810
|
+
* application number
|
|
1811
|
+
*/
|
|
1812
|
+
applicationNumberText: string;
|
|
1813
|
+
};
|
|
1814
|
+
query?: {
|
|
1815
|
+
/**
|
|
1816
|
+
* single or multiple comma separated document codes
|
|
1817
|
+
*/
|
|
1818
|
+
documentCodes?: string;
|
|
1819
|
+
/**
|
|
1820
|
+
* Search by document official date from
|
|
1821
|
+
*/
|
|
1822
|
+
officialDateFrom?: string;
|
|
1823
|
+
/**
|
|
1824
|
+
* Search by document official date to
|
|
1825
|
+
*/
|
|
1826
|
+
officialDateTo?: string;
|
|
1827
|
+
};
|
|
1828
|
+
url: "/api/v1/patent/applications/{applicationNumberText}/documents";
|
|
1829
|
+
};
|
|
1830
|
+
type GetApiV1PatentApplicationsByApplicationNumberTextDocumentsErrors = {
|
|
1831
|
+
/**
|
|
1832
|
+
* Bad Request
|
|
1833
|
+
*/
|
|
1834
|
+
400: {
|
|
1835
|
+
code?: unknown;
|
|
1836
|
+
error?: unknown;
|
|
1837
|
+
errorDetails?: unknown;
|
|
1838
|
+
requestIdentifier?: unknown;
|
|
1839
|
+
};
|
|
1840
|
+
/**
|
|
1841
|
+
* Forbidden
|
|
1842
|
+
*/
|
|
1843
|
+
403: {
|
|
1844
|
+
code?: unknown;
|
|
1845
|
+
error?: unknown;
|
|
1846
|
+
};
|
|
1847
|
+
/**
|
|
1848
|
+
* Not Found
|
|
1849
|
+
*/
|
|
1850
|
+
404: {
|
|
1851
|
+
code?: unknown;
|
|
1852
|
+
error?: unknown;
|
|
1853
|
+
errorDetails?: unknown;
|
|
1854
|
+
requestIdentifier?: unknown;
|
|
1855
|
+
};
|
|
1856
|
+
/**
|
|
1857
|
+
* Internal Server Error
|
|
1858
|
+
*/
|
|
1859
|
+
500: {
|
|
1860
|
+
code?: unknown;
|
|
1861
|
+
error?: unknown;
|
|
1862
|
+
errorDetails?: unknown;
|
|
1863
|
+
requestIdentifier?: unknown;
|
|
1864
|
+
};
|
|
1865
|
+
};
|
|
1866
|
+
type GetApiV1PatentApplicationsByApplicationNumberTextDocumentsError = GetApiV1PatentApplicationsByApplicationNumberTextDocumentsErrors[keyof GetApiV1PatentApplicationsByApplicationNumberTextDocumentsErrors];
|
|
1867
|
+
type GetApiV1PatentApplicationsByApplicationNumberTextDocumentsResponses = {
|
|
1868
|
+
/**
|
|
1869
|
+
* OK
|
|
1870
|
+
*/
|
|
1871
|
+
200: DocumentBag;
|
|
1872
|
+
};
|
|
1873
|
+
type GetApiV1PatentApplicationsByApplicationNumberTextDocumentsResponse = GetApiV1PatentApplicationsByApplicationNumberTextDocumentsResponses[keyof GetApiV1PatentApplicationsByApplicationNumberTextDocumentsResponses];
|
|
1874
|
+
type GetApiV1PatentApplicationsByApplicationNumberTextAssociatedDocumentsData = {
|
|
1875
|
+
body?: never;
|
|
1876
|
+
path: {
|
|
1877
|
+
/**
|
|
1878
|
+
* application number
|
|
1879
|
+
*/
|
|
1880
|
+
applicationNumberText: string;
|
|
1881
|
+
};
|
|
1882
|
+
query?: never;
|
|
1883
|
+
url: "/api/v1/patent/applications/{applicationNumberText}/associated-documents";
|
|
1884
|
+
};
|
|
1885
|
+
type GetApiV1PatentApplicationsByApplicationNumberTextAssociatedDocumentsErrors = {
|
|
1886
|
+
/**
|
|
1887
|
+
* Bad Request
|
|
1888
|
+
*/
|
|
1889
|
+
400: {
|
|
1890
|
+
code?: unknown;
|
|
1891
|
+
error?: unknown;
|
|
1892
|
+
errorDetails?: unknown;
|
|
1893
|
+
requestIdentifier?: unknown;
|
|
1894
|
+
};
|
|
1895
|
+
/**
|
|
1896
|
+
* Forbidden
|
|
1897
|
+
*/
|
|
1898
|
+
403: {
|
|
1899
|
+
code?: unknown;
|
|
1900
|
+
error?: unknown;
|
|
1901
|
+
};
|
|
1902
|
+
/**
|
|
1903
|
+
* Not Found
|
|
1904
|
+
*/
|
|
1905
|
+
404: {
|
|
1906
|
+
code?: unknown;
|
|
1907
|
+
error?: unknown;
|
|
1908
|
+
errorDetails?: unknown;
|
|
1909
|
+
requestIdentifier?: unknown;
|
|
1910
|
+
};
|
|
1911
|
+
/**
|
|
1912
|
+
* Internal Server Error
|
|
1913
|
+
*/
|
|
1914
|
+
500: {
|
|
1915
|
+
code?: unknown;
|
|
1916
|
+
error?: unknown;
|
|
1917
|
+
errorDetails?: unknown;
|
|
1918
|
+
requestIdentifier?: unknown;
|
|
1919
|
+
};
|
|
1920
|
+
};
|
|
1921
|
+
type GetApiV1PatentApplicationsByApplicationNumberTextAssociatedDocumentsError = GetApiV1PatentApplicationsByApplicationNumberTextAssociatedDocumentsErrors[keyof GetApiV1PatentApplicationsByApplicationNumberTextAssociatedDocumentsErrors];
|
|
1922
|
+
type GetApiV1PatentApplicationsByApplicationNumberTextAssociatedDocumentsResponses = {
|
|
1923
|
+
/**
|
|
1924
|
+
* OK
|
|
1925
|
+
*/
|
|
1926
|
+
200: {
|
|
1927
|
+
count?: number;
|
|
1928
|
+
patentFileWrapperDataBag?: Array<{
|
|
1929
|
+
/**
|
|
1930
|
+
* Free format of application number
|
|
1931
|
+
*/
|
|
1932
|
+
applicationNumberText?: string;
|
|
1933
|
+
pgpubDocumentMetaData?: PgPubFileMetaData;
|
|
1934
|
+
grantDocumentMetaData?: GrantFileMetaData;
|
|
1935
|
+
requestIdentifier?: string;
|
|
1936
|
+
}>;
|
|
1937
|
+
};
|
|
1938
|
+
};
|
|
1939
|
+
type GetApiV1PatentApplicationsByApplicationNumberTextAssociatedDocumentsResponse = GetApiV1PatentApplicationsByApplicationNumberTextAssociatedDocumentsResponses[keyof GetApiV1PatentApplicationsByApplicationNumberTextAssociatedDocumentsResponses];
|
|
1940
|
+
type GetApiV1PatentStatusCodesData = {
|
|
1941
|
+
body?: never;
|
|
1942
|
+
path?: never;
|
|
1943
|
+
query?: {
|
|
1944
|
+
/**
|
|
1945
|
+
* A search query string which accepts boolean operators (AND, OR, NOT), wildcards (*), and exact phrases ("").
|
|
1946
|
+
*/
|
|
1947
|
+
q?: string;
|
|
1948
|
+
/**
|
|
1949
|
+
* Position in the dataset of a particular record
|
|
1950
|
+
*/
|
|
1951
|
+
offset?: number;
|
|
1952
|
+
/**
|
|
1953
|
+
* Limit the number of results returned
|
|
1954
|
+
*/
|
|
1955
|
+
limit?: number;
|
|
1956
|
+
};
|
|
1957
|
+
url: "/api/v1/patent/status-codes";
|
|
1958
|
+
};
|
|
1959
|
+
type GetApiV1PatentStatusCodesErrors = {
|
|
1960
|
+
/**
|
|
1961
|
+
* Bad Request
|
|
1962
|
+
*/
|
|
1963
|
+
400: {
|
|
1964
|
+
code?: unknown;
|
|
1965
|
+
error?: unknown;
|
|
1966
|
+
errorDetails?: unknown;
|
|
1967
|
+
requestIdentifier?: unknown;
|
|
1968
|
+
};
|
|
1969
|
+
/**
|
|
1970
|
+
* Forbidden
|
|
1971
|
+
*/
|
|
1972
|
+
403: {
|
|
1973
|
+
code?: unknown;
|
|
1974
|
+
error?: unknown;
|
|
1975
|
+
};
|
|
1976
|
+
/**
|
|
1977
|
+
* Not Found
|
|
1978
|
+
*/
|
|
1979
|
+
404: {
|
|
1980
|
+
code?: unknown;
|
|
1981
|
+
error?: unknown;
|
|
1982
|
+
errorDetails?: unknown;
|
|
1983
|
+
requestIdentifier?: unknown;
|
|
1984
|
+
};
|
|
1985
|
+
/**
|
|
1986
|
+
* Internal Server Error
|
|
1987
|
+
*/
|
|
1988
|
+
500: {
|
|
1989
|
+
code?: unknown;
|
|
1990
|
+
error?: unknown;
|
|
1991
|
+
errorDetails?: unknown;
|
|
1992
|
+
requestIdentifier?: unknown;
|
|
1993
|
+
};
|
|
1994
|
+
};
|
|
1995
|
+
type GetApiV1PatentStatusCodesError = GetApiV1PatentStatusCodesErrors[keyof GetApiV1PatentStatusCodesErrors];
|
|
1996
|
+
type GetApiV1PatentStatusCodesResponses = {
|
|
1997
|
+
/**
|
|
1998
|
+
* OK
|
|
1999
|
+
*/
|
|
2000
|
+
200: StatusCodeSearchResponse;
|
|
2001
|
+
};
|
|
2002
|
+
type GetApiV1PatentStatusCodesResponse = GetApiV1PatentStatusCodesResponses[keyof GetApiV1PatentStatusCodesResponses];
|
|
2003
|
+
type PostApiV1PatentStatusCodesData = {
|
|
2004
|
+
/**
|
|
2005
|
+
* Patent status code search request json payload. All fields in the request are optional
|
|
2006
|
+
*/
|
|
2007
|
+
body?: StatusCodeSearchRequest;
|
|
2008
|
+
path?: never;
|
|
2009
|
+
query?: never;
|
|
2010
|
+
url: "/api/v1/patent/status-codes";
|
|
2011
|
+
};
|
|
2012
|
+
type PostApiV1PatentStatusCodesErrors = {
|
|
2013
|
+
/**
|
|
2014
|
+
* Bad Request
|
|
2015
|
+
*/
|
|
2016
|
+
400: {
|
|
2017
|
+
code?: unknown;
|
|
2018
|
+
error?: unknown;
|
|
2019
|
+
errorDetails?: unknown;
|
|
2020
|
+
requestIdentifier?: unknown;
|
|
2021
|
+
};
|
|
2022
|
+
/**
|
|
2023
|
+
* Forbidden
|
|
2024
|
+
*/
|
|
2025
|
+
403: {
|
|
2026
|
+
code?: unknown;
|
|
2027
|
+
error?: unknown;
|
|
2028
|
+
};
|
|
2029
|
+
/**
|
|
2030
|
+
* Not Found
|
|
2031
|
+
*/
|
|
2032
|
+
404: {
|
|
2033
|
+
code?: unknown;
|
|
2034
|
+
error?: unknown;
|
|
2035
|
+
errorDetails?: unknown;
|
|
2036
|
+
requestIdentifier?: unknown;
|
|
2037
|
+
};
|
|
2038
|
+
/**
|
|
2039
|
+
* Internal Server Error
|
|
2040
|
+
*/
|
|
2041
|
+
500: {
|
|
2042
|
+
code?: unknown;
|
|
2043
|
+
error?: unknown;
|
|
2044
|
+
errorDetails?: unknown;
|
|
2045
|
+
requestIdentifier?: unknown;
|
|
2046
|
+
};
|
|
2047
|
+
};
|
|
2048
|
+
type PostApiV1PatentStatusCodesError = PostApiV1PatentStatusCodesErrors[keyof PostApiV1PatentStatusCodesErrors];
|
|
2049
|
+
type PostApiV1PatentStatusCodesResponses = {
|
|
2050
|
+
/**
|
|
2051
|
+
* OK
|
|
2052
|
+
*/
|
|
2053
|
+
200: StatusCodeSearchResponse;
|
|
2054
|
+
};
|
|
2055
|
+
type PostApiV1PatentStatusCodesResponse = PostApiV1PatentStatusCodesResponses[keyof PostApiV1PatentStatusCodesResponses];
|
|
2056
|
+
type GetApiV1DatasetsProductsSearchData = {
|
|
2057
|
+
body?: never;
|
|
2058
|
+
path?: never;
|
|
2059
|
+
query?: {
|
|
2060
|
+
/**
|
|
2061
|
+
* A search query string which accepts boolean operators (AND, OR, NOT), wildcards (*), and exact phrases ("").
|
|
2062
|
+
*/
|
|
2063
|
+
q?: string;
|
|
2064
|
+
/**
|
|
2065
|
+
* field to be sorted followed by sort order
|
|
2066
|
+
*/
|
|
2067
|
+
sort?: string;
|
|
2068
|
+
/**
|
|
2069
|
+
* Position in the dataset of a particular record
|
|
2070
|
+
*/
|
|
2071
|
+
offset?: number;
|
|
2072
|
+
/**
|
|
2073
|
+
* Limit the number of results returned
|
|
2074
|
+
*/
|
|
2075
|
+
limit?: number;
|
|
2076
|
+
/**
|
|
2077
|
+
* List of fields names to be faceted upon separated by comma (<b>,</b>)
|
|
2078
|
+
*/
|
|
2079
|
+
facets?: string;
|
|
2080
|
+
/**
|
|
2081
|
+
* Limits the response by specifying fields from dataset should be included.
|
|
2082
|
+
*/
|
|
2083
|
+
fields?: string;
|
|
2084
|
+
/**
|
|
2085
|
+
* Filter data by supplying filter parameter. Provide field name and its value
|
|
2086
|
+
*/
|
|
2087
|
+
filters?: string;
|
|
2088
|
+
/**
|
|
2089
|
+
* Filter the data by supplying range of values. Applicable for number and date type fields.
|
|
2090
|
+
*/
|
|
2091
|
+
rangeFilters?: string;
|
|
2092
|
+
};
|
|
2093
|
+
url: "/api/v1/datasets/products/search";
|
|
2094
|
+
};
|
|
2095
|
+
type GetApiV1DatasetsProductsSearchErrors = {
|
|
2096
|
+
/**
|
|
2097
|
+
* Bad Request
|
|
2098
|
+
*/
|
|
2099
|
+
400: {
|
|
2100
|
+
code?: unknown;
|
|
2101
|
+
error?: unknown;
|
|
2102
|
+
errorDetails?: unknown;
|
|
2103
|
+
requestIdentifier?: unknown;
|
|
2104
|
+
};
|
|
2105
|
+
/**
|
|
2106
|
+
* Forbidden
|
|
2107
|
+
*/
|
|
2108
|
+
403: {
|
|
2109
|
+
code?: unknown;
|
|
2110
|
+
error?: unknown;
|
|
2111
|
+
};
|
|
2112
|
+
/**
|
|
2113
|
+
* Not Found
|
|
2114
|
+
*/
|
|
2115
|
+
404: {
|
|
2116
|
+
code?: unknown;
|
|
2117
|
+
error?: unknown;
|
|
2118
|
+
errorDetails?: unknown;
|
|
2119
|
+
requestIdentifier?: unknown;
|
|
2120
|
+
};
|
|
2121
|
+
/**
|
|
2122
|
+
* Internal Server Error
|
|
2123
|
+
*/
|
|
2124
|
+
500: {
|
|
2125
|
+
code?: unknown;
|
|
2126
|
+
error?: unknown;
|
|
2127
|
+
errorDetails?: unknown;
|
|
2128
|
+
requestIdentifier?: unknown;
|
|
2129
|
+
};
|
|
2130
|
+
};
|
|
2131
|
+
type GetApiV1DatasetsProductsSearchError = GetApiV1DatasetsProductsSearchErrors[keyof GetApiV1DatasetsProductsSearchErrors];
|
|
2132
|
+
type GetApiV1DatasetsProductsSearchResponses = {
|
|
2133
|
+
/**
|
|
2134
|
+
* OK
|
|
2135
|
+
*/
|
|
2136
|
+
200: BdssResponseBag;
|
|
2137
|
+
};
|
|
2138
|
+
type GetApiV1DatasetsProductsSearchResponse = GetApiV1DatasetsProductsSearchResponses[keyof GetApiV1DatasetsProductsSearchResponses];
|
|
2139
|
+
type GetApiV1DatasetsProductsByProductIdentifierData = {
|
|
2140
|
+
body?: never;
|
|
2141
|
+
path: {
|
|
2142
|
+
/**
|
|
2143
|
+
* productIdentifier represents product Short name
|
|
2144
|
+
*/
|
|
2145
|
+
productIdentifier: string;
|
|
2146
|
+
};
|
|
2147
|
+
query?: {
|
|
2148
|
+
/**
|
|
2149
|
+
* fileDataFromDate
|
|
2150
|
+
*/
|
|
2151
|
+
fileDataFromDate?: string;
|
|
2152
|
+
/**
|
|
2153
|
+
* fileDataToDate
|
|
2154
|
+
*/
|
|
2155
|
+
fileDataToDate?: string;
|
|
2156
|
+
/**
|
|
2157
|
+
* Number of product file records to skip
|
|
2158
|
+
*/
|
|
2159
|
+
offset?: number;
|
|
2160
|
+
/**
|
|
2161
|
+
* Number of product file records to collect
|
|
2162
|
+
*/
|
|
2163
|
+
limit?: number;
|
|
2164
|
+
/**
|
|
2165
|
+
* value true if product files should be included or false if they should be omitted from the response
|
|
2166
|
+
*/
|
|
2167
|
+
includeFiles?: string;
|
|
2168
|
+
/**
|
|
2169
|
+
* value is true if only the latest product file should be returned for this specific product
|
|
2170
|
+
*/
|
|
2171
|
+
latest?: string;
|
|
2172
|
+
};
|
|
2173
|
+
url: "/api/v1/datasets/products/{productIdentifier}";
|
|
2174
|
+
};
|
|
2175
|
+
type GetApiV1DatasetsProductsByProductIdentifierErrors = {
|
|
2176
|
+
/**
|
|
2177
|
+
* Bad Request
|
|
2178
|
+
*/
|
|
2179
|
+
400: {
|
|
2180
|
+
code?: unknown;
|
|
2181
|
+
error?: unknown;
|
|
2182
|
+
errorDetails?: unknown;
|
|
2183
|
+
requestIdentifier?: unknown;
|
|
2184
|
+
};
|
|
2185
|
+
/**
|
|
2186
|
+
* Forbidden
|
|
2187
|
+
*/
|
|
2188
|
+
403: {
|
|
2189
|
+
code?: unknown;
|
|
2190
|
+
error?: unknown;
|
|
2191
|
+
};
|
|
2192
|
+
/**
|
|
2193
|
+
* Not Found
|
|
2194
|
+
*/
|
|
2195
|
+
404: {
|
|
2196
|
+
code?: unknown;
|
|
2197
|
+
error?: unknown;
|
|
2198
|
+
errorDetails?: unknown;
|
|
2199
|
+
requestIdentifier?: unknown;
|
|
2200
|
+
};
|
|
2201
|
+
/**
|
|
2202
|
+
* Internal Server Error
|
|
2203
|
+
*/
|
|
2204
|
+
500: {
|
|
2205
|
+
code?: unknown;
|
|
2206
|
+
error?: unknown;
|
|
2207
|
+
errorDetails?: unknown;
|
|
2208
|
+
requestIdentifier?: unknown;
|
|
2209
|
+
};
|
|
2210
|
+
};
|
|
2211
|
+
type GetApiV1DatasetsProductsByProductIdentifierError = GetApiV1DatasetsProductsByProductIdentifierErrors[keyof GetApiV1DatasetsProductsByProductIdentifierErrors];
|
|
2212
|
+
type GetApiV1DatasetsProductsByProductIdentifierResponses = {
|
|
2213
|
+
/**
|
|
2214
|
+
* OK
|
|
2215
|
+
*/
|
|
2216
|
+
200: BdssResponseProductBag;
|
|
2217
|
+
};
|
|
2218
|
+
type GetApiV1DatasetsProductsByProductIdentifierResponse = GetApiV1DatasetsProductsByProductIdentifierResponses[keyof GetApiV1DatasetsProductsByProductIdentifierResponses];
|
|
2219
|
+
type GetApiV1DatasetsProductsFilesByProductIdentifierByFileNameData = {
|
|
2220
|
+
body?: never;
|
|
2221
|
+
path: {
|
|
2222
|
+
productIdentifier: string;
|
|
2223
|
+
fileName: string;
|
|
2224
|
+
};
|
|
2225
|
+
query?: never;
|
|
2226
|
+
url: "/api/v1/datasets/products/files/{productIdentifier}/{fileName}";
|
|
2227
|
+
};
|
|
2228
|
+
type GetApiV1PetitionDecisionsSearchData = {
|
|
2229
|
+
body?: never;
|
|
2230
|
+
path?: never;
|
|
2231
|
+
query?: {
|
|
2232
|
+
/**
|
|
2233
|
+
* A search query string which accepts boolean operators (AND, OR, NOT), wildcards (*), and exact phrases ("").
|
|
2234
|
+
*/
|
|
2235
|
+
q?: string;
|
|
2236
|
+
/**
|
|
2237
|
+
* field to be sorted followed by sort order
|
|
2238
|
+
*/
|
|
2239
|
+
sort?: string;
|
|
2240
|
+
/**
|
|
2241
|
+
* Position in the dataset of a particular record
|
|
2242
|
+
*/
|
|
2243
|
+
offset?: number;
|
|
2244
|
+
/**
|
|
2245
|
+
* Limit the number of results returned
|
|
2246
|
+
*/
|
|
2247
|
+
limit?: number;
|
|
2248
|
+
/**
|
|
2249
|
+
* List of fields names to be faceted upon separated by comma (<b>,</b>)
|
|
2250
|
+
*/
|
|
2251
|
+
facets?: string;
|
|
2252
|
+
/**
|
|
2253
|
+
* Limits the response by specifying fields from dataset should be included.
|
|
2254
|
+
*/
|
|
2255
|
+
fields?: string;
|
|
2256
|
+
/**
|
|
2257
|
+
* Filter data by supplying filter parameter. Provide field name and its value
|
|
2258
|
+
*/
|
|
2259
|
+
filters?: string;
|
|
2260
|
+
/**
|
|
2261
|
+
* Filter the data by supplying range of values. Applicable for number and date type fields.
|
|
2262
|
+
*/
|
|
2263
|
+
rangeFilters?: string;
|
|
2264
|
+
};
|
|
2265
|
+
url: "/api/v1/petition/decisions/search";
|
|
2266
|
+
};
|
|
2267
|
+
type GetApiV1PetitionDecisionsSearchErrors = {
|
|
2268
|
+
/**
|
|
2269
|
+
* Bad Request
|
|
2270
|
+
*/
|
|
2271
|
+
400: Response400;
|
|
2272
|
+
/**
|
|
2273
|
+
* Forbidden
|
|
2274
|
+
*/
|
|
2275
|
+
403: Response403;
|
|
2276
|
+
/**
|
|
2277
|
+
* Not Found
|
|
2278
|
+
*/
|
|
2279
|
+
404: Response404;
|
|
2280
|
+
/**
|
|
2281
|
+
* Internal Server Error
|
|
2282
|
+
*/
|
|
2283
|
+
500: Response500;
|
|
2284
|
+
};
|
|
2285
|
+
type GetApiV1PetitionDecisionsSearchError = GetApiV1PetitionDecisionsSearchErrors[keyof GetApiV1PetitionDecisionsSearchErrors];
|
|
2286
|
+
type GetApiV1PetitionDecisionsSearchResponses = {
|
|
2287
|
+
/**
|
|
2288
|
+
* OK
|
|
2289
|
+
*/
|
|
2290
|
+
200: PetitionDecisionResponseBag;
|
|
2291
|
+
};
|
|
2292
|
+
type GetApiV1PetitionDecisionsSearchResponse = GetApiV1PetitionDecisionsSearchResponses[keyof GetApiV1PetitionDecisionsSearchResponses];
|
|
2293
|
+
type PostApiV1PetitionDecisionsSearchData = {
|
|
2294
|
+
/**
|
|
2295
|
+
* Petition Decision data search request json payload. Fields in the request is optional
|
|
2296
|
+
*/
|
|
2297
|
+
body?: PetitionDecisionSearchRequest;
|
|
2298
|
+
path?: never;
|
|
2299
|
+
query?: never;
|
|
2300
|
+
url: "/api/v1/petition/decisions/search";
|
|
2301
|
+
};
|
|
2302
|
+
type PostApiV1PetitionDecisionsSearchErrors = {
|
|
2303
|
+
/**
|
|
2304
|
+
* Bad Request
|
|
2305
|
+
*/
|
|
2306
|
+
400: Response400;
|
|
2307
|
+
/**
|
|
2308
|
+
* Forbidden
|
|
2309
|
+
*/
|
|
2310
|
+
403: Response403;
|
|
2311
|
+
/**
|
|
2312
|
+
* Not Found
|
|
2313
|
+
*/
|
|
2314
|
+
404: Response404;
|
|
2315
|
+
/**
|
|
2316
|
+
* Internal Server Error
|
|
2317
|
+
*/
|
|
2318
|
+
500: Response500;
|
|
2319
|
+
};
|
|
2320
|
+
type PostApiV1PetitionDecisionsSearchError = PostApiV1PetitionDecisionsSearchErrors[keyof PostApiV1PetitionDecisionsSearchErrors];
|
|
2321
|
+
type PostApiV1PetitionDecisionsSearchResponses = {
|
|
2322
|
+
/**
|
|
2323
|
+
* OK
|
|
2324
|
+
*/
|
|
2325
|
+
200: PetitionDecisionResponseBag;
|
|
2326
|
+
};
|
|
2327
|
+
type PostApiV1PetitionDecisionsSearchResponse = PostApiV1PetitionDecisionsSearchResponses[keyof PostApiV1PetitionDecisionsSearchResponses];
|
|
2328
|
+
type GetApiV1PetitionDecisionsSearchDownloadData = {
|
|
2329
|
+
body?: never;
|
|
2330
|
+
path?: never;
|
|
2331
|
+
query?: {
|
|
2332
|
+
/**
|
|
2333
|
+
* A search query string which accepts boolean operators (AND, OR, NOT), wildcards (*), and exact phrases ("").
|
|
2334
|
+
*/
|
|
2335
|
+
q?: string;
|
|
2336
|
+
/**
|
|
2337
|
+
* field to be sorted followed by sort order
|
|
2338
|
+
*/
|
|
2339
|
+
sort?: string;
|
|
2340
|
+
/**
|
|
2341
|
+
* Position in the dataset of a particular record
|
|
2342
|
+
*/
|
|
2343
|
+
offset?: number;
|
|
2344
|
+
/**
|
|
2345
|
+
* Limit the number of results returned
|
|
2346
|
+
*/
|
|
2347
|
+
limit?: number;
|
|
2348
|
+
/**
|
|
2349
|
+
* Limits the response by specifying fields from dataset should be included.
|
|
2350
|
+
*/
|
|
2351
|
+
fields?: string;
|
|
2352
|
+
/**
|
|
2353
|
+
* Filter data by supplying filter parameter. Provide field name and its value
|
|
2354
|
+
*/
|
|
2355
|
+
filters?: string;
|
|
2356
|
+
/**
|
|
2357
|
+
* Filter the data by supplying range of values. Applicable for number and date type fields.
|
|
2358
|
+
*/
|
|
2359
|
+
rangeFilters?: string;
|
|
2360
|
+
/**
|
|
2361
|
+
* Download Format
|
|
2362
|
+
*/
|
|
2363
|
+
format?: string;
|
|
2364
|
+
};
|
|
2365
|
+
url: "/api/v1/petition/decisions/search/download";
|
|
2366
|
+
};
|
|
2367
|
+
type GetApiV1PetitionDecisionsSearchDownloadErrors = {
|
|
2368
|
+
/**
|
|
2369
|
+
* Bad Request
|
|
2370
|
+
*/
|
|
2371
|
+
400: Response400;
|
|
2372
|
+
/**
|
|
2373
|
+
* Forbidden
|
|
2374
|
+
*/
|
|
2375
|
+
403: Response403;
|
|
2376
|
+
/**
|
|
2377
|
+
* Not Found
|
|
2378
|
+
*/
|
|
2379
|
+
404: Response404;
|
|
2380
|
+
/**
|
|
2381
|
+
* Internal Server Error
|
|
2382
|
+
*/
|
|
2383
|
+
500: Response500;
|
|
2384
|
+
};
|
|
2385
|
+
type GetApiV1PetitionDecisionsSearchDownloadError = GetApiV1PetitionDecisionsSearchDownloadErrors[keyof GetApiV1PetitionDecisionsSearchDownloadErrors];
|
|
2386
|
+
type GetApiV1PetitionDecisionsSearchDownloadResponses = {
|
|
2387
|
+
/**
|
|
2388
|
+
* OK
|
|
2389
|
+
*/
|
|
2390
|
+
200: PetitionDecisionResponseBag;
|
|
2391
|
+
};
|
|
2392
|
+
type GetApiV1PetitionDecisionsSearchDownloadResponse = GetApiV1PetitionDecisionsSearchDownloadResponses[keyof GetApiV1PetitionDecisionsSearchDownloadResponses];
|
|
2393
|
+
type PostApiV1PetitionDecisionsSearchDownloadData = {
|
|
2394
|
+
/**
|
|
2395
|
+
* Petition decision data search request json payload. Fields in the request is optional
|
|
2396
|
+
*/
|
|
2397
|
+
body?: PetitionDecisionDownloadRequest;
|
|
2398
|
+
path?: never;
|
|
2399
|
+
query?: never;
|
|
2400
|
+
url: "/api/v1/petition/decisions/search/download";
|
|
2401
|
+
};
|
|
2402
|
+
type PostApiV1PetitionDecisionsSearchDownloadErrors = {
|
|
2403
|
+
/**
|
|
2404
|
+
* Bad Request
|
|
2405
|
+
*/
|
|
2406
|
+
400: Response400;
|
|
2407
|
+
/**
|
|
2408
|
+
* Forbidden
|
|
2409
|
+
*/
|
|
2410
|
+
403: Response403;
|
|
2411
|
+
/**
|
|
2412
|
+
* Not Found
|
|
2413
|
+
*/
|
|
2414
|
+
404: Response404;
|
|
2415
|
+
/**
|
|
2416
|
+
* Internal Server Error
|
|
2417
|
+
*/
|
|
2418
|
+
500: Response500;
|
|
2419
|
+
};
|
|
2420
|
+
type PostApiV1PetitionDecisionsSearchDownloadError = PostApiV1PetitionDecisionsSearchDownloadErrors[keyof PostApiV1PetitionDecisionsSearchDownloadErrors];
|
|
2421
|
+
type PostApiV1PetitionDecisionsSearchDownloadResponses = {
|
|
2422
|
+
/**
|
|
2423
|
+
* OK
|
|
2424
|
+
*/
|
|
2425
|
+
200: PetitionDecisionResponseBag;
|
|
2426
|
+
};
|
|
2427
|
+
type PostApiV1PetitionDecisionsSearchDownloadResponse = PostApiV1PetitionDecisionsSearchDownloadResponses[keyof PostApiV1PetitionDecisionsSearchDownloadResponses];
|
|
2428
|
+
type GetApiV1PetitionDecisionsByPetitionDecisionRecordIdentifierData = {
|
|
2429
|
+
body?: never;
|
|
2430
|
+
path: {
|
|
2431
|
+
/**
|
|
2432
|
+
* Petition Decision number
|
|
2433
|
+
*/
|
|
2434
|
+
petitionDecisionRecordIdentifier: string;
|
|
2435
|
+
};
|
|
2436
|
+
query?: {
|
|
2437
|
+
/**
|
|
2438
|
+
* This is a true or false...yes to include petition decision documents in the response and no to omit the petition decision documents from the response
|
|
2439
|
+
*/
|
|
2440
|
+
includeDocuments?: boolean;
|
|
2441
|
+
};
|
|
2442
|
+
url: "/api/v1/petition/decisions/{petitionDecisionRecordIdentifier}";
|
|
2443
|
+
};
|
|
2444
|
+
type GetApiV1PetitionDecisionsByPetitionDecisionRecordIdentifierErrors = {
|
|
2445
|
+
/**
|
|
2446
|
+
* Bad Request
|
|
2447
|
+
*/
|
|
2448
|
+
400: Response400;
|
|
2449
|
+
/**
|
|
2450
|
+
* Forbidden
|
|
2451
|
+
*/
|
|
2452
|
+
403: Response403;
|
|
2453
|
+
/**
|
|
2454
|
+
* Not Found
|
|
2455
|
+
*/
|
|
2456
|
+
404: Response404;
|
|
2457
|
+
/**
|
|
2458
|
+
* Internal Server Error
|
|
2459
|
+
*/
|
|
2460
|
+
500: Response500;
|
|
2461
|
+
};
|
|
2462
|
+
type GetApiV1PetitionDecisionsByPetitionDecisionRecordIdentifierError = GetApiV1PetitionDecisionsByPetitionDecisionRecordIdentifierErrors[keyof GetApiV1PetitionDecisionsByPetitionDecisionRecordIdentifierErrors];
|
|
2463
|
+
type GetApiV1PetitionDecisionsByPetitionDecisionRecordIdentifierResponses = {
|
|
2464
|
+
/**
|
|
2465
|
+
* OK
|
|
2466
|
+
*/
|
|
2467
|
+
200: PetitionDecisionIdentifierResponseBag;
|
|
2468
|
+
};
|
|
2469
|
+
type GetApiV1PetitionDecisionsByPetitionDecisionRecordIdentifierResponse = GetApiV1PetitionDecisionsByPetitionDecisionRecordIdentifierResponses[keyof GetApiV1PetitionDecisionsByPetitionDecisionRecordIdentifierResponses];
|
|
2470
|
+
type GetApiV1PatentTrialsProceedingsSearchData = {
|
|
2471
|
+
body?: never;
|
|
2472
|
+
path?: never;
|
|
2473
|
+
query?: {
|
|
2474
|
+
/**
|
|
2475
|
+
* A search query string which accepts boolean operators (AND, OR, NOT), wildcards (*), and exact phrases ("").
|
|
2476
|
+
*/
|
|
2477
|
+
q?: string;
|
|
2478
|
+
/**
|
|
2479
|
+
* Field to be sorted followed by sort order
|
|
2480
|
+
*/
|
|
2481
|
+
sort?: string;
|
|
2482
|
+
/**
|
|
2483
|
+
* Position in the dataset of a particular record
|
|
2484
|
+
*/
|
|
2485
|
+
offset?: number;
|
|
2486
|
+
/**
|
|
2487
|
+
* Limit the number of results returned
|
|
2488
|
+
*/
|
|
2489
|
+
limit?: number;
|
|
2490
|
+
/**
|
|
2491
|
+
* List of fields names to be faceted upon separated by comma (<b>,</b>)
|
|
2492
|
+
*/
|
|
2493
|
+
facets?: string;
|
|
2494
|
+
/**
|
|
2495
|
+
* Limits the response by specifying which fields from dataset should be included.
|
|
2496
|
+
*/
|
|
2497
|
+
fields?: string;
|
|
2498
|
+
/**
|
|
2499
|
+
* Filter data by supplying filter parameter. Provide field name and its value.
|
|
2500
|
+
*/
|
|
2501
|
+
filters?: string;
|
|
2502
|
+
/**
|
|
2503
|
+
* Filter the data by supplying range of values. Applicable for number and date type fields.
|
|
2504
|
+
*/
|
|
2505
|
+
rangeFilters?: string;
|
|
2506
|
+
};
|
|
2507
|
+
url: "/api/v1/patent/trials/proceedings/search";
|
|
2508
|
+
};
|
|
2509
|
+
type GetApiV1PatentTrialsProceedingsSearchErrors = {
|
|
2510
|
+
/**
|
|
2511
|
+
* Bad Request
|
|
2512
|
+
*/
|
|
2513
|
+
400: {
|
|
2514
|
+
code?: unknown;
|
|
2515
|
+
error?: unknown;
|
|
2516
|
+
errorDetails?: unknown;
|
|
2517
|
+
requestIdentifier?: unknown;
|
|
2518
|
+
};
|
|
2519
|
+
/**
|
|
2520
|
+
* Forbidden
|
|
2521
|
+
*/
|
|
2522
|
+
403: {
|
|
2523
|
+
code?: string;
|
|
2524
|
+
error?: string;
|
|
2525
|
+
};
|
|
2526
|
+
/**
|
|
2527
|
+
* Not Found
|
|
2528
|
+
*/
|
|
2529
|
+
404: {
|
|
2530
|
+
code?: string;
|
|
2531
|
+
error?: string;
|
|
2532
|
+
errorDetails?: string;
|
|
2533
|
+
requestIdentifier?: string;
|
|
2534
|
+
};
|
|
2535
|
+
/**
|
|
2536
|
+
* Status413
|
|
2537
|
+
*/
|
|
2538
|
+
413: Status413;
|
|
2539
|
+
/**
|
|
2540
|
+
* Internal Error
|
|
2541
|
+
*/
|
|
2542
|
+
500: {
|
|
2543
|
+
code?: string;
|
|
2544
|
+
error?: string;
|
|
2545
|
+
errorDetails?: string;
|
|
2546
|
+
requestIdentifier?: string;
|
|
2547
|
+
};
|
|
2548
|
+
};
|
|
2549
|
+
type GetApiV1PatentTrialsProceedingsSearchError = GetApiV1PatentTrialsProceedingsSearchErrors[keyof GetApiV1PatentTrialsProceedingsSearchErrors];
|
|
2550
|
+
type GetApiV1PatentTrialsProceedingsSearchResponses = {
|
|
2551
|
+
/**
|
|
2552
|
+
* OK
|
|
2553
|
+
*/
|
|
2554
|
+
200: ProceedingDataResponse;
|
|
2555
|
+
};
|
|
2556
|
+
type GetApiV1PatentTrialsProceedingsSearchResponse = GetApiV1PatentTrialsProceedingsSearchResponses[keyof GetApiV1PatentTrialsProceedingsSearchResponses];
|
|
2557
|
+
type PostApiV1PatentTrialsProceedingsSearchData = {
|
|
2558
|
+
body: SearchRequest;
|
|
2559
|
+
path?: never;
|
|
2560
|
+
query?: never;
|
|
2561
|
+
url: "/api/v1/patent/trials/proceedings/search";
|
|
2562
|
+
};
|
|
2563
|
+
type PostApiV1PatentTrialsProceedingsSearchErrors = {
|
|
2564
|
+
/**
|
|
2565
|
+
* Bad Request
|
|
2566
|
+
*/
|
|
2567
|
+
400: {
|
|
2568
|
+
code?: unknown;
|
|
2569
|
+
error?: unknown;
|
|
2570
|
+
errorDetails?: unknown;
|
|
2571
|
+
requestIdentifier?: unknown;
|
|
2572
|
+
};
|
|
2573
|
+
/**
|
|
2574
|
+
* Forbidden
|
|
2575
|
+
*/
|
|
2576
|
+
403: {
|
|
2577
|
+
code?: string;
|
|
2578
|
+
error?: string;
|
|
2579
|
+
};
|
|
2580
|
+
/**
|
|
2581
|
+
* Not Found
|
|
2582
|
+
*/
|
|
2583
|
+
404: {
|
|
2584
|
+
code?: string;
|
|
2585
|
+
error?: string;
|
|
2586
|
+
errorDetails?: string;
|
|
2587
|
+
requestIdentifier?: string;
|
|
2588
|
+
};
|
|
2589
|
+
/**
|
|
2590
|
+
* Status413
|
|
2591
|
+
*/
|
|
2592
|
+
413: Status413;
|
|
2593
|
+
/**
|
|
2594
|
+
* Internal Error
|
|
2595
|
+
*/
|
|
2596
|
+
500: {
|
|
2597
|
+
code?: string;
|
|
2598
|
+
error?: string;
|
|
2599
|
+
errorDetails?: string;
|
|
2600
|
+
requestIdentifier?: string;
|
|
2601
|
+
};
|
|
2602
|
+
};
|
|
2603
|
+
type PostApiV1PatentTrialsProceedingsSearchError = PostApiV1PatentTrialsProceedingsSearchErrors[keyof PostApiV1PatentTrialsProceedingsSearchErrors];
|
|
2604
|
+
type PostApiV1PatentTrialsProceedingsSearchResponses = {
|
|
2605
|
+
/**
|
|
2606
|
+
* OK
|
|
2607
|
+
*/
|
|
2608
|
+
200: ProceedingDataResponse;
|
|
2609
|
+
};
|
|
2610
|
+
type PostApiV1PatentTrialsProceedingsSearchResponse = PostApiV1PatentTrialsProceedingsSearchResponses[keyof PostApiV1PatentTrialsProceedingsSearchResponses];
|
|
2611
|
+
type GetApiV1PatentTrialsProceedingsSearchDownloadData = {
|
|
2612
|
+
body?: never;
|
|
2613
|
+
path?: never;
|
|
2614
|
+
query?: {
|
|
2615
|
+
/**
|
|
2616
|
+
* A search query string which accepts boolean operators (AND, OR, NOT), wildcards (*), and exact phrases ("").
|
|
2617
|
+
*/
|
|
2618
|
+
q?: string;
|
|
2619
|
+
/**
|
|
2620
|
+
* Field to be sorted followed by sort order
|
|
2621
|
+
*/
|
|
2622
|
+
sort?: string;
|
|
2623
|
+
/**
|
|
2624
|
+
* Position in the dataset of a particular record
|
|
2625
|
+
*/
|
|
2626
|
+
offset?: number;
|
|
2627
|
+
/**
|
|
2628
|
+
* Limit the number of results returned
|
|
2629
|
+
*/
|
|
2630
|
+
limit?: number;
|
|
2631
|
+
/**
|
|
2632
|
+
* List of fields names to be faceted upon separated by comma (<b>,</b>)
|
|
2633
|
+
*/
|
|
2634
|
+
facets?: string;
|
|
2635
|
+
/**
|
|
2636
|
+
* Limits the response by specifying which fields from dataset should be included.
|
|
2637
|
+
*/
|
|
2638
|
+
fields?: string;
|
|
2639
|
+
/**
|
|
2640
|
+
* Filter data by supplying filter parameter. Provide field name and its value.
|
|
2641
|
+
*/
|
|
2642
|
+
filters?: string;
|
|
2643
|
+
/**
|
|
2644
|
+
* Filter the data by supplying range of values. Applicable for number and date type fields.
|
|
2645
|
+
*/
|
|
2646
|
+
rangeFilters?: string;
|
|
2647
|
+
/**
|
|
2648
|
+
* Download Format
|
|
2649
|
+
*/
|
|
2650
|
+
format?: string;
|
|
2651
|
+
};
|
|
2652
|
+
url: "/api/v1/patent/trials/proceedings/search/download";
|
|
2653
|
+
};
|
|
2654
|
+
type GetApiV1PatentTrialsProceedingsSearchDownloadErrors = {
|
|
2655
|
+
/**
|
|
2656
|
+
* Bad Request
|
|
2657
|
+
*/
|
|
2658
|
+
400: {
|
|
2659
|
+
code?: unknown;
|
|
2660
|
+
error?: unknown;
|
|
2661
|
+
errorDetails?: unknown;
|
|
2662
|
+
requestIdentifier?: unknown;
|
|
2663
|
+
};
|
|
2664
|
+
/**
|
|
2665
|
+
* Forbidden
|
|
2666
|
+
*/
|
|
2667
|
+
403: {
|
|
2668
|
+
code?: string;
|
|
2669
|
+
error?: string;
|
|
2670
|
+
};
|
|
2671
|
+
/**
|
|
2672
|
+
* Not Found
|
|
2673
|
+
*/
|
|
2674
|
+
404: {
|
|
2675
|
+
code?: string;
|
|
2676
|
+
error?: string;
|
|
2677
|
+
errorDetails?: string;
|
|
2678
|
+
requestIdentifier?: string;
|
|
2679
|
+
};
|
|
2680
|
+
/**
|
|
2681
|
+
* Status413
|
|
2682
|
+
*/
|
|
2683
|
+
413: Status413;
|
|
2684
|
+
/**
|
|
2685
|
+
* Internal Error
|
|
2686
|
+
*/
|
|
2687
|
+
500: {
|
|
2688
|
+
code?: string;
|
|
2689
|
+
error?: string;
|
|
2690
|
+
errorDetails?: string;
|
|
2691
|
+
requestIdentifier?: string;
|
|
2692
|
+
};
|
|
2693
|
+
};
|
|
2694
|
+
type GetApiV1PatentTrialsProceedingsSearchDownloadError = GetApiV1PatentTrialsProceedingsSearchDownloadErrors[keyof GetApiV1PatentTrialsProceedingsSearchDownloadErrors];
|
|
2695
|
+
type GetApiV1PatentTrialsProceedingsSearchDownloadResponses = {
|
|
2696
|
+
/**
|
|
2697
|
+
* OK
|
|
2698
|
+
*/
|
|
2699
|
+
200: ProceedingDataResponse;
|
|
2700
|
+
};
|
|
2701
|
+
type GetApiV1PatentTrialsProceedingsSearchDownloadResponse = GetApiV1PatentTrialsProceedingsSearchDownloadResponses[keyof GetApiV1PatentTrialsProceedingsSearchDownloadResponses];
|
|
2702
|
+
type PostApiV1PatentTrialsProceedingsSearchDownloadData = {
|
|
2703
|
+
/**
|
|
2704
|
+
* Proceeding download request. Same structure as PatentDownloadRequest.
|
|
2705
|
+
*/
|
|
2706
|
+
body: DownloadRequest;
|
|
2707
|
+
path?: never;
|
|
2708
|
+
query?: never;
|
|
2709
|
+
url: "/api/v1/patent/trials/proceedings/search/download";
|
|
2710
|
+
};
|
|
2711
|
+
type PostApiV1PatentTrialsProceedingsSearchDownloadErrors = {
|
|
2712
|
+
/**
|
|
2713
|
+
* Bad Request
|
|
2714
|
+
*/
|
|
2715
|
+
400: {
|
|
2716
|
+
code?: unknown;
|
|
2717
|
+
error?: unknown;
|
|
2718
|
+
errorDetails?: unknown;
|
|
2719
|
+
requestIdentifier?: unknown;
|
|
2720
|
+
};
|
|
2721
|
+
/**
|
|
2722
|
+
* Forbidden
|
|
2723
|
+
*/
|
|
2724
|
+
403: {
|
|
2725
|
+
code?: string;
|
|
2726
|
+
error?: string;
|
|
2727
|
+
};
|
|
2728
|
+
/**
|
|
2729
|
+
* Not Found
|
|
2730
|
+
*/
|
|
2731
|
+
404: {
|
|
2732
|
+
code?: string;
|
|
2733
|
+
error?: string;
|
|
2734
|
+
errorDetails?: string;
|
|
2735
|
+
requestIdentifier?: string;
|
|
2736
|
+
};
|
|
2737
|
+
/**
|
|
2738
|
+
* Status413
|
|
2739
|
+
*/
|
|
2740
|
+
413: Status413;
|
|
2741
|
+
/**
|
|
2742
|
+
* Internal Error
|
|
2743
|
+
*/
|
|
2744
|
+
500: {
|
|
2745
|
+
code?: string;
|
|
2746
|
+
error?: string;
|
|
2747
|
+
errorDetails?: string;
|
|
2748
|
+
requestIdentifier?: string;
|
|
2749
|
+
};
|
|
2750
|
+
};
|
|
2751
|
+
type PostApiV1PatentTrialsProceedingsSearchDownloadError = PostApiV1PatentTrialsProceedingsSearchDownloadErrors[keyof PostApiV1PatentTrialsProceedingsSearchDownloadErrors];
|
|
2752
|
+
type PostApiV1PatentTrialsProceedingsSearchDownloadResponses = {
|
|
2753
|
+
/**
|
|
2754
|
+
* OK
|
|
2755
|
+
*/
|
|
2756
|
+
200: ProceedingDataResponse;
|
|
2757
|
+
};
|
|
2758
|
+
type PostApiV1PatentTrialsProceedingsSearchDownloadResponse = PostApiV1PatentTrialsProceedingsSearchDownloadResponses[keyof PostApiV1PatentTrialsProceedingsSearchDownloadResponses];
|
|
2759
|
+
type GetApiV1PatentTrialsProceedingsByTrialNumberData = {
|
|
2760
|
+
body?: never;
|
|
2761
|
+
path: {
|
|
2762
|
+
/**
|
|
2763
|
+
* trialNumber number.
|
|
2764
|
+
*/
|
|
2765
|
+
trialNumber: string;
|
|
2766
|
+
};
|
|
2767
|
+
query?: never;
|
|
2768
|
+
url: "/api/v1/patent/trials/proceedings/{trialNumber}";
|
|
2769
|
+
};
|
|
2770
|
+
type GetApiV1PatentTrialsProceedingsByTrialNumberErrors = {
|
|
2771
|
+
/**
|
|
2772
|
+
* Bad Request
|
|
2773
|
+
*/
|
|
2774
|
+
400: {
|
|
2775
|
+
code?: unknown;
|
|
2776
|
+
error?: unknown;
|
|
2777
|
+
errorDetails?: unknown;
|
|
2778
|
+
requestIdentifier?: unknown;
|
|
2779
|
+
};
|
|
2780
|
+
/**
|
|
2781
|
+
* Forbidden
|
|
2782
|
+
*/
|
|
2783
|
+
403: {
|
|
2784
|
+
code?: string;
|
|
2785
|
+
error?: string;
|
|
2786
|
+
};
|
|
2787
|
+
/**
|
|
2788
|
+
* Not Found
|
|
2789
|
+
*/
|
|
2790
|
+
404: {
|
|
2791
|
+
code?: string;
|
|
2792
|
+
error?: string;
|
|
2793
|
+
errorDetails?: string;
|
|
2794
|
+
requestIdentifier?: string;
|
|
2795
|
+
};
|
|
2796
|
+
/**
|
|
2797
|
+
* Status413
|
|
2798
|
+
*/
|
|
2799
|
+
413: Status413;
|
|
2800
|
+
/**
|
|
2801
|
+
* Internal Error
|
|
2802
|
+
*/
|
|
2803
|
+
500: {
|
|
2804
|
+
code?: string;
|
|
2805
|
+
error?: string;
|
|
2806
|
+
errorDetails?: string;
|
|
2807
|
+
requestIdentifier?: string;
|
|
2808
|
+
};
|
|
2809
|
+
};
|
|
2810
|
+
type GetApiV1PatentTrialsProceedingsByTrialNumberError = GetApiV1PatentTrialsProceedingsByTrialNumberErrors[keyof GetApiV1PatentTrialsProceedingsByTrialNumberErrors];
|
|
2811
|
+
type GetApiV1PatentTrialsProceedingsByTrialNumberResponses = {
|
|
2812
|
+
/**
|
|
2813
|
+
* OK
|
|
2814
|
+
*/
|
|
2815
|
+
200: ProceedingDataResponse;
|
|
2816
|
+
};
|
|
2817
|
+
type GetApiV1PatentTrialsProceedingsByTrialNumberResponse = GetApiV1PatentTrialsProceedingsByTrialNumberResponses[keyof GetApiV1PatentTrialsProceedingsByTrialNumberResponses];
|
|
2818
|
+
type GetApiV1PatentTrialsDecisionsSearchData = {
|
|
2819
|
+
body?: never;
|
|
2820
|
+
path?: never;
|
|
2821
|
+
query?: {
|
|
2822
|
+
/**
|
|
2823
|
+
* A search query string which accepts boolean operators (AND, OR, NOT), wildcards (*), and exact phrases ("").
|
|
2824
|
+
*/
|
|
2825
|
+
q?: string;
|
|
2826
|
+
/**
|
|
2827
|
+
* Field to be sorted followed by sort order
|
|
2828
|
+
*/
|
|
2829
|
+
sort?: string;
|
|
2830
|
+
/**
|
|
2831
|
+
* Position in the dataset of a particular record
|
|
2832
|
+
*/
|
|
2833
|
+
offset?: number;
|
|
2834
|
+
/**
|
|
2835
|
+
* Limit the number of results returned
|
|
2836
|
+
*/
|
|
2837
|
+
limit?: number;
|
|
2838
|
+
/**
|
|
2839
|
+
* List of fields names to be faceted upon separated by comma (<b>,</b>)
|
|
2840
|
+
*/
|
|
2841
|
+
facets?: string;
|
|
2842
|
+
/**
|
|
2843
|
+
* Limits the response by specifying which fields from dataset should be included.
|
|
2844
|
+
*/
|
|
2845
|
+
fields?: string;
|
|
2846
|
+
/**
|
|
2847
|
+
* Filter data by supplying filter parameter. Provide field name and its value.
|
|
2848
|
+
*/
|
|
2849
|
+
filters?: string;
|
|
2850
|
+
/**
|
|
2851
|
+
* Filter the data by supplying range of values. Applicable for number and date type fields.
|
|
2852
|
+
*/
|
|
2853
|
+
rangeFilters?: string;
|
|
2854
|
+
};
|
|
2855
|
+
url: "/api/v1/patent/trials/decisions/search";
|
|
2856
|
+
};
|
|
2857
|
+
type GetApiV1PatentTrialsDecisionsSearchErrors = {
|
|
2858
|
+
/**
|
|
2859
|
+
* Bad Request
|
|
2860
|
+
*/
|
|
2861
|
+
400: {
|
|
2862
|
+
code?: unknown;
|
|
2863
|
+
error?: unknown;
|
|
2864
|
+
errorDetails?: unknown;
|
|
2865
|
+
requestIdentifier?: unknown;
|
|
2866
|
+
};
|
|
2867
|
+
/**
|
|
2868
|
+
* Forbidden
|
|
2869
|
+
*/
|
|
2870
|
+
403: {
|
|
2871
|
+
code?: string;
|
|
2872
|
+
error?: string;
|
|
2873
|
+
};
|
|
2874
|
+
/**
|
|
2875
|
+
* Not Found
|
|
2876
|
+
*/
|
|
2877
|
+
404: {
|
|
2878
|
+
code?: string;
|
|
2879
|
+
error?: string;
|
|
2880
|
+
errorDetails?: string;
|
|
2881
|
+
requestIdentifier?: string;
|
|
2882
|
+
};
|
|
2883
|
+
/**
|
|
2884
|
+
* Status413
|
|
2885
|
+
*/
|
|
2886
|
+
413: Status413;
|
|
2887
|
+
/**
|
|
2888
|
+
* Internal Error
|
|
2889
|
+
*/
|
|
2890
|
+
500: {
|
|
2891
|
+
code?: string;
|
|
2892
|
+
error?: string;
|
|
2893
|
+
errorDetails?: string;
|
|
2894
|
+
requestIdentifier?: string;
|
|
2895
|
+
};
|
|
2896
|
+
};
|
|
2897
|
+
type GetApiV1PatentTrialsDecisionsSearchError = GetApiV1PatentTrialsDecisionsSearchErrors[keyof GetApiV1PatentTrialsDecisionsSearchErrors];
|
|
2898
|
+
type GetApiV1PatentTrialsDecisionsSearchResponses = {
|
|
2899
|
+
/**
|
|
2900
|
+
* OK
|
|
2901
|
+
*/
|
|
2902
|
+
200: DecisionDataResponse;
|
|
2903
|
+
};
|
|
2904
|
+
type GetApiV1PatentTrialsDecisionsSearchResponse = GetApiV1PatentTrialsDecisionsSearchResponses[keyof GetApiV1PatentTrialsDecisionsSearchResponses];
|
|
2905
|
+
type PostApiV1PatentTrialsDecisionsSearchData = {
|
|
2906
|
+
body: PatentSearchRequest;
|
|
2907
|
+
path?: never;
|
|
2908
|
+
query?: never;
|
|
2909
|
+
url: "/api/v1/patent/trials/decisions/search";
|
|
2910
|
+
};
|
|
2911
|
+
type PostApiV1PatentTrialsDecisionsSearchErrors = {
|
|
2912
|
+
/**
|
|
2913
|
+
* Bad Request
|
|
2914
|
+
*/
|
|
2915
|
+
400: {
|
|
2916
|
+
code?: unknown;
|
|
2917
|
+
error?: unknown;
|
|
2918
|
+
errorDetails?: unknown;
|
|
2919
|
+
requestIdentifier?: unknown;
|
|
2920
|
+
};
|
|
2921
|
+
/**
|
|
2922
|
+
* Forbidden
|
|
2923
|
+
*/
|
|
2924
|
+
403: {
|
|
2925
|
+
code?: string;
|
|
2926
|
+
error?: string;
|
|
2927
|
+
};
|
|
2928
|
+
/**
|
|
2929
|
+
* Not Found
|
|
2930
|
+
*/
|
|
2931
|
+
404: {
|
|
2932
|
+
code?: string;
|
|
2933
|
+
error?: string;
|
|
2934
|
+
errorDetails?: string;
|
|
2935
|
+
requestIdentifier?: string;
|
|
2936
|
+
};
|
|
2937
|
+
/**
|
|
2938
|
+
* Status413
|
|
2939
|
+
*/
|
|
2940
|
+
413: Status413;
|
|
2941
|
+
/**
|
|
2942
|
+
* Internal Error
|
|
2943
|
+
*/
|
|
2944
|
+
500: {
|
|
2945
|
+
code?: string;
|
|
2946
|
+
error?: string;
|
|
2947
|
+
errorDetails?: string;
|
|
2948
|
+
requestIdentifier?: string;
|
|
2949
|
+
};
|
|
2950
|
+
};
|
|
2951
|
+
type PostApiV1PatentTrialsDecisionsSearchError = PostApiV1PatentTrialsDecisionsSearchErrors[keyof PostApiV1PatentTrialsDecisionsSearchErrors];
|
|
2952
|
+
type PostApiV1PatentTrialsDecisionsSearchResponses = {
|
|
2953
|
+
/**
|
|
2954
|
+
* OK
|
|
2955
|
+
*/
|
|
2956
|
+
200: DecisionDataResponse;
|
|
2957
|
+
};
|
|
2958
|
+
type PostApiV1PatentTrialsDecisionsSearchResponse = PostApiV1PatentTrialsDecisionsSearchResponses[keyof PostApiV1PatentTrialsDecisionsSearchResponses];
|
|
2959
|
+
type GetApiV1PatentTrialsDecisionsSearchDownloadData = {
|
|
2960
|
+
body?: never;
|
|
2961
|
+
path?: never;
|
|
2962
|
+
query?: {
|
|
2963
|
+
/**
|
|
2964
|
+
* A search query string which accepts boolean operators (AND, OR, NOT), wildcards (*), and exact phrases ("").
|
|
2965
|
+
*/
|
|
2966
|
+
q?: string;
|
|
2967
|
+
/**
|
|
2968
|
+
* Field to be sorted followed by sort order
|
|
2969
|
+
*/
|
|
2970
|
+
sort?: string;
|
|
2971
|
+
/**
|
|
2972
|
+
* Position in the dataset of a particular record
|
|
2973
|
+
*/
|
|
2974
|
+
offset?: number;
|
|
2975
|
+
/**
|
|
2976
|
+
* Limit the number of results returned
|
|
2977
|
+
*/
|
|
2978
|
+
limit?: number;
|
|
2979
|
+
/**
|
|
2980
|
+
* List of fields names to be faceted upon separated by comma (<b>,</b>)
|
|
2981
|
+
*/
|
|
2982
|
+
facets?: string;
|
|
2983
|
+
/**
|
|
2984
|
+
* Limits the response by specifying which fields from dataset should be included.
|
|
2985
|
+
*/
|
|
2986
|
+
fields?: string;
|
|
2987
|
+
/**
|
|
2988
|
+
* Filter data by supplying filter parameter. Provide field name and its value.
|
|
2989
|
+
*/
|
|
2990
|
+
filters?: string;
|
|
2991
|
+
/**
|
|
2992
|
+
* Filter the data by supplying range of values. Applicable for number and date type fields.
|
|
2993
|
+
*/
|
|
2994
|
+
rangeFilters?: string;
|
|
2995
|
+
/**
|
|
2996
|
+
* Download Format
|
|
2997
|
+
*/
|
|
2998
|
+
format?: string;
|
|
2999
|
+
};
|
|
3000
|
+
url: "/api/v1/patent/trials/decisions/search/download";
|
|
3001
|
+
};
|
|
3002
|
+
type GetApiV1PatentTrialsDecisionsSearchDownloadErrors = {
|
|
3003
|
+
/**
|
|
3004
|
+
* Bad Request
|
|
3005
|
+
*/
|
|
3006
|
+
400: {
|
|
3007
|
+
code?: unknown;
|
|
3008
|
+
error?: unknown;
|
|
3009
|
+
errorDetails?: unknown;
|
|
3010
|
+
requestIdentifier?: unknown;
|
|
3011
|
+
};
|
|
3012
|
+
/**
|
|
3013
|
+
* Forbidden
|
|
3014
|
+
*/
|
|
3015
|
+
403: {
|
|
3016
|
+
code?: string;
|
|
3017
|
+
error?: string;
|
|
3018
|
+
};
|
|
3019
|
+
/**
|
|
3020
|
+
* Not Found
|
|
3021
|
+
*/
|
|
3022
|
+
404: {
|
|
3023
|
+
code?: string;
|
|
3024
|
+
error?: string;
|
|
3025
|
+
errorDetails?: string;
|
|
3026
|
+
requestIdentifier?: string;
|
|
3027
|
+
};
|
|
3028
|
+
/**
|
|
3029
|
+
* Status413
|
|
3030
|
+
*/
|
|
3031
|
+
413: Status413;
|
|
3032
|
+
/**
|
|
3033
|
+
* Internal Error
|
|
3034
|
+
*/
|
|
3035
|
+
500: {
|
|
3036
|
+
code?: string;
|
|
3037
|
+
error?: string;
|
|
3038
|
+
errorDetails?: string;
|
|
3039
|
+
requestIdentifier?: string;
|
|
3040
|
+
};
|
|
3041
|
+
};
|
|
3042
|
+
type GetApiV1PatentTrialsDecisionsSearchDownloadError = GetApiV1PatentTrialsDecisionsSearchDownloadErrors[keyof GetApiV1PatentTrialsDecisionsSearchDownloadErrors];
|
|
3043
|
+
type GetApiV1PatentTrialsDecisionsSearchDownloadResponses = {
|
|
3044
|
+
/**
|
|
3045
|
+
* OK
|
|
3046
|
+
*/
|
|
3047
|
+
200: DecisionDataResponse;
|
|
3048
|
+
};
|
|
3049
|
+
type GetApiV1PatentTrialsDecisionsSearchDownloadResponse = GetApiV1PatentTrialsDecisionsSearchDownloadResponses[keyof GetApiV1PatentTrialsDecisionsSearchDownloadResponses];
|
|
3050
|
+
type PostApiV1PatentTrialsDecisionsSearchDownloadData = {
|
|
3051
|
+
/**
|
|
3052
|
+
* Download request. Same structure as PatentDownloadRequest.
|
|
3053
|
+
*/
|
|
3054
|
+
body: DownloadRequest;
|
|
3055
|
+
path?: never;
|
|
3056
|
+
query?: never;
|
|
3057
|
+
url: "/api/v1/patent/trials/decisions/search/download";
|
|
3058
|
+
};
|
|
3059
|
+
type PostApiV1PatentTrialsDecisionsSearchDownloadErrors = {
|
|
3060
|
+
/**
|
|
3061
|
+
* Bad Request
|
|
3062
|
+
*/
|
|
3063
|
+
400: {
|
|
3064
|
+
code?: unknown;
|
|
3065
|
+
error?: unknown;
|
|
3066
|
+
errorDetails?: unknown;
|
|
3067
|
+
requestIdentifier?: unknown;
|
|
3068
|
+
};
|
|
3069
|
+
/**
|
|
3070
|
+
* Forbidden
|
|
3071
|
+
*/
|
|
3072
|
+
403: {
|
|
3073
|
+
code?: string;
|
|
3074
|
+
error?: string;
|
|
3075
|
+
};
|
|
3076
|
+
/**
|
|
3077
|
+
* Not Found
|
|
3078
|
+
*/
|
|
3079
|
+
404: {
|
|
3080
|
+
code?: string;
|
|
3081
|
+
error?: string;
|
|
3082
|
+
errorDetails?: string;
|
|
3083
|
+
requestIdentifier?: string;
|
|
3084
|
+
};
|
|
3085
|
+
/**
|
|
3086
|
+
* Status413
|
|
3087
|
+
*/
|
|
3088
|
+
413: Status413;
|
|
3089
|
+
/**
|
|
3090
|
+
* Internal Error
|
|
3091
|
+
*/
|
|
3092
|
+
500: {
|
|
3093
|
+
code?: string;
|
|
3094
|
+
error?: string;
|
|
3095
|
+
errorDetails?: string;
|
|
3096
|
+
requestIdentifier?: string;
|
|
3097
|
+
};
|
|
3098
|
+
};
|
|
3099
|
+
type PostApiV1PatentTrialsDecisionsSearchDownloadError = PostApiV1PatentTrialsDecisionsSearchDownloadErrors[keyof PostApiV1PatentTrialsDecisionsSearchDownloadErrors];
|
|
3100
|
+
type PostApiV1PatentTrialsDecisionsSearchDownloadResponses = {
|
|
3101
|
+
/**
|
|
3102
|
+
* OK
|
|
3103
|
+
*/
|
|
3104
|
+
200: DecisionDataResponse;
|
|
3105
|
+
};
|
|
3106
|
+
type PostApiV1PatentTrialsDecisionsSearchDownloadResponse = PostApiV1PatentTrialsDecisionsSearchDownloadResponses[keyof PostApiV1PatentTrialsDecisionsSearchDownloadResponses];
|
|
3107
|
+
type GetApiV1PatentTrialsDecisionsByDocumentIdentifierData = {
|
|
3108
|
+
body?: never;
|
|
3109
|
+
path: {
|
|
3110
|
+
documentIdentifier: string;
|
|
3111
|
+
};
|
|
3112
|
+
query?: never;
|
|
3113
|
+
url: "/api/v1/patent/trials/decisions/{documentIdentifier}";
|
|
3114
|
+
};
|
|
3115
|
+
type GetApiV1PatentTrialsDecisionsByDocumentIdentifierErrors = {
|
|
3116
|
+
/**
|
|
3117
|
+
* Bad Request
|
|
3118
|
+
*/
|
|
3119
|
+
400: {
|
|
3120
|
+
code?: unknown;
|
|
3121
|
+
error?: unknown;
|
|
3122
|
+
errorDetails?: unknown;
|
|
3123
|
+
requestIdentifier?: unknown;
|
|
3124
|
+
};
|
|
3125
|
+
/**
|
|
3126
|
+
* Forbidden
|
|
3127
|
+
*/
|
|
3128
|
+
403: {
|
|
3129
|
+
code?: string;
|
|
3130
|
+
error?: string;
|
|
3131
|
+
};
|
|
3132
|
+
/**
|
|
3133
|
+
* Not Found
|
|
3134
|
+
*/
|
|
3135
|
+
404: {
|
|
3136
|
+
code?: string;
|
|
3137
|
+
error?: string;
|
|
3138
|
+
errorDetails?: string;
|
|
3139
|
+
requestIdentifier?: string;
|
|
3140
|
+
};
|
|
3141
|
+
/**
|
|
3142
|
+
* Status413
|
|
3143
|
+
*/
|
|
3144
|
+
413: Status413;
|
|
3145
|
+
/**
|
|
3146
|
+
* Internal Error
|
|
3147
|
+
*/
|
|
3148
|
+
500: {
|
|
3149
|
+
code?: string;
|
|
3150
|
+
error?: string;
|
|
3151
|
+
errorDetails?: string;
|
|
3152
|
+
requestIdentifier?: string;
|
|
3153
|
+
};
|
|
3154
|
+
};
|
|
3155
|
+
type GetApiV1PatentTrialsDecisionsByDocumentIdentifierError = GetApiV1PatentTrialsDecisionsByDocumentIdentifierErrors[keyof GetApiV1PatentTrialsDecisionsByDocumentIdentifierErrors];
|
|
3156
|
+
type GetApiV1PatentTrialsDecisionsByDocumentIdentifierResponses = {
|
|
3157
|
+
/**
|
|
3158
|
+
* OK
|
|
3159
|
+
*/
|
|
3160
|
+
200: DecisionDataResponse;
|
|
3161
|
+
};
|
|
3162
|
+
type GetApiV1PatentTrialsDecisionsByDocumentIdentifierResponse = GetApiV1PatentTrialsDecisionsByDocumentIdentifierResponses[keyof GetApiV1PatentTrialsDecisionsByDocumentIdentifierResponses];
|
|
3163
|
+
type GetApiV1PatentTrialsByTrialNumberDecisionsData = {
|
|
3164
|
+
body?: never;
|
|
3165
|
+
path: {
|
|
3166
|
+
trialNumber: string;
|
|
3167
|
+
};
|
|
3168
|
+
query?: never;
|
|
3169
|
+
url: "/api/v1/patent/trials/{trialNumber}/decisions";
|
|
3170
|
+
};
|
|
3171
|
+
type GetApiV1PatentTrialsByTrialNumberDecisionsErrors = {
|
|
3172
|
+
/**
|
|
3173
|
+
* Bad Request
|
|
3174
|
+
*/
|
|
3175
|
+
400: {
|
|
3176
|
+
code?: unknown;
|
|
3177
|
+
error?: unknown;
|
|
3178
|
+
errorDetails?: unknown;
|
|
3179
|
+
requestIdentifier?: unknown;
|
|
3180
|
+
};
|
|
3181
|
+
/**
|
|
3182
|
+
* Forbidden
|
|
3183
|
+
*/
|
|
3184
|
+
403: {
|
|
3185
|
+
code?: string;
|
|
3186
|
+
error?: string;
|
|
3187
|
+
};
|
|
3188
|
+
/**
|
|
3189
|
+
* Not Found
|
|
3190
|
+
*/
|
|
3191
|
+
404: {
|
|
3192
|
+
code?: string;
|
|
3193
|
+
error?: string;
|
|
3194
|
+
errorDetails?: string;
|
|
3195
|
+
requestIdentifier?: string;
|
|
3196
|
+
};
|
|
3197
|
+
/**
|
|
3198
|
+
* Status413
|
|
3199
|
+
*/
|
|
3200
|
+
413: Status413;
|
|
3201
|
+
/**
|
|
3202
|
+
* Internal Error
|
|
3203
|
+
*/
|
|
3204
|
+
500: {
|
|
3205
|
+
code?: string;
|
|
3206
|
+
error?: string;
|
|
3207
|
+
errorDetails?: string;
|
|
3208
|
+
requestIdentifier?: string;
|
|
3209
|
+
};
|
|
3210
|
+
};
|
|
3211
|
+
type GetApiV1PatentTrialsByTrialNumberDecisionsError = GetApiV1PatentTrialsByTrialNumberDecisionsErrors[keyof GetApiV1PatentTrialsByTrialNumberDecisionsErrors];
|
|
3212
|
+
type GetApiV1PatentTrialsByTrialNumberDecisionsResponses = {
|
|
3213
|
+
/**
|
|
3214
|
+
* OK
|
|
3215
|
+
*/
|
|
3216
|
+
200: DecisionDataResponse;
|
|
3217
|
+
};
|
|
3218
|
+
type GetApiV1PatentTrialsByTrialNumberDecisionsResponse = GetApiV1PatentTrialsByTrialNumberDecisionsResponses[keyof GetApiV1PatentTrialsByTrialNumberDecisionsResponses];
|
|
3219
|
+
type GetApiV1PatentTrialsDocumentsSearchData = {
|
|
3220
|
+
body?: never;
|
|
3221
|
+
path?: never;
|
|
3222
|
+
query?: {
|
|
3223
|
+
/**
|
|
3224
|
+
* A search query string which accepts boolean operators (AND, OR, NOT), wildcards (*), and exact phrases ("").
|
|
3225
|
+
*/
|
|
3226
|
+
q?: string;
|
|
3227
|
+
/**
|
|
3228
|
+
* Field to be sorted followed by sort order
|
|
3229
|
+
*/
|
|
3230
|
+
sort?: string;
|
|
3231
|
+
/**
|
|
3232
|
+
* Position in the dataset of a particular record
|
|
3233
|
+
*/
|
|
3234
|
+
offset?: number;
|
|
3235
|
+
/**
|
|
3236
|
+
* Limit the number of results returned
|
|
3237
|
+
*/
|
|
3238
|
+
limit?: number;
|
|
3239
|
+
/**
|
|
3240
|
+
* List of fields names to be faceted upon separated by comma (<b>,</b>)
|
|
3241
|
+
*/
|
|
3242
|
+
facets?: string;
|
|
3243
|
+
/**
|
|
3244
|
+
* Limits the response by specifying which fields from dataset should be included.
|
|
3245
|
+
*/
|
|
3246
|
+
fields?: string;
|
|
3247
|
+
/**
|
|
3248
|
+
* Filter data by supplying filter parameter. Provide field name and its value.
|
|
3249
|
+
*/
|
|
3250
|
+
filters?: string;
|
|
3251
|
+
/**
|
|
3252
|
+
* Filter the data by supplying range of values. Applicable for number and date type fields.
|
|
3253
|
+
*/
|
|
3254
|
+
rangeFilters?: string;
|
|
3255
|
+
};
|
|
3256
|
+
url: "/api/v1/patent/trials/documents/search";
|
|
3257
|
+
};
|
|
3258
|
+
type GetApiV1PatentTrialsDocumentsSearchErrors = {
|
|
3259
|
+
/**
|
|
3260
|
+
* Bad Request
|
|
3261
|
+
*/
|
|
3262
|
+
400: {
|
|
3263
|
+
code?: unknown;
|
|
3264
|
+
error?: unknown;
|
|
3265
|
+
errorDetails?: unknown;
|
|
3266
|
+
requestIdentifier?: unknown;
|
|
3267
|
+
};
|
|
3268
|
+
/**
|
|
3269
|
+
* Forbidden
|
|
3270
|
+
*/
|
|
3271
|
+
403: {
|
|
3272
|
+
code?: string;
|
|
3273
|
+
error?: string;
|
|
3274
|
+
};
|
|
3275
|
+
/**
|
|
3276
|
+
* Not Found
|
|
3277
|
+
*/
|
|
3278
|
+
404: {
|
|
3279
|
+
code?: string;
|
|
3280
|
+
error?: string;
|
|
3281
|
+
errorDetails?: string;
|
|
3282
|
+
requestIdentifier?: string;
|
|
3283
|
+
};
|
|
3284
|
+
/**
|
|
3285
|
+
* Status413
|
|
3286
|
+
*/
|
|
3287
|
+
413: Status413;
|
|
3288
|
+
/**
|
|
3289
|
+
* Internal Error
|
|
3290
|
+
*/
|
|
3291
|
+
500: {
|
|
3292
|
+
code?: string;
|
|
3293
|
+
error?: string;
|
|
3294
|
+
errorDetails?: string;
|
|
3295
|
+
requestIdentifier?: string;
|
|
3296
|
+
};
|
|
3297
|
+
};
|
|
3298
|
+
type GetApiV1PatentTrialsDocumentsSearchError = GetApiV1PatentTrialsDocumentsSearchErrors[keyof GetApiV1PatentTrialsDocumentsSearchErrors];
|
|
3299
|
+
type GetApiV1PatentTrialsDocumentsSearchResponses = {
|
|
3300
|
+
/**
|
|
3301
|
+
* OK
|
|
3302
|
+
*/
|
|
3303
|
+
200: DocumentDataResponse;
|
|
3304
|
+
};
|
|
3305
|
+
type GetApiV1PatentTrialsDocumentsSearchResponse = GetApiV1PatentTrialsDocumentsSearchResponses[keyof GetApiV1PatentTrialsDocumentsSearchResponses];
|
|
3306
|
+
type PostApiV1PatentTrialsDocumentsSearchData = {
|
|
3307
|
+
body: SearchRequest;
|
|
3308
|
+
path?: never;
|
|
3309
|
+
query?: never;
|
|
3310
|
+
url: "/api/v1/patent/trials/documents/search";
|
|
3311
|
+
};
|
|
3312
|
+
type PostApiV1PatentTrialsDocumentsSearchErrors = {
|
|
3313
|
+
/**
|
|
3314
|
+
* Bad Request
|
|
3315
|
+
*/
|
|
3316
|
+
400: {
|
|
3317
|
+
code?: unknown;
|
|
3318
|
+
error?: unknown;
|
|
3319
|
+
errorDetails?: unknown;
|
|
3320
|
+
requestIdentifier?: unknown;
|
|
3321
|
+
};
|
|
3322
|
+
/**
|
|
3323
|
+
* Forbidden
|
|
3324
|
+
*/
|
|
3325
|
+
403: {
|
|
3326
|
+
code?: string;
|
|
3327
|
+
error?: string;
|
|
3328
|
+
};
|
|
3329
|
+
/**
|
|
3330
|
+
* Not Found
|
|
3331
|
+
*/
|
|
3332
|
+
404: {
|
|
3333
|
+
code?: string;
|
|
3334
|
+
error?: string;
|
|
3335
|
+
errorDetails?: string;
|
|
3336
|
+
requestIdentifier?: string;
|
|
3337
|
+
};
|
|
3338
|
+
/**
|
|
3339
|
+
* Status413
|
|
3340
|
+
*/
|
|
3341
|
+
413: Status413;
|
|
3342
|
+
/**
|
|
3343
|
+
* Internal Error
|
|
3344
|
+
*/
|
|
3345
|
+
500: {
|
|
3346
|
+
code?: string;
|
|
3347
|
+
error?: string;
|
|
3348
|
+
errorDetails?: string;
|
|
3349
|
+
requestIdentifier?: string;
|
|
3350
|
+
};
|
|
3351
|
+
};
|
|
3352
|
+
type PostApiV1PatentTrialsDocumentsSearchError = PostApiV1PatentTrialsDocumentsSearchErrors[keyof PostApiV1PatentTrialsDocumentsSearchErrors];
|
|
3353
|
+
type PostApiV1PatentTrialsDocumentsSearchResponses = {
|
|
3354
|
+
/**
|
|
3355
|
+
* OK
|
|
3356
|
+
*/
|
|
3357
|
+
200: DocumentDataResponse;
|
|
3358
|
+
};
|
|
3359
|
+
type PostApiV1PatentTrialsDocumentsSearchResponse = PostApiV1PatentTrialsDocumentsSearchResponses[keyof PostApiV1PatentTrialsDocumentsSearchResponses];
|
|
3360
|
+
type GetApiV1PatentTrialsDocumentsSearchDownloadData = {
|
|
3361
|
+
body?: never;
|
|
3362
|
+
path?: never;
|
|
3363
|
+
query?: {
|
|
3364
|
+
/**
|
|
3365
|
+
* A search query string which accepts boolean operators (AND, OR, NOT), wildcards (*), and exact phrases ("").
|
|
3366
|
+
*/
|
|
3367
|
+
q?: string;
|
|
3368
|
+
/**
|
|
3369
|
+
* Field to be sorted followed by sort order
|
|
3370
|
+
*/
|
|
3371
|
+
sort?: string;
|
|
3372
|
+
/**
|
|
3373
|
+
* Position in the dataset of a particular record
|
|
3374
|
+
*/
|
|
3375
|
+
offset?: number;
|
|
3376
|
+
/**
|
|
3377
|
+
* Limit the number of results returned
|
|
3378
|
+
*/
|
|
3379
|
+
limit?: number;
|
|
3380
|
+
/**
|
|
3381
|
+
* List of fields names to be faceted upon separated by comma (<b>,</b>)
|
|
3382
|
+
*/
|
|
3383
|
+
facets?: string;
|
|
3384
|
+
/**
|
|
3385
|
+
* Limits the response by specifying which fields from dataset should be included.
|
|
3386
|
+
*/
|
|
3387
|
+
fields?: string;
|
|
3388
|
+
/**
|
|
3389
|
+
* Filter data by supplying filter parameter. Provide field name and its value.
|
|
3390
|
+
*/
|
|
3391
|
+
filters?: string;
|
|
3392
|
+
/**
|
|
3393
|
+
* Filter the data by supplying range of values. Applicable for number and date type fields.
|
|
3394
|
+
*/
|
|
3395
|
+
rangeFilters?: string;
|
|
3396
|
+
/**
|
|
3397
|
+
* Download Format
|
|
3398
|
+
*/
|
|
3399
|
+
format?: string;
|
|
3400
|
+
};
|
|
3401
|
+
url: "/api/v1/patent/trials/documents/search/download";
|
|
3402
|
+
};
|
|
3403
|
+
type GetApiV1PatentTrialsDocumentsSearchDownloadErrors = {
|
|
3404
|
+
/**
|
|
3405
|
+
* Bad Request
|
|
3406
|
+
*/
|
|
3407
|
+
400: {
|
|
3408
|
+
code?: unknown;
|
|
3409
|
+
error?: unknown;
|
|
3410
|
+
errorDetails?: unknown;
|
|
3411
|
+
requestIdentifier?: unknown;
|
|
3412
|
+
};
|
|
3413
|
+
/**
|
|
3414
|
+
* Forbidden
|
|
3415
|
+
*/
|
|
3416
|
+
403: {
|
|
3417
|
+
code?: string;
|
|
3418
|
+
error?: string;
|
|
3419
|
+
};
|
|
3420
|
+
/**
|
|
3421
|
+
* Not Found
|
|
3422
|
+
*/
|
|
3423
|
+
404: {
|
|
3424
|
+
code?: string;
|
|
3425
|
+
error?: string;
|
|
3426
|
+
errorDetails?: string;
|
|
3427
|
+
requestIdentifier?: string;
|
|
3428
|
+
};
|
|
3429
|
+
/**
|
|
3430
|
+
* Status413
|
|
3431
|
+
*/
|
|
3432
|
+
413: Status413;
|
|
3433
|
+
/**
|
|
3434
|
+
* Internal Error
|
|
3435
|
+
*/
|
|
3436
|
+
500: {
|
|
3437
|
+
code?: string;
|
|
3438
|
+
error?: string;
|
|
3439
|
+
errorDetails?: string;
|
|
3440
|
+
requestIdentifier?: string;
|
|
3441
|
+
};
|
|
3442
|
+
};
|
|
3443
|
+
type GetApiV1PatentTrialsDocumentsSearchDownloadError = GetApiV1PatentTrialsDocumentsSearchDownloadErrors[keyof GetApiV1PatentTrialsDocumentsSearchDownloadErrors];
|
|
3444
|
+
type GetApiV1PatentTrialsDocumentsSearchDownloadResponses = {
|
|
3445
|
+
/**
|
|
3446
|
+
* OK
|
|
3447
|
+
*/
|
|
3448
|
+
200: DocumentDataResponse;
|
|
3449
|
+
};
|
|
3450
|
+
type GetApiV1PatentTrialsDocumentsSearchDownloadResponse = GetApiV1PatentTrialsDocumentsSearchDownloadResponses[keyof GetApiV1PatentTrialsDocumentsSearchDownloadResponses];
|
|
3451
|
+
type PostApiV1PatentTrialsDocumentsSearchDownloadData = {
|
|
3452
|
+
/**
|
|
3453
|
+
* Document download request. Same structure as PatentDownloadRequest.
|
|
3454
|
+
*/
|
|
3455
|
+
body: DownloadRequest;
|
|
3456
|
+
path?: never;
|
|
3457
|
+
query?: never;
|
|
3458
|
+
url: "/api/v1/patent/trials/documents/search/download";
|
|
3459
|
+
};
|
|
3460
|
+
type PostApiV1PatentTrialsDocumentsSearchDownloadErrors = {
|
|
3461
|
+
/**
|
|
3462
|
+
* Bad Request
|
|
3463
|
+
*/
|
|
3464
|
+
400: {
|
|
3465
|
+
code?: unknown;
|
|
3466
|
+
error?: unknown;
|
|
3467
|
+
errorDetails?: unknown;
|
|
3468
|
+
requestIdentifier?: unknown;
|
|
3469
|
+
};
|
|
3470
|
+
/**
|
|
3471
|
+
* Forbidden
|
|
3472
|
+
*/
|
|
3473
|
+
403: {
|
|
3474
|
+
code?: string;
|
|
3475
|
+
error?: string;
|
|
3476
|
+
};
|
|
3477
|
+
/**
|
|
3478
|
+
* Not Found
|
|
3479
|
+
*/
|
|
3480
|
+
404: {
|
|
3481
|
+
code?: string;
|
|
3482
|
+
error?: string;
|
|
3483
|
+
errorDetails?: string;
|
|
3484
|
+
requestIdentifier?: string;
|
|
3485
|
+
};
|
|
3486
|
+
/**
|
|
3487
|
+
* Status413
|
|
3488
|
+
*/
|
|
3489
|
+
413: Status413;
|
|
3490
|
+
/**
|
|
3491
|
+
* Internal Error
|
|
3492
|
+
*/
|
|
3493
|
+
500: {
|
|
3494
|
+
code?: string;
|
|
3495
|
+
error?: string;
|
|
3496
|
+
errorDetails?: string;
|
|
3497
|
+
requestIdentifier?: string;
|
|
3498
|
+
};
|
|
3499
|
+
};
|
|
3500
|
+
type PostApiV1PatentTrialsDocumentsSearchDownloadError = PostApiV1PatentTrialsDocumentsSearchDownloadErrors[keyof PostApiV1PatentTrialsDocumentsSearchDownloadErrors];
|
|
3501
|
+
type PostApiV1PatentTrialsDocumentsSearchDownloadResponses = {
|
|
3502
|
+
/**
|
|
3503
|
+
* OK
|
|
3504
|
+
*/
|
|
3505
|
+
200: DocumentDataResponse;
|
|
3506
|
+
};
|
|
3507
|
+
type PostApiV1PatentTrialsDocumentsSearchDownloadResponse = PostApiV1PatentTrialsDocumentsSearchDownloadResponses[keyof PostApiV1PatentTrialsDocumentsSearchDownloadResponses];
|
|
3508
|
+
type GetApiV1PatentTrialsDocumentsByDocumentIdentifierData = {
|
|
3509
|
+
body?: never;
|
|
3510
|
+
path: {
|
|
3511
|
+
/**
|
|
3512
|
+
* document Identifier.
|
|
3513
|
+
*/
|
|
3514
|
+
documentIdentifier: string;
|
|
3515
|
+
};
|
|
3516
|
+
query?: never;
|
|
3517
|
+
url: "/api/v1/patent/trials/documents/{documentIdentifier}";
|
|
3518
|
+
};
|
|
3519
|
+
type GetApiV1PatentTrialsDocumentsByDocumentIdentifierErrors = {
|
|
3520
|
+
/**
|
|
3521
|
+
* Bad Request
|
|
3522
|
+
*/
|
|
3523
|
+
400: {
|
|
3524
|
+
code?: unknown;
|
|
3525
|
+
error?: unknown;
|
|
3526
|
+
errorDetails?: unknown;
|
|
3527
|
+
requestIdentifier?: unknown;
|
|
3528
|
+
};
|
|
3529
|
+
/**
|
|
3530
|
+
* Forbidden
|
|
3531
|
+
*/
|
|
3532
|
+
403: {
|
|
3533
|
+
code?: string;
|
|
3534
|
+
error?: string;
|
|
3535
|
+
};
|
|
3536
|
+
/**
|
|
3537
|
+
* Not Found
|
|
3538
|
+
*/
|
|
3539
|
+
404: {
|
|
3540
|
+
code?: string;
|
|
3541
|
+
error?: string;
|
|
3542
|
+
errorDetails?: string;
|
|
3543
|
+
requestIdentifier?: string;
|
|
3544
|
+
};
|
|
3545
|
+
/**
|
|
3546
|
+
* Status413
|
|
3547
|
+
*/
|
|
3548
|
+
413: Status413;
|
|
3549
|
+
/**
|
|
3550
|
+
* Internal Error
|
|
3551
|
+
*/
|
|
3552
|
+
500: {
|
|
3553
|
+
code?: string;
|
|
3554
|
+
error?: string;
|
|
3555
|
+
errorDetails?: string;
|
|
3556
|
+
requestIdentifier?: string;
|
|
3557
|
+
};
|
|
3558
|
+
};
|
|
3559
|
+
type GetApiV1PatentTrialsDocumentsByDocumentIdentifierError = GetApiV1PatentTrialsDocumentsByDocumentIdentifierErrors[keyof GetApiV1PatentTrialsDocumentsByDocumentIdentifierErrors];
|
|
3560
|
+
type GetApiV1PatentTrialsDocumentsByDocumentIdentifierResponses = {
|
|
3561
|
+
/**
|
|
3562
|
+
* OK
|
|
3563
|
+
*/
|
|
3564
|
+
200: DocumentDataResponse;
|
|
3565
|
+
};
|
|
3566
|
+
type GetApiV1PatentTrialsDocumentsByDocumentIdentifierResponse = GetApiV1PatentTrialsDocumentsByDocumentIdentifierResponses[keyof GetApiV1PatentTrialsDocumentsByDocumentIdentifierResponses];
|
|
3567
|
+
type GetApiV1PatentTrialsByTrialNumberDocumentsData = {
|
|
3568
|
+
body?: never;
|
|
3569
|
+
path: {
|
|
3570
|
+
/**
|
|
3571
|
+
* trialNumber number.
|
|
3572
|
+
*/
|
|
3573
|
+
trialNumber: string;
|
|
3574
|
+
};
|
|
3575
|
+
query?: never;
|
|
3576
|
+
url: "/api/v1/patent/trials/{trialNumber}/documents";
|
|
3577
|
+
};
|
|
3578
|
+
type GetApiV1PatentTrialsByTrialNumberDocumentsErrors = {
|
|
3579
|
+
/**
|
|
3580
|
+
* Bad Request
|
|
3581
|
+
*/
|
|
3582
|
+
400: {
|
|
3583
|
+
code?: unknown;
|
|
3584
|
+
error?: unknown;
|
|
3585
|
+
errorDetails?: unknown;
|
|
3586
|
+
requestIdentifier?: unknown;
|
|
3587
|
+
};
|
|
3588
|
+
/**
|
|
3589
|
+
* Forbidden
|
|
3590
|
+
*/
|
|
3591
|
+
403: {
|
|
3592
|
+
code?: string;
|
|
3593
|
+
error?: string;
|
|
3594
|
+
};
|
|
3595
|
+
/**
|
|
3596
|
+
* Not Found
|
|
3597
|
+
*/
|
|
3598
|
+
404: {
|
|
3599
|
+
code?: string;
|
|
3600
|
+
error?: string;
|
|
3601
|
+
errorDetails?: string;
|
|
3602
|
+
requestIdentifier?: string;
|
|
3603
|
+
};
|
|
3604
|
+
/**
|
|
3605
|
+
* Status413
|
|
3606
|
+
*/
|
|
3607
|
+
413: Status413;
|
|
3608
|
+
/**
|
|
3609
|
+
* Internal Error
|
|
3610
|
+
*/
|
|
3611
|
+
500: {
|
|
3612
|
+
code?: string;
|
|
3613
|
+
error?: string;
|
|
3614
|
+
errorDetails?: string;
|
|
3615
|
+
requestIdentifier?: string;
|
|
3616
|
+
};
|
|
3617
|
+
};
|
|
3618
|
+
type GetApiV1PatentTrialsByTrialNumberDocumentsError = GetApiV1PatentTrialsByTrialNumberDocumentsErrors[keyof GetApiV1PatentTrialsByTrialNumberDocumentsErrors];
|
|
3619
|
+
type GetApiV1PatentTrialsByTrialNumberDocumentsResponses = {
|
|
3620
|
+
/**
|
|
3621
|
+
* OK
|
|
3622
|
+
*/
|
|
3623
|
+
200: DocumentDataResponse;
|
|
3624
|
+
};
|
|
3625
|
+
type GetApiV1PatentTrialsByTrialNumberDocumentsResponse = GetApiV1PatentTrialsByTrialNumberDocumentsResponses[keyof GetApiV1PatentTrialsByTrialNumberDocumentsResponses];
|
|
3626
|
+
type GetApiV1PatentAppealsDecisionsSearchData = {
|
|
3627
|
+
body?: never;
|
|
3628
|
+
path?: never;
|
|
3629
|
+
query?: {
|
|
3630
|
+
/**
|
|
3631
|
+
* A search query string which accepts boolean operators (AND, OR, NOT), wildcards (*), and exact phrases ("").
|
|
3632
|
+
*/
|
|
3633
|
+
q?: string;
|
|
3634
|
+
/**
|
|
3635
|
+
* Field to be sorted followed by sort order
|
|
3636
|
+
*/
|
|
3637
|
+
sort?: string;
|
|
3638
|
+
/**
|
|
3639
|
+
* Position in the dataset of a particular record
|
|
3640
|
+
*/
|
|
3641
|
+
offset?: number;
|
|
3642
|
+
/**
|
|
3643
|
+
* Limit the number of results returned
|
|
3644
|
+
*/
|
|
3645
|
+
limit?: number;
|
|
3646
|
+
/**
|
|
3647
|
+
* List of fields names to be faceted upon separated by comma (<b>,</b>)
|
|
3648
|
+
*/
|
|
3649
|
+
facets?: string;
|
|
3650
|
+
/**
|
|
3651
|
+
* Limits the response by specifying which fields from dataset should be included.
|
|
3652
|
+
*/
|
|
3653
|
+
fields?: string;
|
|
3654
|
+
/**
|
|
3655
|
+
* Filter data by supplying filter parameter. Provide field name and its value.
|
|
3656
|
+
*/
|
|
3657
|
+
filters?: string;
|
|
3658
|
+
/**
|
|
3659
|
+
* Filter the data by supplying range of values. Applicable for number and date type fields.
|
|
3660
|
+
*/
|
|
3661
|
+
rangeFilters?: string;
|
|
3662
|
+
};
|
|
3663
|
+
url: "/api/v1/patent/appeals/decisions/search";
|
|
3664
|
+
};
|
|
3665
|
+
type GetApiV1PatentAppealsDecisionsSearchErrors = {
|
|
3666
|
+
/**
|
|
3667
|
+
* Bad Request
|
|
3668
|
+
*/
|
|
3669
|
+
400: {
|
|
3670
|
+
code?: unknown;
|
|
3671
|
+
error?: unknown;
|
|
3672
|
+
errorDetails?: unknown;
|
|
3673
|
+
requestIdentifier?: unknown;
|
|
3674
|
+
};
|
|
3675
|
+
/**
|
|
3676
|
+
* Forbidden
|
|
3677
|
+
*/
|
|
3678
|
+
403: {
|
|
3679
|
+
code?: string;
|
|
3680
|
+
error?: string;
|
|
3681
|
+
};
|
|
3682
|
+
/**
|
|
3683
|
+
* Not Found
|
|
3684
|
+
*/
|
|
3685
|
+
404: {
|
|
3686
|
+
code?: string;
|
|
3687
|
+
error?: string;
|
|
3688
|
+
errorDetails?: string;
|
|
3689
|
+
requestIdentifier?: string;
|
|
3690
|
+
};
|
|
3691
|
+
/**
|
|
3692
|
+
* Status413
|
|
3693
|
+
*/
|
|
3694
|
+
413: Status413;
|
|
3695
|
+
/**
|
|
3696
|
+
* Internal Error
|
|
3697
|
+
*/
|
|
3698
|
+
500: {
|
|
3699
|
+
code?: string;
|
|
3700
|
+
error?: string;
|
|
3701
|
+
errorDetails?: string;
|
|
3702
|
+
requestIdentifier?: string;
|
|
3703
|
+
};
|
|
3704
|
+
};
|
|
3705
|
+
type GetApiV1PatentAppealsDecisionsSearchError = GetApiV1PatentAppealsDecisionsSearchErrors[keyof GetApiV1PatentAppealsDecisionsSearchErrors];
|
|
3706
|
+
type GetApiV1PatentAppealsDecisionsSearchResponses = {
|
|
3707
|
+
/**
|
|
3708
|
+
* Successful search
|
|
3709
|
+
*/
|
|
3710
|
+
200: AppealDecisionDataResponse;
|
|
3711
|
+
};
|
|
3712
|
+
type GetApiV1PatentAppealsDecisionsSearchResponse = GetApiV1PatentAppealsDecisionsSearchResponses[keyof GetApiV1PatentAppealsDecisionsSearchResponses];
|
|
3713
|
+
type PostApiV1PatentAppealsDecisionsSearchData = {
|
|
3714
|
+
body: PatentSearchRequest;
|
|
3715
|
+
path?: never;
|
|
3716
|
+
query?: never;
|
|
3717
|
+
url: "/api/v1/patent/appeals/decisions/search";
|
|
3718
|
+
};
|
|
3719
|
+
type PostApiV1PatentAppealsDecisionsSearchErrors = {
|
|
3720
|
+
/**
|
|
3721
|
+
* Bad Request
|
|
3722
|
+
*/
|
|
3723
|
+
400: {
|
|
3724
|
+
code?: unknown;
|
|
3725
|
+
error?: unknown;
|
|
3726
|
+
errorDetails?: unknown;
|
|
3727
|
+
requestIdentifier?: unknown;
|
|
3728
|
+
};
|
|
3729
|
+
/**
|
|
3730
|
+
* Forbidden
|
|
3731
|
+
*/
|
|
3732
|
+
403: {
|
|
3733
|
+
code?: string;
|
|
3734
|
+
error?: string;
|
|
3735
|
+
};
|
|
3736
|
+
/**
|
|
3737
|
+
* Not Found
|
|
3738
|
+
*/
|
|
3739
|
+
404: {
|
|
3740
|
+
code?: string;
|
|
3741
|
+
error?: string;
|
|
3742
|
+
errorDetails?: string;
|
|
3743
|
+
requestIdentifier?: string;
|
|
3744
|
+
};
|
|
3745
|
+
/**
|
|
3746
|
+
* Status413
|
|
3747
|
+
*/
|
|
3748
|
+
413: Status413;
|
|
3749
|
+
/**
|
|
3750
|
+
* Internal Error
|
|
3751
|
+
*/
|
|
3752
|
+
500: {
|
|
3753
|
+
code?: string;
|
|
3754
|
+
error?: string;
|
|
3755
|
+
errorDetails?: string;
|
|
3756
|
+
requestIdentifier?: string;
|
|
3757
|
+
};
|
|
3758
|
+
};
|
|
3759
|
+
type PostApiV1PatentAppealsDecisionsSearchError = PostApiV1PatentAppealsDecisionsSearchErrors[keyof PostApiV1PatentAppealsDecisionsSearchErrors];
|
|
3760
|
+
type PostApiV1PatentAppealsDecisionsSearchResponses = {
|
|
3761
|
+
/**
|
|
3762
|
+
* Successful search
|
|
3763
|
+
*/
|
|
3764
|
+
200: AppealDecisionDataResponse;
|
|
3765
|
+
};
|
|
3766
|
+
type PostApiV1PatentAppealsDecisionsSearchResponse = PostApiV1PatentAppealsDecisionsSearchResponses[keyof PostApiV1PatentAppealsDecisionsSearchResponses];
|
|
3767
|
+
type GetApiV1PatentAppealsDecisionsSearchDownloadData = {
|
|
3768
|
+
body?: never;
|
|
3769
|
+
path?: never;
|
|
3770
|
+
query?: {
|
|
3771
|
+
/**
|
|
3772
|
+
* A search query string which accepts boolean operators (AND, OR, NOT), wildcards (*), and exact phrases ("").
|
|
3773
|
+
*/
|
|
3774
|
+
q?: string;
|
|
3775
|
+
/**
|
|
3776
|
+
* Field to be sorted followed by sort order
|
|
3777
|
+
*/
|
|
3778
|
+
sort?: string;
|
|
3779
|
+
/**
|
|
3780
|
+
* Position in the dataset of a particular record
|
|
3781
|
+
*/
|
|
3782
|
+
offset?: number;
|
|
3783
|
+
/**
|
|
3784
|
+
* Limit the number of results returned
|
|
3785
|
+
*/
|
|
3786
|
+
limit?: number;
|
|
3787
|
+
/**
|
|
3788
|
+
* Limits the response by specifying which fields from dataset should be included.
|
|
3789
|
+
*/
|
|
3790
|
+
fields?: string;
|
|
3791
|
+
/**
|
|
3792
|
+
* Filter data by supplying filter parameter. Provide field name and its value.
|
|
3793
|
+
*/
|
|
3794
|
+
filters?: string;
|
|
3795
|
+
/**
|
|
3796
|
+
* Filter the data by supplying range of values. Applicable for number and date type fields.
|
|
3797
|
+
*/
|
|
3798
|
+
rangeFilters?: string;
|
|
3799
|
+
/**
|
|
3800
|
+
* Download Format
|
|
3801
|
+
*/
|
|
3802
|
+
format?: string;
|
|
3803
|
+
};
|
|
3804
|
+
url: "/api/v1/patent/appeals/decisions/search/download";
|
|
3805
|
+
};
|
|
3806
|
+
type GetApiV1PatentAppealsDecisionsSearchDownloadErrors = {
|
|
3807
|
+
/**
|
|
3808
|
+
* Bad Request
|
|
3809
|
+
*/
|
|
3810
|
+
400: {
|
|
3811
|
+
code?: unknown;
|
|
3812
|
+
error?: unknown;
|
|
3813
|
+
errorDetails?: unknown;
|
|
3814
|
+
requestIdentifier?: unknown;
|
|
3815
|
+
};
|
|
3816
|
+
/**
|
|
3817
|
+
* Forbidden
|
|
3818
|
+
*/
|
|
3819
|
+
403: {
|
|
3820
|
+
code?: string;
|
|
3821
|
+
error?: string;
|
|
3822
|
+
};
|
|
3823
|
+
/**
|
|
3824
|
+
* Not Found
|
|
3825
|
+
*/
|
|
3826
|
+
404: {
|
|
3827
|
+
code?: string;
|
|
3828
|
+
error?: string;
|
|
3829
|
+
errorDetails?: string;
|
|
3830
|
+
requestIdentifier?: string;
|
|
3831
|
+
};
|
|
3832
|
+
/**
|
|
3833
|
+
* Status413
|
|
3834
|
+
*/
|
|
3835
|
+
413: Status413;
|
|
3836
|
+
/**
|
|
3837
|
+
* Internal Error
|
|
3838
|
+
*/
|
|
3839
|
+
500: {
|
|
3840
|
+
code?: string;
|
|
3841
|
+
error?: string;
|
|
3842
|
+
errorDetails?: string;
|
|
3843
|
+
requestIdentifier?: string;
|
|
3844
|
+
};
|
|
3845
|
+
};
|
|
3846
|
+
type GetApiV1PatentAppealsDecisionsSearchDownloadError = GetApiV1PatentAppealsDecisionsSearchDownloadErrors[keyof GetApiV1PatentAppealsDecisionsSearchDownloadErrors];
|
|
3847
|
+
type GetApiV1PatentAppealsDecisionsSearchDownloadResponses = {
|
|
3848
|
+
/**
|
|
3849
|
+
* Successful search
|
|
3850
|
+
*/
|
|
3851
|
+
200: AppealDecisionDataResponse;
|
|
3852
|
+
};
|
|
3853
|
+
type GetApiV1PatentAppealsDecisionsSearchDownloadResponse = GetApiV1PatentAppealsDecisionsSearchDownloadResponses[keyof GetApiV1PatentAppealsDecisionsSearchDownloadResponses];
|
|
3854
|
+
type PostApiV1PatentAppealsDecisionsSearchDownloadData = {
|
|
3855
|
+
/**
|
|
3856
|
+
* Download request. Same structure as PatentDownloadRequest.
|
|
3857
|
+
*/
|
|
3858
|
+
body: DownloadRequest;
|
|
3859
|
+
path?: never;
|
|
3860
|
+
query?: never;
|
|
3861
|
+
url: "/api/v1/patent/appeals/decisions/search/download";
|
|
3862
|
+
};
|
|
3863
|
+
type PostApiV1PatentAppealsDecisionsSearchDownloadErrors = {
|
|
3864
|
+
/**
|
|
3865
|
+
* Bad Request
|
|
3866
|
+
*/
|
|
3867
|
+
400: {
|
|
3868
|
+
code?: unknown;
|
|
3869
|
+
error?: unknown;
|
|
3870
|
+
errorDetails?: unknown;
|
|
3871
|
+
requestIdentifier?: unknown;
|
|
3872
|
+
};
|
|
3873
|
+
/**
|
|
3874
|
+
* Forbidden
|
|
3875
|
+
*/
|
|
3876
|
+
403: {
|
|
3877
|
+
code?: string;
|
|
3878
|
+
error?: string;
|
|
3879
|
+
};
|
|
3880
|
+
/**
|
|
3881
|
+
* Not Found
|
|
3882
|
+
*/
|
|
3883
|
+
404: {
|
|
3884
|
+
code?: string;
|
|
3885
|
+
error?: string;
|
|
3886
|
+
errorDetails?: string;
|
|
3887
|
+
requestIdentifier?: string;
|
|
3888
|
+
};
|
|
3889
|
+
/**
|
|
3890
|
+
* Status413
|
|
3891
|
+
*/
|
|
3892
|
+
413: Status413;
|
|
3893
|
+
/**
|
|
3894
|
+
* Internal Error
|
|
3895
|
+
*/
|
|
3896
|
+
500: {
|
|
3897
|
+
code?: string;
|
|
3898
|
+
error?: string;
|
|
3899
|
+
errorDetails?: string;
|
|
3900
|
+
requestIdentifier?: string;
|
|
3901
|
+
};
|
|
3902
|
+
};
|
|
3903
|
+
type PostApiV1PatentAppealsDecisionsSearchDownloadError = PostApiV1PatentAppealsDecisionsSearchDownloadErrors[keyof PostApiV1PatentAppealsDecisionsSearchDownloadErrors];
|
|
3904
|
+
type PostApiV1PatentAppealsDecisionsSearchDownloadResponses = {
|
|
3905
|
+
/**
|
|
3906
|
+
* Successful search
|
|
3907
|
+
*/
|
|
3908
|
+
200: AppealDecisionDataResponse;
|
|
3909
|
+
};
|
|
3910
|
+
type PostApiV1PatentAppealsDecisionsSearchDownloadResponse = PostApiV1PatentAppealsDecisionsSearchDownloadResponses[keyof PostApiV1PatentAppealsDecisionsSearchDownloadResponses];
|
|
3911
|
+
type GetApiV1PatentAppealsDecisionsByDocumentIdentifierData = {
|
|
3912
|
+
body?: never;
|
|
3913
|
+
path: {
|
|
3914
|
+
/**
|
|
3915
|
+
* document Identifier.
|
|
3916
|
+
*/
|
|
3917
|
+
documentIdentifier: string;
|
|
3918
|
+
};
|
|
3919
|
+
query?: never;
|
|
3920
|
+
url: "/api/v1/patent/appeals/decisions/{documentIdentifier}";
|
|
3921
|
+
};
|
|
3922
|
+
type GetApiV1PatentAppealsDecisionsByDocumentIdentifierErrors = {
|
|
3923
|
+
/**
|
|
3924
|
+
* Bad Request
|
|
3925
|
+
*/
|
|
3926
|
+
400: {
|
|
3927
|
+
code?: unknown;
|
|
3928
|
+
error?: unknown;
|
|
3929
|
+
errorDetails?: unknown;
|
|
3930
|
+
requestIdentifier?: unknown;
|
|
3931
|
+
};
|
|
3932
|
+
/**
|
|
3933
|
+
* Forbidden
|
|
3934
|
+
*/
|
|
3935
|
+
403: {
|
|
3936
|
+
code?: string;
|
|
3937
|
+
error?: string;
|
|
3938
|
+
};
|
|
3939
|
+
/**
|
|
3940
|
+
* Not Found
|
|
3941
|
+
*/
|
|
3942
|
+
404: {
|
|
3943
|
+
code?: string;
|
|
3944
|
+
error?: string;
|
|
3945
|
+
errorDetails?: string;
|
|
3946
|
+
requestIdentifier?: string;
|
|
3947
|
+
};
|
|
3948
|
+
/**
|
|
3949
|
+
* Status413
|
|
3950
|
+
*/
|
|
3951
|
+
413: Status413;
|
|
3952
|
+
/**
|
|
3953
|
+
* Internal Error
|
|
3954
|
+
*/
|
|
3955
|
+
500: {
|
|
3956
|
+
code?: string;
|
|
3957
|
+
error?: string;
|
|
3958
|
+
errorDetails?: string;
|
|
3959
|
+
requestIdentifier?: string;
|
|
3960
|
+
};
|
|
3961
|
+
};
|
|
3962
|
+
type GetApiV1PatentAppealsDecisionsByDocumentIdentifierError = GetApiV1PatentAppealsDecisionsByDocumentIdentifierErrors[keyof GetApiV1PatentAppealsDecisionsByDocumentIdentifierErrors];
|
|
3963
|
+
type GetApiV1PatentAppealsDecisionsByDocumentIdentifierResponses = {
|
|
3964
|
+
/**
|
|
3965
|
+
* Appeal decision found
|
|
3966
|
+
*/
|
|
3967
|
+
200: AppealDecisionDataResponse;
|
|
3968
|
+
};
|
|
3969
|
+
type GetApiV1PatentAppealsDecisionsByDocumentIdentifierResponse = GetApiV1PatentAppealsDecisionsByDocumentIdentifierResponses[keyof GetApiV1PatentAppealsDecisionsByDocumentIdentifierResponses];
|
|
3970
|
+
type GetApiV1PatentAppealsByAppealNumberDecisionsData = {
|
|
3971
|
+
body?: never;
|
|
3972
|
+
path: {
|
|
3973
|
+
appealNumber: string;
|
|
3974
|
+
};
|
|
3975
|
+
query?: never;
|
|
3976
|
+
url: "/api/v1/patent/appeals/{appealNumber}/decisions";
|
|
3977
|
+
};
|
|
3978
|
+
type GetApiV1PatentAppealsByAppealNumberDecisionsErrors = {
|
|
3979
|
+
/**
|
|
3980
|
+
* Bad Request
|
|
3981
|
+
*/
|
|
3982
|
+
400: {
|
|
3983
|
+
code?: unknown;
|
|
3984
|
+
error?: unknown;
|
|
3985
|
+
errorDetails?: unknown;
|
|
3986
|
+
requestIdentifier?: unknown;
|
|
3987
|
+
};
|
|
3988
|
+
/**
|
|
3989
|
+
* Forbidden
|
|
3990
|
+
*/
|
|
3991
|
+
403: {
|
|
3992
|
+
code?: string;
|
|
3993
|
+
error?: string;
|
|
3994
|
+
};
|
|
3995
|
+
/**
|
|
3996
|
+
* Not Found
|
|
3997
|
+
*/
|
|
3998
|
+
404: {
|
|
3999
|
+
code?: string;
|
|
4000
|
+
error?: string;
|
|
4001
|
+
errorDetails?: string;
|
|
4002
|
+
requestIdentifier?: string;
|
|
4003
|
+
};
|
|
4004
|
+
/**
|
|
4005
|
+
* Status413
|
|
4006
|
+
*/
|
|
4007
|
+
413: Status413;
|
|
4008
|
+
/**
|
|
4009
|
+
* Internal Error
|
|
4010
|
+
*/
|
|
4011
|
+
500: {
|
|
4012
|
+
code?: string;
|
|
4013
|
+
error?: string;
|
|
4014
|
+
errorDetails?: string;
|
|
4015
|
+
requestIdentifier?: string;
|
|
4016
|
+
};
|
|
4017
|
+
};
|
|
4018
|
+
type GetApiV1PatentAppealsByAppealNumberDecisionsError = GetApiV1PatentAppealsByAppealNumberDecisionsErrors[keyof GetApiV1PatentAppealsByAppealNumberDecisionsErrors];
|
|
4019
|
+
type GetApiV1PatentAppealsByAppealNumberDecisionsResponses = {
|
|
4020
|
+
/**
|
|
4021
|
+
* Appeal decision found
|
|
4022
|
+
*/
|
|
4023
|
+
200: AppealDecisionDataResponse;
|
|
4024
|
+
};
|
|
4025
|
+
type GetApiV1PatentAppealsByAppealNumberDecisionsResponse = GetApiV1PatentAppealsByAppealNumberDecisionsResponses[keyof GetApiV1PatentAppealsByAppealNumberDecisionsResponses];
|
|
4026
|
+
type GetApiV1PatentInterferencesDecisionsSearchData = {
|
|
4027
|
+
body?: never;
|
|
4028
|
+
path?: never;
|
|
4029
|
+
query?: {
|
|
4030
|
+
/**
|
|
4031
|
+
* A search query string which accepts boolean operators (AND, OR, NOT), wildcards (*), and exact phrases ("").
|
|
4032
|
+
*/
|
|
4033
|
+
q?: string;
|
|
4034
|
+
/**
|
|
4035
|
+
* Field to be sorted followed by sort order
|
|
4036
|
+
*/
|
|
4037
|
+
sort?: string;
|
|
4038
|
+
/**
|
|
4039
|
+
* Position in the dataset of a particular record
|
|
4040
|
+
*/
|
|
4041
|
+
offset?: number;
|
|
4042
|
+
/**
|
|
4043
|
+
* Limit the number of results returned
|
|
4044
|
+
*/
|
|
4045
|
+
limit?: number;
|
|
4046
|
+
/**
|
|
4047
|
+
* List of fields names to be faceted upon separated by comma (<b>,</b>)
|
|
4048
|
+
*/
|
|
4049
|
+
facets?: string;
|
|
4050
|
+
/**
|
|
4051
|
+
* Limits the response by specifying which fields from dataset should be included.
|
|
4052
|
+
*/
|
|
4053
|
+
fields?: string;
|
|
4054
|
+
/**
|
|
4055
|
+
* Filter data by supplying filter parameter. Provide field name and its value.
|
|
4056
|
+
*/
|
|
4057
|
+
filters?: string;
|
|
4058
|
+
/**
|
|
4059
|
+
* Filter the data by supplying range of values. Applicable for number and date type fields.
|
|
4060
|
+
*/
|
|
4061
|
+
rangeFilters?: string;
|
|
4062
|
+
};
|
|
4063
|
+
url: "/api/v1/patent/interferences/decisions/search";
|
|
4064
|
+
};
|
|
4065
|
+
type GetApiV1PatentInterferencesDecisionsSearchErrors = {
|
|
4066
|
+
/**
|
|
4067
|
+
* Bad Request
|
|
4068
|
+
*/
|
|
4069
|
+
400: {
|
|
4070
|
+
code?: unknown;
|
|
4071
|
+
error?: unknown;
|
|
4072
|
+
errorDetails?: unknown;
|
|
4073
|
+
requestIdentifier?: unknown;
|
|
4074
|
+
};
|
|
4075
|
+
/**
|
|
4076
|
+
* Forbidden
|
|
4077
|
+
*/
|
|
4078
|
+
403: {
|
|
4079
|
+
code?: string;
|
|
4080
|
+
error?: string;
|
|
4081
|
+
};
|
|
4082
|
+
/**
|
|
4083
|
+
* Not Found
|
|
4084
|
+
*/
|
|
4085
|
+
404: {
|
|
4086
|
+
code?: string;
|
|
4087
|
+
error?: string;
|
|
4088
|
+
errorDetails?: string;
|
|
4089
|
+
requestIdentifier?: string;
|
|
4090
|
+
};
|
|
4091
|
+
/**
|
|
4092
|
+
* Status413
|
|
4093
|
+
*/
|
|
4094
|
+
413: Status413;
|
|
4095
|
+
/**
|
|
4096
|
+
* Internal Error
|
|
4097
|
+
*/
|
|
4098
|
+
500: {
|
|
4099
|
+
code?: string;
|
|
4100
|
+
error?: string;
|
|
4101
|
+
errorDetails?: string;
|
|
4102
|
+
requestIdentifier?: string;
|
|
4103
|
+
};
|
|
4104
|
+
};
|
|
4105
|
+
type GetApiV1PatentInterferencesDecisionsSearchError = GetApiV1PatentInterferencesDecisionsSearchErrors[keyof GetApiV1PatentInterferencesDecisionsSearchErrors];
|
|
4106
|
+
type GetApiV1PatentInterferencesDecisionsSearchResponses = {
|
|
4107
|
+
/**
|
|
4108
|
+
* OK
|
|
4109
|
+
*/
|
|
4110
|
+
200: InterferenceDecisionDataResponse;
|
|
4111
|
+
};
|
|
4112
|
+
type GetApiV1PatentInterferencesDecisionsSearchResponse = GetApiV1PatentInterferencesDecisionsSearchResponses[keyof GetApiV1PatentInterferencesDecisionsSearchResponses];
|
|
4113
|
+
type PostApiV1PatentInterferencesDecisionsSearchData = {
|
|
4114
|
+
body: PatentSearchRequest;
|
|
4115
|
+
path?: never;
|
|
4116
|
+
query?: never;
|
|
4117
|
+
url: "/api/v1/patent/interferences/decisions/search";
|
|
4118
|
+
};
|
|
4119
|
+
type PostApiV1PatentInterferencesDecisionsSearchErrors = {
|
|
4120
|
+
/**
|
|
4121
|
+
* Bad Request
|
|
4122
|
+
*/
|
|
4123
|
+
400: {
|
|
4124
|
+
code?: unknown;
|
|
4125
|
+
error?: unknown;
|
|
4126
|
+
errorDetails?: unknown;
|
|
4127
|
+
requestIdentifier?: unknown;
|
|
4128
|
+
};
|
|
4129
|
+
/**
|
|
4130
|
+
* Forbidden
|
|
4131
|
+
*/
|
|
4132
|
+
403: {
|
|
4133
|
+
code?: string;
|
|
4134
|
+
error?: string;
|
|
4135
|
+
};
|
|
4136
|
+
/**
|
|
4137
|
+
* Not Found
|
|
4138
|
+
*/
|
|
4139
|
+
404: {
|
|
4140
|
+
code?: string;
|
|
4141
|
+
error?: string;
|
|
4142
|
+
errorDetails?: string;
|
|
4143
|
+
requestIdentifier?: string;
|
|
4144
|
+
};
|
|
4145
|
+
/**
|
|
4146
|
+
* Status413
|
|
4147
|
+
*/
|
|
4148
|
+
413: Status413;
|
|
4149
|
+
/**
|
|
4150
|
+
* Internal Error
|
|
4151
|
+
*/
|
|
4152
|
+
500: {
|
|
4153
|
+
code?: string;
|
|
4154
|
+
error?: string;
|
|
4155
|
+
errorDetails?: string;
|
|
4156
|
+
requestIdentifier?: string;
|
|
4157
|
+
};
|
|
4158
|
+
};
|
|
4159
|
+
type PostApiV1PatentInterferencesDecisionsSearchError = PostApiV1PatentInterferencesDecisionsSearchErrors[keyof PostApiV1PatentInterferencesDecisionsSearchErrors];
|
|
4160
|
+
type PostApiV1PatentInterferencesDecisionsSearchResponses = {
|
|
4161
|
+
/**
|
|
4162
|
+
* OK
|
|
4163
|
+
*/
|
|
4164
|
+
200: InterferenceDecisionDataResponse;
|
|
4165
|
+
};
|
|
4166
|
+
type PostApiV1PatentInterferencesDecisionsSearchResponse = PostApiV1PatentInterferencesDecisionsSearchResponses[keyof PostApiV1PatentInterferencesDecisionsSearchResponses];
|
|
4167
|
+
type GetApiV1PatentInterferencesDecisionsSearchDownloadData = {
|
|
4168
|
+
body?: never;
|
|
4169
|
+
path?: never;
|
|
4170
|
+
query?: {
|
|
4171
|
+
/**
|
|
4172
|
+
* A search query string which accepts boolean operators (AND, OR, NOT), wildcards (*), and exact phrases ("").
|
|
4173
|
+
*/
|
|
4174
|
+
q?: string;
|
|
4175
|
+
/**
|
|
4176
|
+
* Field to be sorted followed by sort order
|
|
4177
|
+
*/
|
|
4178
|
+
sort?: string;
|
|
4179
|
+
/**
|
|
4180
|
+
* Position in the dataset of a particular record
|
|
4181
|
+
*/
|
|
4182
|
+
offset?: number;
|
|
4183
|
+
/**
|
|
4184
|
+
* Limit the number of results returned
|
|
4185
|
+
*/
|
|
4186
|
+
limit?: number;
|
|
4187
|
+
/**
|
|
4188
|
+
* List of fields names to be faceted upon separated by comma (<b>,</b>)
|
|
4189
|
+
*/
|
|
4190
|
+
facets?: string;
|
|
4191
|
+
/**
|
|
4192
|
+
* Limits the response by specifying which fields from dataset should be included.
|
|
4193
|
+
*/
|
|
4194
|
+
fields?: string;
|
|
4195
|
+
/**
|
|
4196
|
+
* Filter data by supplying filter parameter. Provide field name and its value.
|
|
4197
|
+
*/
|
|
4198
|
+
filters?: string;
|
|
4199
|
+
/**
|
|
4200
|
+
* Filter the data by supplying range of values. Applicable for number and date type fields.
|
|
4201
|
+
*/
|
|
4202
|
+
rangeFilters?: string;
|
|
4203
|
+
/**
|
|
4204
|
+
* Download Format
|
|
4205
|
+
*/
|
|
4206
|
+
format?: string;
|
|
4207
|
+
};
|
|
4208
|
+
url: "/api/v1/patent/interferences/decisions/search/download";
|
|
4209
|
+
};
|
|
4210
|
+
type GetApiV1PatentInterferencesDecisionsSearchDownloadErrors = {
|
|
4211
|
+
/**
|
|
4212
|
+
* Bad Request
|
|
4213
|
+
*/
|
|
4214
|
+
400: {
|
|
4215
|
+
code?: unknown;
|
|
4216
|
+
error?: unknown;
|
|
4217
|
+
errorDetails?: unknown;
|
|
4218
|
+
requestIdentifier?: unknown;
|
|
4219
|
+
};
|
|
4220
|
+
/**
|
|
4221
|
+
* Forbidden
|
|
4222
|
+
*/
|
|
4223
|
+
403: {
|
|
4224
|
+
code?: string;
|
|
4225
|
+
error?: string;
|
|
4226
|
+
};
|
|
4227
|
+
/**
|
|
4228
|
+
* Not Found
|
|
4229
|
+
*/
|
|
4230
|
+
404: {
|
|
4231
|
+
code?: string;
|
|
4232
|
+
error?: string;
|
|
4233
|
+
errorDetails?: string;
|
|
4234
|
+
requestIdentifier?: string;
|
|
4235
|
+
};
|
|
4236
|
+
/**
|
|
4237
|
+
* Status413
|
|
4238
|
+
*/
|
|
4239
|
+
413: Status413;
|
|
4240
|
+
/**
|
|
4241
|
+
* Internal Error
|
|
4242
|
+
*/
|
|
4243
|
+
500: {
|
|
4244
|
+
code?: string;
|
|
4245
|
+
error?: string;
|
|
4246
|
+
errorDetails?: string;
|
|
4247
|
+
requestIdentifier?: string;
|
|
4248
|
+
};
|
|
4249
|
+
};
|
|
4250
|
+
type GetApiV1PatentInterferencesDecisionsSearchDownloadError = GetApiV1PatentInterferencesDecisionsSearchDownloadErrors[keyof GetApiV1PatentInterferencesDecisionsSearchDownloadErrors];
|
|
4251
|
+
type GetApiV1PatentInterferencesDecisionsSearchDownloadResponses = {
|
|
4252
|
+
/**
|
|
4253
|
+
* OK (file or JSON depending on format)
|
|
4254
|
+
*/
|
|
4255
|
+
200: InterferenceDecisionDataResponse;
|
|
4256
|
+
};
|
|
4257
|
+
type GetApiV1PatentInterferencesDecisionsSearchDownloadResponse = GetApiV1PatentInterferencesDecisionsSearchDownloadResponses[keyof GetApiV1PatentInterferencesDecisionsSearchDownloadResponses];
|
|
4258
|
+
type PostApiV1PatentInterferencesDecisionsSearchDownloadData = {
|
|
4259
|
+
body: PatentDownloadRequest;
|
|
4260
|
+
path?: never;
|
|
4261
|
+
query?: never;
|
|
4262
|
+
url: "/api/v1/patent/interferences/decisions/search/download";
|
|
4263
|
+
};
|
|
4264
|
+
type PostApiV1PatentInterferencesDecisionsSearchDownloadErrors = {
|
|
4265
|
+
/**
|
|
4266
|
+
* Bad Request
|
|
4267
|
+
*/
|
|
4268
|
+
400: {
|
|
4269
|
+
code?: unknown;
|
|
4270
|
+
error?: unknown;
|
|
4271
|
+
errorDetails?: unknown;
|
|
4272
|
+
requestIdentifier?: unknown;
|
|
4273
|
+
};
|
|
4274
|
+
/**
|
|
4275
|
+
* Forbidden
|
|
4276
|
+
*/
|
|
4277
|
+
403: {
|
|
4278
|
+
code?: string;
|
|
4279
|
+
error?: string;
|
|
4280
|
+
};
|
|
4281
|
+
/**
|
|
4282
|
+
* Not Found
|
|
4283
|
+
*/
|
|
4284
|
+
404: {
|
|
4285
|
+
code?: string;
|
|
4286
|
+
error?: string;
|
|
4287
|
+
errorDetails?: string;
|
|
4288
|
+
requestIdentifier?: string;
|
|
4289
|
+
};
|
|
4290
|
+
/**
|
|
4291
|
+
* Status413
|
|
4292
|
+
*/
|
|
4293
|
+
413: Status413;
|
|
4294
|
+
/**
|
|
4295
|
+
* Internal Error
|
|
4296
|
+
*/
|
|
4297
|
+
500: {
|
|
4298
|
+
code?: string;
|
|
4299
|
+
error?: string;
|
|
4300
|
+
errorDetails?: string;
|
|
4301
|
+
requestIdentifier?: string;
|
|
4302
|
+
};
|
|
4303
|
+
};
|
|
4304
|
+
type PostApiV1PatentInterferencesDecisionsSearchDownloadError = PostApiV1PatentInterferencesDecisionsSearchDownloadErrors[keyof PostApiV1PatentInterferencesDecisionsSearchDownloadErrors];
|
|
4305
|
+
type PostApiV1PatentInterferencesDecisionsSearchDownloadResponses = {
|
|
4306
|
+
/**
|
|
4307
|
+
* OK (file or JSON depending on format)
|
|
4308
|
+
*/
|
|
4309
|
+
200: InterferenceDecisionDataResponse;
|
|
4310
|
+
};
|
|
4311
|
+
type PostApiV1PatentInterferencesDecisionsSearchDownloadResponse = PostApiV1PatentInterferencesDecisionsSearchDownloadResponses[keyof PostApiV1PatentInterferencesDecisionsSearchDownloadResponses];
|
|
4312
|
+
type GetApiV1PatentInterferencesByInterferenceNumberDecisionsData = {
|
|
4313
|
+
body?: never;
|
|
4314
|
+
path: {
|
|
4315
|
+
/**
|
|
4316
|
+
* Interference number (e.g., 103751).
|
|
4317
|
+
*/
|
|
4318
|
+
interferenceNumber: string;
|
|
4319
|
+
};
|
|
4320
|
+
query?: never;
|
|
4321
|
+
url: "/api/v1/patent/interferences/{interferenceNumber}/decisions";
|
|
4322
|
+
};
|
|
4323
|
+
type GetApiV1PatentInterferencesByInterferenceNumberDecisionsErrors = {
|
|
4324
|
+
/**
|
|
4325
|
+
* Bad Request
|
|
4326
|
+
*/
|
|
4327
|
+
400: {
|
|
4328
|
+
code?: unknown;
|
|
4329
|
+
error?: unknown;
|
|
4330
|
+
errorDetails?: unknown;
|
|
4331
|
+
requestIdentifier?: unknown;
|
|
4332
|
+
};
|
|
4333
|
+
/**
|
|
4334
|
+
* Forbidden
|
|
4335
|
+
*/
|
|
4336
|
+
403: {
|
|
4337
|
+
code?: string;
|
|
4338
|
+
error?: string;
|
|
4339
|
+
};
|
|
4340
|
+
/**
|
|
4341
|
+
* Not Found
|
|
4342
|
+
*/
|
|
4343
|
+
404: {
|
|
4344
|
+
code?: string;
|
|
4345
|
+
error?: string;
|
|
4346
|
+
errorDetails?: string;
|
|
4347
|
+
requestIdentifier?: string;
|
|
4348
|
+
};
|
|
4349
|
+
/**
|
|
4350
|
+
* Status413
|
|
4351
|
+
*/
|
|
4352
|
+
413: Status413;
|
|
4353
|
+
/**
|
|
4354
|
+
* Internal Error
|
|
4355
|
+
*/
|
|
4356
|
+
500: {
|
|
4357
|
+
code?: string;
|
|
4358
|
+
error?: string;
|
|
4359
|
+
errorDetails?: string;
|
|
4360
|
+
requestIdentifier?: string;
|
|
4361
|
+
};
|
|
4362
|
+
};
|
|
4363
|
+
type GetApiV1PatentInterferencesByInterferenceNumberDecisionsError = GetApiV1PatentInterferencesByInterferenceNumberDecisionsErrors[keyof GetApiV1PatentInterferencesByInterferenceNumberDecisionsErrors];
|
|
4364
|
+
type GetApiV1PatentInterferencesByInterferenceNumberDecisionsResponses = {
|
|
4365
|
+
/**
|
|
4366
|
+
* OK
|
|
4367
|
+
*/
|
|
4368
|
+
200: InterferenceDecisionDataResponse;
|
|
4369
|
+
};
|
|
4370
|
+
type GetApiV1PatentInterferencesByInterferenceNumberDecisionsResponse = GetApiV1PatentInterferencesByInterferenceNumberDecisionsResponses[keyof GetApiV1PatentInterferencesByInterferenceNumberDecisionsResponses];
|
|
4371
|
+
type GetApiV1PatentInterferencesDecisionsByDocumentIdentifierData = {
|
|
4372
|
+
body?: never;
|
|
4373
|
+
path: {
|
|
4374
|
+
/**
|
|
4375
|
+
* Unique document identifier (opaque string).
|
|
4376
|
+
*/
|
|
4377
|
+
documentIdentifier: string;
|
|
4378
|
+
};
|
|
4379
|
+
query?: never;
|
|
4380
|
+
url: "/api/v1/patent/interferences/decisions/{documentIdentifier}";
|
|
4381
|
+
};
|
|
4382
|
+
type GetApiV1PatentInterferencesDecisionsByDocumentIdentifierErrors = {
|
|
4383
|
+
/**
|
|
4384
|
+
* Bad Request
|
|
4385
|
+
*/
|
|
4386
|
+
400: {
|
|
4387
|
+
code?: unknown;
|
|
4388
|
+
error?: unknown;
|
|
4389
|
+
errorDetails?: unknown;
|
|
4390
|
+
requestIdentifier?: unknown;
|
|
4391
|
+
};
|
|
4392
|
+
/**
|
|
4393
|
+
* Forbidden
|
|
4394
|
+
*/
|
|
4395
|
+
403: {
|
|
4396
|
+
code?: string;
|
|
4397
|
+
error?: string;
|
|
4398
|
+
};
|
|
4399
|
+
/**
|
|
4400
|
+
* Not Found
|
|
4401
|
+
*/
|
|
4402
|
+
404: {
|
|
4403
|
+
code?: string;
|
|
4404
|
+
error?: string;
|
|
4405
|
+
errorDetails?: string;
|
|
4406
|
+
requestIdentifier?: string;
|
|
4407
|
+
};
|
|
4408
|
+
/**
|
|
4409
|
+
* Status413
|
|
4410
|
+
*/
|
|
4411
|
+
413: Status413;
|
|
4412
|
+
/**
|
|
4413
|
+
* Internal Error
|
|
4414
|
+
*/
|
|
4415
|
+
500: {
|
|
4416
|
+
code?: string;
|
|
4417
|
+
error?: string;
|
|
4418
|
+
errorDetails?: string;
|
|
4419
|
+
requestIdentifier?: string;
|
|
4420
|
+
};
|
|
4421
|
+
};
|
|
4422
|
+
type GetApiV1PatentInterferencesDecisionsByDocumentIdentifierError = GetApiV1PatentInterferencesDecisionsByDocumentIdentifierErrors[keyof GetApiV1PatentInterferencesDecisionsByDocumentIdentifierErrors];
|
|
4423
|
+
type GetApiV1PatentInterferencesDecisionsByDocumentIdentifierResponses = {
|
|
4424
|
+
/**
|
|
4425
|
+
* OK
|
|
4426
|
+
*/
|
|
4427
|
+
200: InterferenceDecisionDataResponse;
|
|
4428
|
+
};
|
|
4429
|
+
type GetApiV1PatentInterferencesDecisionsByDocumentIdentifierResponse = GetApiV1PatentInterferencesDecisionsByDocumentIdentifierResponses[keyof GetApiV1PatentInterferencesDecisionsByDocumentIdentifierResponses];
|
|
4430
|
+
//#endregion
|
|
4431
|
+
export { AppealDecisionDataResponse, ApplicationMetaData, Assignment, BadRequestSchema, BdssResponseBag, BdssResponseProductBag, BulkDataProductBag, ChildContinuityData, ClientOptions, DecisionData, DecisionDataResponse, DerivationPetitionerData, DocumentBag, DocumentData, DocumentDataResponse, DownloadRequest, Error, EventData, Facet, FacetItem, Facets, Facets2, Fields, Filter, Filters, ForbiddenSchema, ForeignPriority, Format, GetApiV1DatasetsProductsByProductIdentifierData, GetApiV1DatasetsProductsByProductIdentifierError, GetApiV1DatasetsProductsByProductIdentifierErrors, GetApiV1DatasetsProductsByProductIdentifierResponse, GetApiV1DatasetsProductsByProductIdentifierResponses, GetApiV1DatasetsProductsFilesByProductIdentifierByFileNameData, GetApiV1DatasetsProductsSearchData, GetApiV1DatasetsProductsSearchError, GetApiV1DatasetsProductsSearchErrors, GetApiV1DatasetsProductsSearchResponse, GetApiV1DatasetsProductsSearchResponses, GetApiV1PatentAppealsByAppealNumberDecisionsData, GetApiV1PatentAppealsByAppealNumberDecisionsError, GetApiV1PatentAppealsByAppealNumberDecisionsErrors, GetApiV1PatentAppealsByAppealNumberDecisionsResponse, GetApiV1PatentAppealsByAppealNumberDecisionsResponses, GetApiV1PatentAppealsDecisionsByDocumentIdentifierData, GetApiV1PatentAppealsDecisionsByDocumentIdentifierError, GetApiV1PatentAppealsDecisionsByDocumentIdentifierErrors, GetApiV1PatentAppealsDecisionsByDocumentIdentifierResponse, GetApiV1PatentAppealsDecisionsByDocumentIdentifierResponses, GetApiV1PatentAppealsDecisionsSearchData, GetApiV1PatentAppealsDecisionsSearchDownloadData, GetApiV1PatentAppealsDecisionsSearchDownloadError, GetApiV1PatentAppealsDecisionsSearchDownloadErrors, GetApiV1PatentAppealsDecisionsSearchDownloadResponse, GetApiV1PatentAppealsDecisionsSearchDownloadResponses, GetApiV1PatentAppealsDecisionsSearchError, GetApiV1PatentAppealsDecisionsSearchErrors, GetApiV1PatentAppealsDecisionsSearchResponse, GetApiV1PatentAppealsDecisionsSearchResponses, GetApiV1PatentApplicationsByApplicationNumberTextAdjustmentData, GetApiV1PatentApplicationsByApplicationNumberTextAdjustmentError, GetApiV1PatentApplicationsByApplicationNumberTextAdjustmentErrors, GetApiV1PatentApplicationsByApplicationNumberTextAdjustmentResponse, GetApiV1PatentApplicationsByApplicationNumberTextAdjustmentResponses, GetApiV1PatentApplicationsByApplicationNumberTextAssignmentData, GetApiV1PatentApplicationsByApplicationNumberTextAssignmentError, GetApiV1PatentApplicationsByApplicationNumberTextAssignmentErrors, GetApiV1PatentApplicationsByApplicationNumberTextAssignmentResponse, GetApiV1PatentApplicationsByApplicationNumberTextAssignmentResponses, GetApiV1PatentApplicationsByApplicationNumberTextAssociatedDocumentsData, GetApiV1PatentApplicationsByApplicationNumberTextAssociatedDocumentsError, GetApiV1PatentApplicationsByApplicationNumberTextAssociatedDocumentsErrors, GetApiV1PatentApplicationsByApplicationNumberTextAssociatedDocumentsResponse, GetApiV1PatentApplicationsByApplicationNumberTextAssociatedDocumentsResponses, GetApiV1PatentApplicationsByApplicationNumberTextAttorneyData, GetApiV1PatentApplicationsByApplicationNumberTextAttorneyError, GetApiV1PatentApplicationsByApplicationNumberTextAttorneyErrors, GetApiV1PatentApplicationsByApplicationNumberTextAttorneyResponse, GetApiV1PatentApplicationsByApplicationNumberTextAttorneyResponses, GetApiV1PatentApplicationsByApplicationNumberTextContinuityData, GetApiV1PatentApplicationsByApplicationNumberTextContinuityResponse, GetApiV1PatentApplicationsByApplicationNumberTextContinuityResponses, GetApiV1PatentApplicationsByApplicationNumberTextData, GetApiV1PatentApplicationsByApplicationNumberTextDocumentsData, GetApiV1PatentApplicationsByApplicationNumberTextDocumentsError, GetApiV1PatentApplicationsByApplicationNumberTextDocumentsErrors, GetApiV1PatentApplicationsByApplicationNumberTextDocumentsResponse, GetApiV1PatentApplicationsByApplicationNumberTextDocumentsResponses, GetApiV1PatentApplicationsByApplicationNumberTextError, GetApiV1PatentApplicationsByApplicationNumberTextErrors, GetApiV1PatentApplicationsByApplicationNumberTextForeignPriorityData, GetApiV1PatentApplicationsByApplicationNumberTextForeignPriorityError, GetApiV1PatentApplicationsByApplicationNumberTextForeignPriorityErrors, GetApiV1PatentApplicationsByApplicationNumberTextForeignPriorityResponse, GetApiV1PatentApplicationsByApplicationNumberTextForeignPriorityResponses, GetApiV1PatentApplicationsByApplicationNumberTextMetaDataData, GetApiV1PatentApplicationsByApplicationNumberTextMetaDataError, GetApiV1PatentApplicationsByApplicationNumberTextMetaDataErrors, GetApiV1PatentApplicationsByApplicationNumberTextMetaDataResponse, GetApiV1PatentApplicationsByApplicationNumberTextMetaDataResponses, GetApiV1PatentApplicationsByApplicationNumberTextResponse, GetApiV1PatentApplicationsByApplicationNumberTextResponses, GetApiV1PatentApplicationsByApplicationNumberTextTransactionsData, GetApiV1PatentApplicationsByApplicationNumberTextTransactionsError, GetApiV1PatentApplicationsByApplicationNumberTextTransactionsErrors, GetApiV1PatentApplicationsByApplicationNumberTextTransactionsResponse, GetApiV1PatentApplicationsByApplicationNumberTextTransactionsResponses, GetApiV1PatentApplicationsSearchData, GetApiV1PatentApplicationsSearchDownloadData, GetApiV1PatentApplicationsSearchDownloadError, GetApiV1PatentApplicationsSearchDownloadErrors, GetApiV1PatentApplicationsSearchDownloadResponse, GetApiV1PatentApplicationsSearchDownloadResponses, GetApiV1PatentApplicationsSearchError, GetApiV1PatentApplicationsSearchErrors, GetApiV1PatentApplicationsSearchResponse, GetApiV1PatentApplicationsSearchResponses, GetApiV1PatentInterferencesByInterferenceNumberDecisionsData, GetApiV1PatentInterferencesByInterferenceNumberDecisionsError, GetApiV1PatentInterferencesByInterferenceNumberDecisionsErrors, GetApiV1PatentInterferencesByInterferenceNumberDecisionsResponse, GetApiV1PatentInterferencesByInterferenceNumberDecisionsResponses, GetApiV1PatentInterferencesDecisionsByDocumentIdentifierData, GetApiV1PatentInterferencesDecisionsByDocumentIdentifierError, GetApiV1PatentInterferencesDecisionsByDocumentIdentifierErrors, GetApiV1PatentInterferencesDecisionsByDocumentIdentifierResponse, GetApiV1PatentInterferencesDecisionsByDocumentIdentifierResponses, GetApiV1PatentInterferencesDecisionsSearchData, GetApiV1PatentInterferencesDecisionsSearchDownloadData, GetApiV1PatentInterferencesDecisionsSearchDownloadError, GetApiV1PatentInterferencesDecisionsSearchDownloadErrors, GetApiV1PatentInterferencesDecisionsSearchDownloadResponse, GetApiV1PatentInterferencesDecisionsSearchDownloadResponses, GetApiV1PatentInterferencesDecisionsSearchError, GetApiV1PatentInterferencesDecisionsSearchErrors, GetApiV1PatentInterferencesDecisionsSearchResponse, GetApiV1PatentInterferencesDecisionsSearchResponses, GetApiV1PatentStatusCodesData, GetApiV1PatentStatusCodesError, GetApiV1PatentStatusCodesErrors, GetApiV1PatentStatusCodesResponse, GetApiV1PatentStatusCodesResponses, GetApiV1PatentTrialsByTrialNumberDecisionsData, GetApiV1PatentTrialsByTrialNumberDecisionsError, GetApiV1PatentTrialsByTrialNumberDecisionsErrors, GetApiV1PatentTrialsByTrialNumberDecisionsResponse, GetApiV1PatentTrialsByTrialNumberDecisionsResponses, GetApiV1PatentTrialsByTrialNumberDocumentsData, GetApiV1PatentTrialsByTrialNumberDocumentsError, GetApiV1PatentTrialsByTrialNumberDocumentsErrors, GetApiV1PatentTrialsByTrialNumberDocumentsResponse, GetApiV1PatentTrialsByTrialNumberDocumentsResponses, GetApiV1PatentTrialsDecisionsByDocumentIdentifierData, GetApiV1PatentTrialsDecisionsByDocumentIdentifierError, GetApiV1PatentTrialsDecisionsByDocumentIdentifierErrors, GetApiV1PatentTrialsDecisionsByDocumentIdentifierResponse, GetApiV1PatentTrialsDecisionsByDocumentIdentifierResponses, GetApiV1PatentTrialsDecisionsSearchData, GetApiV1PatentTrialsDecisionsSearchDownloadData, GetApiV1PatentTrialsDecisionsSearchDownloadError, GetApiV1PatentTrialsDecisionsSearchDownloadErrors, GetApiV1PatentTrialsDecisionsSearchDownloadResponse, GetApiV1PatentTrialsDecisionsSearchDownloadResponses, GetApiV1PatentTrialsDecisionsSearchError, GetApiV1PatentTrialsDecisionsSearchErrors, GetApiV1PatentTrialsDecisionsSearchResponse, GetApiV1PatentTrialsDecisionsSearchResponses, GetApiV1PatentTrialsDocumentsByDocumentIdentifierData, GetApiV1PatentTrialsDocumentsByDocumentIdentifierError, GetApiV1PatentTrialsDocumentsByDocumentIdentifierErrors, GetApiV1PatentTrialsDocumentsByDocumentIdentifierResponse, GetApiV1PatentTrialsDocumentsByDocumentIdentifierResponses, GetApiV1PatentTrialsDocumentsSearchData, GetApiV1PatentTrialsDocumentsSearchDownloadData, GetApiV1PatentTrialsDocumentsSearchDownloadError, GetApiV1PatentTrialsDocumentsSearchDownloadErrors, GetApiV1PatentTrialsDocumentsSearchDownloadResponse, GetApiV1PatentTrialsDocumentsSearchDownloadResponses, GetApiV1PatentTrialsDocumentsSearchError, GetApiV1PatentTrialsDocumentsSearchErrors, GetApiV1PatentTrialsDocumentsSearchResponse, GetApiV1PatentTrialsDocumentsSearchResponses, GetApiV1PatentTrialsProceedingsByTrialNumberData, GetApiV1PatentTrialsProceedingsByTrialNumberError, GetApiV1PatentTrialsProceedingsByTrialNumberErrors, GetApiV1PatentTrialsProceedingsByTrialNumberResponse, GetApiV1PatentTrialsProceedingsByTrialNumberResponses, GetApiV1PatentTrialsProceedingsSearchData, GetApiV1PatentTrialsProceedingsSearchDownloadData, GetApiV1PatentTrialsProceedingsSearchDownloadError, GetApiV1PatentTrialsProceedingsSearchDownloadErrors, GetApiV1PatentTrialsProceedingsSearchDownloadResponse, GetApiV1PatentTrialsProceedingsSearchDownloadResponses, GetApiV1PatentTrialsProceedingsSearchError, GetApiV1PatentTrialsProceedingsSearchErrors, GetApiV1PatentTrialsProceedingsSearchResponse, GetApiV1PatentTrialsProceedingsSearchResponses, GetApiV1PetitionDecisionsByPetitionDecisionRecordIdentifierData, GetApiV1PetitionDecisionsByPetitionDecisionRecordIdentifierError, GetApiV1PetitionDecisionsByPetitionDecisionRecordIdentifierErrors, GetApiV1PetitionDecisionsByPetitionDecisionRecordIdentifierResponse, GetApiV1PetitionDecisionsByPetitionDecisionRecordIdentifierResponses, GetApiV1PetitionDecisionsSearchData, GetApiV1PetitionDecisionsSearchDownloadData, GetApiV1PetitionDecisionsSearchDownloadError, GetApiV1PetitionDecisionsSearchDownloadErrors, GetApiV1PetitionDecisionsSearchDownloadResponse, GetApiV1PetitionDecisionsSearchDownloadResponses, GetApiV1PetitionDecisionsSearchError, GetApiV1PetitionDecisionsSearchErrors, GetApiV1PetitionDecisionsSearchResponse, GetApiV1PetitionDecisionsSearchResponses, GrantFileMetaData, InterferenceDecisionDataResponse, InterferenceDecisionDocumentData, InterferenceDecisionRecord, InterferencePartyData, InternalErrorSchema, Limit, LookupRequest, NotFoundSchema, Offset, Pagination, ParamFacets, ParamFields, ParamFilters, ParamFormat, ParamLimit, ParamOffset, ParamQ, ParamRangeFilters, ParamSort, ParentContinuityData, PatentAppealDataBag, PatentAppealDataBag2, PatentDataResponse, PatentDownloadRequest, PatentOwnerData, PatentSearchRequest, PatentTermAdjustment, PatentTrialDecisionDataBag, PatentTrialDecisionDataBag2, PatentTrialDocumentDataBag, PatentTrialDocumentDataBag2, PatentTrialProceedingDataBag, PatentTrialProceedingDataBag2, PetitionDecision, PetitionDecisionAndDocuments, PetitionDecisionDocument, PetitionDecisionDownloadRequest, PetitionDecisionFacet, PetitionDecisionFacetEntity, PetitionDecisionFilter, PetitionDecisionIdentifierResponseBag, PetitionDecisionRange, PetitionDecisionResponseBag, PetitionDecisionSearchRequest, PetitionDecisionSort, PgPubFileMetaData, PostApiV1PatentAppealsDecisionsSearchData, PostApiV1PatentAppealsDecisionsSearchDownloadData, PostApiV1PatentAppealsDecisionsSearchDownloadError, PostApiV1PatentAppealsDecisionsSearchDownloadErrors, PostApiV1PatentAppealsDecisionsSearchDownloadResponse, PostApiV1PatentAppealsDecisionsSearchDownloadResponses, PostApiV1PatentAppealsDecisionsSearchError, PostApiV1PatentAppealsDecisionsSearchErrors, PostApiV1PatentAppealsDecisionsSearchResponse, PostApiV1PatentAppealsDecisionsSearchResponses, PostApiV1PatentApplicationsSearchData, PostApiV1PatentApplicationsSearchDownloadData, PostApiV1PatentApplicationsSearchDownloadError, PostApiV1PatentApplicationsSearchDownloadErrors, PostApiV1PatentApplicationsSearchDownloadResponse, PostApiV1PatentApplicationsSearchDownloadResponses, PostApiV1PatentApplicationsSearchError, PostApiV1PatentApplicationsSearchErrors, PostApiV1PatentApplicationsSearchResponse, PostApiV1PatentApplicationsSearchResponses, PostApiV1PatentInterferencesDecisionsSearchData, PostApiV1PatentInterferencesDecisionsSearchDownloadData, PostApiV1PatentInterferencesDecisionsSearchDownloadError, PostApiV1PatentInterferencesDecisionsSearchDownloadErrors, PostApiV1PatentInterferencesDecisionsSearchDownloadResponse, PostApiV1PatentInterferencesDecisionsSearchDownloadResponses, PostApiV1PatentInterferencesDecisionsSearchError, PostApiV1PatentInterferencesDecisionsSearchErrors, PostApiV1PatentInterferencesDecisionsSearchResponse, PostApiV1PatentInterferencesDecisionsSearchResponses, PostApiV1PatentStatusCodesData, PostApiV1PatentStatusCodesError, PostApiV1PatentStatusCodesErrors, PostApiV1PatentStatusCodesResponse, PostApiV1PatentStatusCodesResponses, PostApiV1PatentTrialsDecisionsSearchData, PostApiV1PatentTrialsDecisionsSearchDownloadData, PostApiV1PatentTrialsDecisionsSearchDownloadError, PostApiV1PatentTrialsDecisionsSearchDownloadErrors, PostApiV1PatentTrialsDecisionsSearchDownloadResponse, PostApiV1PatentTrialsDecisionsSearchDownloadResponses, PostApiV1PatentTrialsDecisionsSearchError, PostApiV1PatentTrialsDecisionsSearchErrors, PostApiV1PatentTrialsDecisionsSearchResponse, PostApiV1PatentTrialsDecisionsSearchResponses, PostApiV1PatentTrialsDocumentsSearchData, PostApiV1PatentTrialsDocumentsSearchDownloadData, PostApiV1PatentTrialsDocumentsSearchDownloadError, PostApiV1PatentTrialsDocumentsSearchDownloadErrors, PostApiV1PatentTrialsDocumentsSearchDownloadResponse, PostApiV1PatentTrialsDocumentsSearchDownloadResponses, PostApiV1PatentTrialsDocumentsSearchError, PostApiV1PatentTrialsDocumentsSearchErrors, PostApiV1PatentTrialsDocumentsSearchResponse, PostApiV1PatentTrialsDocumentsSearchResponses, PostApiV1PatentTrialsProceedingsSearchData, PostApiV1PatentTrialsProceedingsSearchDownloadData, PostApiV1PatentTrialsProceedingsSearchDownloadError, PostApiV1PatentTrialsProceedingsSearchDownloadErrors, PostApiV1PatentTrialsProceedingsSearchDownloadResponse, PostApiV1PatentTrialsProceedingsSearchDownloadResponses, PostApiV1PatentTrialsProceedingsSearchError, PostApiV1PatentTrialsProceedingsSearchErrors, PostApiV1PatentTrialsProceedingsSearchResponse, PostApiV1PatentTrialsProceedingsSearchResponses, PostApiV1PetitionDecisionsSearchData, PostApiV1PetitionDecisionsSearchDownloadData, PostApiV1PetitionDecisionsSearchDownloadError, PostApiV1PetitionDecisionsSearchDownloadErrors, PostApiV1PetitionDecisionsSearchDownloadResponse, PostApiV1PetitionDecisionsSearchDownloadResponses, PostApiV1PetitionDecisionsSearchError, PostApiV1PetitionDecisionsSearchErrors, PostApiV1PetitionDecisionsSearchResponse, PostApiV1PetitionDecisionsSearchResponses, ProceedingDataResponse, ProductFileBag, Q, Range, RangeFilters, RecordAttorney, RegularPetitionerData, RespondentData, Response400, Response403, Response404, Response500, SearchRequest, Sort, Sort2, Status413, StatusCodeSearchRequest, StatusCodeSearchResponse, TrialMetaData };
|
|
4432
|
+
//# sourceMappingURL=types.gen.d.ts.map
|