Set format to binary for certificate files

This commit is contained in:
Sander Jochems 2025-02-22 14:57:46 +01:00
parent f80c187581
commit 7b492c5cd5
2 changed files with 12 additions and 6 deletions

View File

@ -30,13 +30,16 @@
"required": ["certificate", "certificate_key"],
"properties": {
"certificate": {
"type": "string"
"type": "string",
"format": "binary"
},
"certificate_key": {
"type": "string"
"type": "string",
"format": "binary"
},
"intermediate_certificate": {
"type": "string"
"type": "string",
"format": "binary"
}
}
}

View File

@ -18,13 +18,16 @@
"required": ["certificate", "certificate_key"],
"properties": {
"certificate": {
"type": "string"
"type": "string",
"format": "binary"
},
"certificate_key": {
"type": "string"
"type": "string",
"format": "binary"
},
"intermediate_certificate": {
"type": "string"
"type": "string",
"format": "binary"
}
}
}