Bunq · Schema

CertificatePinnedRead

Banking

Properties

Name Type Description
certificate_chain string The certificate chain in .PEM format. Certificates are glued with newline characters.
id integer The id generated for the pinned certificate chain.
View JSON Schema on GitHub

JSON Schema

bunq-certificatepinnedread-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CertificatePinnedRead",
  "title": "CertificatePinnedRead",
  "type": "object",
  "properties": {
    "certificate_chain": {
      "type": "string",
      "description": "The certificate chain in .PEM format. Certificates are glued with newline characters.",
      "readOnly": true,
      "writeOnly": false
    },
    "id": {
      "type": "integer",
      "description": "The id generated for the pinned certificate chain.",
      "readOnly": true,
      "writeOnly": false
    }
  }
}