Fully implement getConfiguration
[e-mobility-charging-stations-simulator.git] / src / assets / station-templates / virtual-simple-atg.station-template.json
1 {
2 "authorizationFile": "./src/assets/authorization-tags.json",
3 "baseName": "CS-BASIC",
4 "chargePointModel": "Simulator simple",
5 "chargePointVendor": "Ovomaltin",
6 "power": 75000,
7 "powerUnit": "W",
8 "numberOfConnectors": 3,
9 "randomConnectors": false,
10 "Configuration": {
11 "configurationKey": [
12 {
13 "key": "MeterValueSampleInterval",
14 "readonly": false,
15 "value": 30
16 },
17 {
18 "key": "SupportedFeatureProfiles",
19 "readonly": true,
20 "value": "Core,LocalAuthListManagement"
21 },
22 {
23 "key": "LocalAuthListEnabled",
24 "readonly": false,
25 "value": false
26 },
27 {
28 "key": "AuthorizeRemoteTxRequests",
29 "readonly": false,
30 "value": false
31 }
32 ]
33 },
34 "AutomaticTransactionGenerator": {
35 "enable": true,
36 "minDuration": 60,
37 "maxDuration": 80,
38 "minDelayBetweenTwoTransactions": 15,
39 "maxDelayBetweenTwoTransactions": 30,
40 "probabilityOfStart": 1,
41 "stopAfterHours": 0.3,
42 "stopOnConnectionFailure": false
43 },
44 "Connectors": {
45 "0": {},
46 "1": {
47 "bootStatus": "Available",
48 "MeterValues": [
49 {
50 "unit": "Percent",
51 "context": "Sample.Periodic",
52 "measurand": "SoC",
53 "location": "EV"
54 },
55 {
56 "unit": "Wh",
57 "context": "Sample.Periodic"
58 }
59 ]
60 },
61 "2": {
62 "bootStatus": "Preparing",
63 "MeterValues": [
64 {
65 "unit": "Percent",
66 "context": "Sample.Periodic",
67 "measurand": "SoC",
68 "location": "EV"
69 },
70 {
71 "unit": "Wh",
72 "context": "Sample.Periodic"
73 }
74 ]
75 },
76 "3": {
77 "bootStatus": "Faulted",
78 "MeterValues": [
79 {
80 "unit": "Percent",
81 "context": "Sample.Periodic",
82 "measurand": "SoC",
83 "location": "EV"
84 },
85 {
86 "unit": "Wh",
87 "context": "Sample.Periodic"
88 }
89 ]
90 }
91 }
92 }