Compare commits

..

2 Commits

Author SHA1 Message Date
Sander Jochems
3a6b19e834
Merge 7b492c5cd572f9dd607a4becfdd68ed9b4999f96 into 79d28f03d035114b80dcd04845306ecb98175074 2025-02-22 13:57:54 +00:00
Sander Jochems
7b492c5cd5 Set format to binary for certificate files 2025-02-22 14:57:46 +01:00
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"
}
}
}