-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathopenapi.yaml
More file actions
916 lines (873 loc) · 27.3 KB
/
openapi.yaml
File metadata and controls
916 lines (873 loc) · 27.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
openapi: 3.0.3
info:
title: DPMA Connect Plus API (unofficial)
description: |
German Patent and Trademark Office (DPMA) Connect Plus REST API for accessing
register and publication data for German patents, utility models, designs, and trademarks.
**Authentication**: HTTP Basic Authentication required for all endpoints.
**Base URL**: https://dpmaconnect.dpma.de/dpmaws/rest-services
This specification was hand-crafted from the official DPMA documentation.
**Services**:
- DPMAregisterPatService: Patents and Utility Models
- DPMAregisterGsmService: Designs (Geschmacksmuster)
- DPMAregisterMarkeService: Trademarks (Marken)
**Data Availability**:
- Register data: Updated daily
- Publication data: Updated weekly (Patents/Utility Models: Thursday, Designs/Trademarks: Friday)
**Search Limits**:
- Full accounts: Maximum 1000 results
- Test accounts: Maximum 100 results
version: 1.0.0
contact:
name: Wolfgang Stark
url: https://patent.dev
license:
name: MIT
url: https://opensource.org/licenses/MIT
servers:
- url: https://dpmaconnect.dpma.de/dpmaws/rest-services
description: Production server
security:
- BasicAuth: []
paths:
# ===== Common Endpoints =====
/{service}/version:
get:
summary: Get service version
description: Returns version information for the specified service
operationId: getVersion
tags:
- Common
parameters:
- name: service
in: path
required: true
schema:
type: string
enum:
- DPMAregisterPatService
- DPMAregisterGsmService
- DPMAregisterMarkeService
responses:
'200':
description: Version information
content:
text/plain:
schema:
type: string
example: "DPMAregisterPatService version 1.0"
# ===== Patent Service =====
/DPMAregisterPatService/search/{query}:
get:
summary: Search patents and utility models
description: |
Execute expert search query for patents and utility models.
Query syntax must follow DPMAregister expert search format.
Returns XML hit list matching PatentHitList.xsd schema.
operationId: searchPatents
tags:
- Patents
parameters:
- name: query
in: path
required: true
schema:
type: string
description: Expert search query string
example: "TI=Elektrofahrzeug"
responses:
'200':
description: Search results
content:
application/xml:
schema:
type: string
format: binary
'401':
description: Authentication failed
'403':
description: Forbidden
/DPMAregisterPatService/getRegisterInfo/{registeredNumber}:
get:
summary: Get patent/utility model details
description: |
Retrieve detailed information for a specific patent or utility model.
Returns XML following DPMA ST36 extension schema.
operationId: getPatentInfo
tags:
- Patents
parameters:
- name: registeredNumber
in: path
required: true
schema:
type: string
description: Leading registered number (unique identifier)
example: "DE102023000001A1"
responses:
'200':
description: Patent details
content:
application/xml:
schema:
type: string
format: binary
'401':
description: Authentication failed
'404':
description: Resource not found
/DPMAregisterPatService/getRegisterabzuege/{date}/{period}:
get:
summary: Get register extracts
description: |
Download register extract ZIP file for specified date and period.
Returns the most recent extract up to the specified date.
operationId: getPatentRegisterExtract
tags:
- Patents
parameters:
- name: date
in: path
required: true
schema:
type: string
format: date
description: Query date in YYYY-MM-DD format
example: "2024-10-23"
- name: period
in: path
required: true
schema:
type: string
enum: [daily, weekly, monthly, yearly]
description: Time period for extract
responses:
'200':
description: ZIP file containing register extract
content:
application/zip:
schema:
type: string
format: binary
'401':
description: Authentication failed
/DPMAregisterPatService/getPublikationsdaten_XML/{publicationWeek}:
get:
summary: Get publication data (XML)
description: |
Download bibliographic data including legal and procedural status in XML format.
Returns ZIP file: pat_pu_xml_<YYYYWW>.zip
operationId: getPublicationDataXML
tags:
- Patents
parameters:
- $ref: '#/components/parameters/PublicationWeek'
responses:
'200':
description: ZIP file containing publication data
content:
application/zip:
schema:
type: string
format: binary
'401':
description: Authentication failed
/DPMAregisterPatService/getAnmelderzitate_XML/{publicationWeek}:
get:
summary: Get applicant citations (XML)
description: |
Download applicant citations in XML format.
Returns ZIP file: pat_cit_<YYYYWW>.zip
operationId: getApplicantCitationsXML
tags:
- Patents
parameters:
- $ref: '#/components/parameters/PublicationWeek'
responses:
'200':
description: ZIP file containing applicant citations
content:
application/zip:
schema:
type: string
format: binary
'401':
description: Authentication failed
/DPMAregisterPatService/getOffenlegungsschriften_Volltext_XML/{publicationWeek}:
get:
summary: Get disclosure documents full-text (XML)
description: |
Download disclosure documents (A) as full-text in XML format.
Returns ZIP file: pat_vt_a_st36_<YYYYWW>.zip
operationId: getDisclosureDocumentsXML
tags:
- Patents
parameters:
- $ref: '#/components/parameters/PublicationWeek'
responses:
'200':
description: ZIP file containing disclosure documents
content:
application/zip:
schema:
type: string
format: binary
'401':
description: Authentication failed
/DPMAregisterPatService/getPatentschriften_Volltext_XML/{publicationWeek}:
get:
summary: Get patent specifications full-text (XML)
description: |
Download patent specifications (B, C) as full-text in XML format.
Returns ZIP file: pat_vt_c_st36_<YYYYWW>.zip
operationId: getPatentSpecificationsXML
tags:
- Patents
parameters:
- $ref: '#/components/parameters/PublicationWeek'
responses:
'200':
description: ZIP file containing patent specifications
content:
application/zip:
schema:
type: string
format: binary
'401':
description: Authentication failed
/DPMAregisterPatService/getEuropaeischePatentschriften_Volltext_XML/{publicationWeek}:
get:
summary: Get European patent specifications full-text (XML)
description: |
Download European patent specifications (T1-T5, T8, T9) as full-text in XML format.
Returns ZIP file: pat_vt_t_st36_<YYYYWW>.zip
operationId: getEuropeanPatentSpecificationsXML
tags:
- Patents
parameters:
- $ref: '#/components/parameters/PublicationWeek'
responses:
'200':
description: ZIP file containing European patent specifications
content:
application/zip:
schema:
type: string
format: binary
'401':
description: Authentication failed
/DPMAregisterPatService/getGebrauchsmuster_Volltext_XML/{publicationWeek}:
get:
summary: Get utility models full-text (XML)
description: |
Download utility models (U) as full-text in XML format.
Returns ZIP file: gbm_vt_u_st36_<YYYYWW>.zip
operationId: getUtilityModelsXML
tags:
- Patents
parameters:
- $ref: '#/components/parameters/PublicationWeek'
responses:
'200':
description: ZIP file containing utility models
content:
application/zip:
schema:
type: string
format: binary
'401':
description: Authentication failed
/DPMAregisterPatService/getOffenlegungsschriften_Komplett_PDF/{publicationWeek}:
get:
summary: Get disclosure documents complete (PDF)
description: |
Download complete disclosure documents (A) in PDF format.
Returns ZIP file: pat_vt_a_pdf_<YYYYWW>.zip
operationId: getDisclosureDocumentsPDF
tags:
- Patents
parameters:
- $ref: '#/components/parameters/PublicationWeek'
responses:
'200':
description: ZIP file containing disclosure documents PDFs
content:
application/zip:
schema:
type: string
format: binary
'401':
description: Authentication failed
/DPMAregisterPatService/getPatentschriften_Komplett_PDF/{publicationWeek}:
get:
summary: Get patent specifications complete (PDF)
description: |
Download complete patent specifications (B, C) in PDF format.
Returns ZIP file: pat_vt_c_pdf_<YYYYWW>.zip
operationId: getPatentSpecificationsPDF
tags:
- Patents
parameters:
- $ref: '#/components/parameters/PublicationWeek'
responses:
'200':
description: ZIP file containing patent specifications PDFs
content:
application/zip:
schema:
type: string
format: binary
'401':
description: Authentication failed
/DPMAregisterPatService/getEuropaeischePatentschriften_Komplett_PDF/{publicationWeek}:
get:
summary: Get European patent specifications complete (PDF)
description: |
Download complete European patent specifications (T1-T5, T8, T9) in PDF format.
Returns ZIP file: pat_vt_t_pdf_<YYYYWW>.zip
operationId: getEuropeanPatentSpecificationsPDF
tags:
- Patents
parameters:
- $ref: '#/components/parameters/PublicationWeek'
responses:
'200':
description: ZIP file containing European patent specifications PDFs
content:
application/zip:
schema:
type: string
format: binary
'401':
description: Authentication failed
/DPMAregisterPatService/getGebrauchsmuster_Komplett_PDF/{publicationWeek}:
get:
summary: Get utility models complete (PDF)
description: |
Download complete utility models (U) in PDF format.
Returns ZIP file: gbm_vt_u_pdf_<YYYYWW>.zip
operationId: getUtilityModelsPDF
tags:
- Patents
parameters:
- $ref: '#/components/parameters/PublicationWeek'
responses:
'200':
description: ZIP file containing utility models PDFs
content:
application/zip:
schema:
type: string
format: binary
'401':
description: Authentication failed
/DPMAregisterPatService/getPatentpublikation_PDF/{documentID}:
get:
summary: Get patent publication (PDF)
description: Download a single patent publication in PDF format by document ID
operationId: getPatentPublicationPDF
tags:
- Patents
parameters:
- name: documentID
in: path
required: true
schema:
type: string
description: Document ID
example: "DE102023000001A1"
responses:
'200':
description: PDF file of patent publication
content:
application/pdf:
schema:
type: string
format: binary
'401':
description: Authentication failed
'404':
description: Resource not found
/DPMAregisterPatService/getRecherchierbarerVolltext/{documentID}:
get:
summary: Get searchable full-text (PDF)
description: Download a patent publication as searchable full-text PDF by document ID
operationId: getSearchableFullText
tags:
- Patents
parameters:
- name: documentID
in: path
required: true
schema:
type: string
description: Document ID
example: "DE102023000001A1"
responses:
'200':
description: Searchable full-text PDF
content:
application/pdf:
schema:
type: string
format: binary
'401':
description: Authentication failed
'404':
description: Resource not found
# ===== Design Service =====
/DPMAregisterGsmService/search/{query}:
get:
summary: Search designs
description: |
Execute expert search query for designs.
Query syntax must follow DPMAregister expert search format.
Returns XML hit list matching DesignHitList.xsd schema.
operationId: searchDesigns
tags:
- Designs
parameters:
- name: query
in: path
required: true
schema:
type: string
description: Expert search query string
responses:
'200':
description: Search results
content:
application/xml:
schema:
type: string
format: binary
'401':
description: Authentication failed
/DPMAregisterGsmService/getRegisterInfo/{designNumber}:
get:
summary: Get design details
description: |
Retrieve detailed information for a specific design.
Returns XML following DPMA ST86 extension schema.
operationId: getDesignInfo
tags:
- Designs
parameters:
- name: designNumber
in: path
required: true
schema:
type: string
description: Design number (unique identifier)
example: "40202300001"
responses:
'200':
description: Design details
content:
application/xml:
schema:
type: string
format: binary
'401':
description: Authentication failed
'404':
description: Resource not found
/DPMAregisterGsmService/getRegisterFullImage/{designNumber}/{imageNumber}:
get:
summary: Get design image
description: Retrieve full-size image for a specific design
operationId: getDesignImage
tags:
- Designs
parameters:
- name: designNumber
in: path
required: true
schema:
type: string
description: Design number
- name: imageNumber
in: path
required: true
schema:
type: string
description: Image number
responses:
'200':
description: JPG image
content:
image/jpeg:
schema:
type: string
format: binary
'401':
description: Authentication failed
'404':
description: Resource not found
/DPMAregisterGsmService/getRegisterThumbnailImage/{designNumber}/{thumbnailNumber}:
get:
summary: Get design thumbnail
description: Retrieve thumbnail image for a specific design
operationId: getDesignThumbnail
tags:
- Designs
parameters:
- name: designNumber
in: path
required: true
schema:
type: string
description: Design number
- name: thumbnailNumber
in: path
required: true
schema:
type: string
description: Thumbnail number
responses:
'200':
description: JPG thumbnail
content:
image/jpeg:
schema:
type: string
format: binary
'401':
description: Authentication failed
'404':
description: Resource not found
/DPMAregisterGsmService/getRegisterabzuege/{date}/{period}:
get:
summary: Get design register extracts
description: Download register extract ZIP file for designs
operationId: getDesignRegisterExtract
tags:
- Designs
parameters:
- name: date
in: path
required: true
schema:
type: string
format: date
description: Query date in YYYY-MM-DD format
- name: period
in: path
required: true
schema:
type: string
enum: [daily, weekly, monthly, yearly]
responses:
'200':
description: ZIP file containing register extract
content:
application/zip:
schema:
type: string
format: binary
'401':
description: Authentication failed
/DPMAregisterGsmService/getBibliografischeDaten_eingetragen_XML/{publicationWeek}:
get:
summary: Get registered designs bibliographic data (XML)
description: |
Download bibliographic data for registered designs in XML format.
Returns ZIP file: gsm_bib_eing_xml_<YYYYWW>.zip
operationId: getDesignBibliographicDataXML
tags:
- Designs
parameters:
- $ref: '#/components/parameters/PublicationWeek'
responses:
'200':
description: ZIP file containing bibliographic data
content:
application/zip:
schema:
type: string
format: binary
'401':
description: Authentication failed
/DPMAregisterGsmService/getBilder_eingetragen_JPG_GIF/{publicationWeek}:
get:
summary: Get registered designs images (JPG/GIF)
description: |
Download images for registered designs in JPG/GIF format.
Returns ZIP file: gsm_bib_eing_<YYYYWW>.zip
operationId: getDesignImages
tags:
- Designs
parameters:
- $ref: '#/components/parameters/PublicationWeek'
responses:
'200':
description: ZIP file containing images
content:
application/zip:
schema:
type: string
format: binary
'401':
description: Authentication failed
# ===== Trademark Service =====
/DPMAregisterMarkeService/search/{query}:
get:
summary: Search trademarks
description: |
Execute expert search query for trademarks.
Query syntax must follow DPMAregister expert search format.
Returns XML hit list matching MarkenHitList.xsd schema.
operationId: searchTrademarks
tags:
- Trademarks
parameters:
- name: query
in: path
required: true
schema:
type: string
description: Expert search query string
responses:
'200':
description: Search results
content:
application/xml:
schema:
type: string
format: binary
'401':
description: Authentication failed
/DPMAregisterMarkeService/getRegisterInfo/{applicationNumber}:
get:
summary: Get trademark details
description: |
Retrieve detailed information for a specific trademark.
Returns XML following DPMA ST66 extension schema.
operationId: getTrademarkInfo
tags:
- Trademarks
parameters:
- name: applicationNumber
in: path
required: true
schema:
type: string
description: Application number (unique identifier)
example: "302023000001"
responses:
'200':
description: Trademark details
content:
application/xml:
schema:
type: string
format: binary
'401':
description: Authentication failed
'404':
description: Resource not found
/DPMAregisterMarkeService/getRegisterFullImage/{applicationNumber}:
get:
summary: Get trademark image
description: Retrieve full-size image for a specific trademark
operationId: getTrademarkImage
tags:
- Trademarks
parameters:
- name: applicationNumber
in: path
required: true
schema:
type: string
description: Application number
responses:
'200':
description: JPG image
content:
image/jpeg:
schema:
type: string
format: binary
'401':
description: Authentication failed
'404':
description: Resource not found
/DPMAregisterMarkeService/getRegisterThumbnailImage/{applicationNumber}:
get:
summary: Get trademark thumbnail
description: Retrieve thumbnail image for a specific trademark
operationId: getTrademarkThumbnail
tags:
- Trademarks
parameters:
- name: applicationNumber
in: path
required: true
schema:
type: string
description: Application number
responses:
'200':
description: JPG thumbnail
content:
image/jpeg:
schema:
type: string
format: binary
'401':
description: Authentication failed
'404':
description: Resource not found
/DPMAregisterMarkeService/getRegisterabzuege/{date}/{period}:
get:
summary: Get trademark register extracts
description: Download register extract ZIP file for trademarks
operationId: getTrademarkRegisterExtract
tags:
- Trademarks
parameters:
- name: date
in: path
required: true
schema:
type: string
format: date
description: Query date in YYYY-MM-DD format
- name: period
in: path
required: true
schema:
type: string
enum: [daily, weekly, monthly, yearly]
responses:
'200':
description: ZIP file containing register extract
content:
application/zip:
schema:
type: string
format: binary
'401':
description: Authentication failed
/DPMAregisterMarkeService/getBibliografischeDaten_angemeldet_XML_JPG/{publicationWeek}:
get:
summary: Get applied trademarks bibliographic data (XML/JPG)
description: |
Download bibliographic data and images for applied trademarks.
Returns ZIP file: mar_bib_ang_<YYYYWW>.zip
operationId: getTrademarkBibDataApplied
tags:
- Trademarks
parameters:
- $ref: '#/components/parameters/PublicationWeek'
responses:
'200':
description: ZIP file containing bibliographic data and images
content:
application/zip:
schema:
type: string
format: binary
'401':
description: Authentication failed
/DPMAregisterMarkeService/getBibliografischeDaten_eingetragen_XML_JPG_PDF/{publicationWeek}:
get:
summary: Get registered trademarks bibliographic data (XML/JPG/PDF)
description: |
Download bibliographic data, images, and goods/services lists for registered trademarks.
Includes geographical indications (Part 7 of trademark gazette) in PDF.
Returns ZIP file: mar_bib_wvz_bil_eing_<YYYYWW>.zip
operationId: getTrademarkBibDataRegistered
tags:
- Trademarks
parameters:
- $ref: '#/components/parameters/PublicationWeek'
responses:
'200':
description: ZIP file containing bibliographic data, images, and PDFs
content:
application/zip:
schema:
type: string
format: binary
'401':
description: Authentication failed
/DPMAregisterMarkeService/getBibliografischeDaten_zurueckgewiesen_zurueckgenommen_XML_PDF/{publicationWeek}:
get:
summary: Get rejected/withdrawn trademarks bibliographic data (XML/PDF)
description: |
Download bibliographic data and images for rejected and withdrawn trademarks.
Returns ZIP file: mar_bib_zur_<YYYYWW>.zip
operationId: getTrademarkBibDataRejected
tags:
- Trademarks
parameters:
- $ref: '#/components/parameters/PublicationWeek'
responses:
'200':
description: ZIP file containing bibliographic data and images
content:
application/zip:
schema:
type: string
format: binary
'401':
description: Authentication failed
components:
securitySchemes:
BasicAuth:
type: http
scheme: basic
description: |
HTTP Basic Authentication with username and password.
Credentials are Base64-encoded as: username:password
parameters:
PublicationWeek:
name: publicationWeek
in: path
required: true
schema:
type: string
pattern: '^\d{6}$'
description: Publication week in YYYYWW format (e.g., 202445 for year 2024, week 45)
example: "202445"
schemas:
ErrorResponse:
type: object
description: XML error response in Transaction format
xml:
name: Transaction
properties:
TransactionHeader:
type: object
properties:
SenderDetails:
type: object
properties:
RequestProducerDateTime:
type: string
format: date-time
TradeMarkTransactionBody:
type: object
properties:
TransactionErrorDetails:
type: object
properties:
TransactionError:
type: object
properties:
TransactionErrorCode:
type: string
example: "E001"
TransactionErrorText:
type: string
example: "Data not available"
tags:
- name: Common
description: Operations available on all services
- name: Patents
description: Operations for patents and utility models (DPMAregisterPatService)
- name: Designs
description: Operations for designs (DPMAregisterGsmService)
- name: Trademarks
description: Operations for trademarks (DPMAregisterMarkeService)