{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/InstallationToken", "title": "InstallationToken", "type": "object", "properties": { "id": { "type": "integer", "description": "The id of the Token.", "readOnly": true, "writeOnly": false }, "created": { "type": "string", "description": "The timestamp of the Token's creation.", "readOnly": true, "writeOnly": false }, "updated": { "type": "string", "description": "The timestamp of the Token's last update.", "readOnly": true, "writeOnly": false }, "token": { "type": "string", "description": "The installation token is the token the client has to provide in the \"X-Bunq-Client-Authentication\" header for the creation of a DeviceServer and SessionServer.", "readOnly": true, "writeOnly": false } } }