Bunq · Schema

CertificatePinned

Banking

Properties

Name Type Description
certificate_chain array The certificate chain in .PEM format.
View JSON Schema on GitHub

JSON Schema

bunq-certificatepinned-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CertificatePinned",
  "title": "CertificatePinned",
  "type": "object",
  "properties": {
    "certificate_chain": {
      "type": "array",
      "description": "The certificate chain in .PEM format.",
      "readOnly": false,
      "writeOnly": false,
      "items": {
        "$ref": "#/components/schemas/Certificate"
      }
    }
  },
  "required": [
    "certificate_chain"
  ]
}