{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/File",
"title": "File",
"properties": {
"data": {
"description": "The certificate content converted to a Base64-encoded string.",
"type": "string"
},
"name": {
"description": "The name of the certificate. Must be unique across Wi-Fi profiles.",
"type": "string"
}
},
"required": [
"name",
"data"
],
"type": "object"
}