mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-07-21 08:16:53 +00:00
Add missing key and remove unused key
This commit is contained in:
parent
900ad16bb5
commit
5ee6485ec6
@ -24,52 +24,59 @@ For each account you have with the bank, a separate sensor is created. If you ha
|
|||||||
```yaml
|
```yaml
|
||||||
# Example configuration.yaml entry
|
# Example configuration.yaml entry
|
||||||
sensor:
|
sensor:
|
||||||
- platform: fints
|
- platform: fints
|
||||||
sensors:
|
bank_identification_number: ID_FOR_YOUR_BANK
|
||||||
- bank_identification_number: ID_FOR_YOUR_BANK
|
username: YOUR_FINTS_USERNAME
|
||||||
username: YOUR_FINTS_USERNAME
|
pin: YOUR_PIN
|
||||||
pin: YOUR_PIN
|
url: URL_FOR_YOUR_BANK
|
||||||
url: URL_FOR_YOUR_BANK
|
|
||||||
```
|
```
|
||||||
{% endraw %}
|
{% endraw %}
|
||||||
|
|
||||||
{% configuration %}
|
{% configuration %}
|
||||||
sensors:
|
name:
|
||||||
description: List of your sensors.
|
description: Name of the bank.
|
||||||
|
required: false
|
||||||
|
type: string
|
||||||
|
bank_identification_number:
|
||||||
|
description: Bank identification number, in most cases the "Bankleitzahl".
|
||||||
required: true
|
required: true
|
||||||
type: map
|
type: string
|
||||||
keys:
|
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:
|
name:
|
||||||
description: (optional) name of the bank.
|
description: Use this field to give the account a meaningful name.
|
||||||
required: false
|
required: false
|
||||||
type: string
|
type: string
|
||||||
bank_identification_number:
|
holdings:
|
||||||
description: Bank identification number, in most cases the "Bankleitzahl".
|
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
|
required: true
|
||||||
type: string
|
type: string
|
||||||
username:
|
name:
|
||||||
description: Your FinTS username.
|
description: Use this field to give the account a meaningful name.
|
||||||
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.
|
|
||||||
required: false
|
required: false
|
||||||
type: list
|
type: string
|
||||||
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
|
|
||||||
{% endconfiguration %}
|
{% endconfiguration %}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user