From 5ee6485ec6e71d09f0a4c4c7d1dc5dc205e4b26b Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 18 Sep 2018 09:31:22 +0200 Subject: [PATCH] Add missing key and remove unused key --- source/_components/sensor.fints.markdown | 81 +++++++++++++----------- 1 file changed, 44 insertions(+), 37 deletions(-) diff --git a/source/_components/sensor.fints.markdown b/source/_components/sensor.fints.markdown index 5181b80e176..986e84e7c79 100644 --- a/source/_components/sensor.fints.markdown +++ b/source/_components/sensor.fints.markdown @@ -24,52 +24,59 @@ For each account you have with the bank, a separate sensor is created. If you ha ```yaml # Example configuration.yaml entry sensor: - - platform: fints - sensors: - - bank_identification_number: ID_FOR_YOUR_BANK - username: YOUR_FINTS_USERNAME - pin: YOUR_PIN - url: URL_FOR_YOUR_BANK + - platform: fints + bank_identification_number: ID_FOR_YOUR_BANK + username: YOUR_FINTS_USERNAME + pin: YOUR_PIN + url: URL_FOR_YOUR_BANK ``` {% endraw %} {% configuration %} -sensors: - description: List of your sensors. +name: + description: Name of the bank. + required: false + type: string +bank_identification_number: + description: Bank identification number, in most cases the "Bankleitzahl". required: true - type: map - keys: + type: string +username: + description: Your FinTS username. + required: true + type: string +pin: + description: Your FinTS PIN or password. + required: true + type: string +url: + description: URL of your bank's FinTS server. + required: true + type: string +accounts: + description: The balance accounts to show. If not set then all accounts will show up. + required: false + type: list + keys: + account: + description: The IBAN of the blance account. + required: true + type: string name: - description: (optional) name of the bank. + description: Use this field to give the account a meaningful name. required: false type: string - bank_identification_number: - description: Bank identification number, in most cases the "Bankleitzahl". +holdings: + description: The holding accounts of your bank. If not set then all accounts will show up. + required: false + type: list + keys: + account: + description: The classic account number. required: true type: string - username: - description: Your FinTS username. - required: true - type: string - pin: - description: Your FinTS PIN or password. - required: true - type: string - url: - description: URL of your bank's FinTS server. - required: true - type: string - accounts: - description: (optional) You can configure with of the accounts of your bank shall be shown in Home Assistant. If this attribute is set, only the accounts listed here are shown. + name: + description: Use this field to give the account a meaningful name. required: false - type: list - keys: - account: - description: For balance accounts use the IBAN of the account for holdings accounts use the classic account number. - required: true - type: string - name: - description: (optional) Use this field to give the account a meaningful name. - required: false - type: string + type: string {% endconfiguration %}