Adyen · Schema

File

File schema from Adyen API

PaymentsFinancial ServicesFintech

Properties

Name Type Description
data string The certificate content converted to a Base64-encoded string.
name string The name of the certificate. Must be unique across Wi-Fi profiles.
View JSON Schema on GitHub

JSON Schema

management-file-schema.json Raw ↑
{
  "$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"
  ]
}