Bunq · Schema

PermittedDevice

Banking

Properties

Name Type Description
description string The description of the device that may use the credential.
ip string The IP address of the device that may use the credential.
View JSON Schema on GitHub

JSON Schema

bunq-permitteddevice-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PermittedDevice",
  "title": "PermittedDevice",
  "type": "object",
  "properties": {
    "description": {
      "type": "string",
      "description": "The description of the device that may use the credential.",
      "readOnly": true,
      "writeOnly": false
    },
    "ip": {
      "type": "string",
      "description": "The IP address of the device that may use the credential.",
      "readOnly": true,
      "writeOnly": false
    }
  }
}