-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathconfig.yaml
More file actions
63 lines (63 loc) · 1.18 KB
/
config.yaml
File metadata and controls
63 lines (63 loc) · 1.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
name: OCPP Proxy
version: '0.1.0'
slug: ocpp-proxy
description: 'OCPP 1.6 JSON WebSocket proxy for EV charger sharing'
homeassistant_api: true
arch:
- amd64
- armv7
- aarch64
- armhf
startup: services
boot: auto
options:
allow_shared_charging: true
preferred_provider: ''
blocked_providers: []
allowed_providers: []
presence_sensor: ''
override_input_boolean: ''
rate_limit_seconds: 10
ocpp_services: []
schema:
allow_shared_charging:
type: boolean
preferred_provider:
type: string
blocked_providers:
type: array
items:
type: string
allowed_providers:
type: array
items:
type: string
presence_sensor:
type: string
override_input_boolean:
type: string
rate_limit_seconds:
type: integer
ocpp_services:
type: array
items:
type: object
properties:
id:
type: string
url:
type: string
auth_type:
type: string
enum: ['none', 'basic', 'token']
username:
type: string
password:
type: string
token:
type: string
enabled:
type: boolean
required:
- id
- url