{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/management-file-schema.json",
"title": "File",
"description": "File schema from Adyen API",
"type": "object",
"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"
]
}