Adyen · Schema

File

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

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