| 1234567891011121314151617181920212223242526272829303132333435 | 
							- {
 
- 	"operationId": "downloadCertificate",
 
- 	"summary": "Downloads a Certificate",
 
- 	"tags": ["Certificates"],
 
- 	"security": [
 
- 		{
 
- 			"BearerAuth": ["certificates"]
 
- 		}
 
- 	],
 
- 	"parameters": [
 
- 		{
 
- 			"in": "path",
 
- 			"name": "certID",
 
- 			"schema": {
 
- 				"type": "integer",
 
- 				"minimum": 1
 
- 			},
 
- 			"required": true,
 
- 			"example": 1
 
- 		}
 
- 	],
 
- 	"responses": {
 
- 		"200": {
 
- 			"description": "200 response",
 
- 			"content": {
 
- 				"application/zip": {
 
- 					"schema": {
 
- 						"type": "string",
 
- 						"format": "binary"
 
- 					}
 
- 				}
 
- 			}
 
- 		}
 
- 	}
 
- }
 
 
  |