-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathopenapi.yaml
More file actions
471 lines (448 loc) · 13.8 KB
/
openapi.yaml
File metadata and controls
471 lines (448 loc) · 13.8 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
openapi: "3.1.0"
info:
title: HomeAutomationServer API
version: 0.0.4
description: This is the API documentation for the HomeAutomationServer API. It provides endpoints to manage automations, push devices, and window states, etc.
servers:
- url: http://localhost:8080
description: Local deployment of the server
paths:
/config/automations:
get:
summary: Get all automations
description: Retrieve a list of all available automations.
operationId: getAutomations
responses:
"200":
description: A success response with all available automations.
content:
application/json:
schema:
type: array
items:
$ref: "#/components/schemas/Automation"
/config/automations/{name}/activate:
post:
summary: Activate an automation
description: Activate a specific automation by name.
operationId: activateAutomation
parameters:
- name: name
in: path
description: Name of the automation
required: true
schema:
type: string
responses:
"200":
description: The automation was activated.
/config/automations/{name}/deactivate:
post:
summary: Deactivate an automation
description: Deactivate a specific automation by name.
operationId: deactivateAutomation
parameters:
- name: name
in: path
description: Name of the automation
required: true
schema:
type: string
responses:
"200":
description: The automation was deactivated.
/config/automations/{name}/stop:
post:
summary: Stop a running automation
description: Stop a currently running automation by name.
operationId: stopAutomation
parameters:
- name: name
in: path
description: Name of the automation
required: true
schema:
type: string
responses:
"200":
description: The currently running automation was stopped or the automation is not running.
/pushdevices:
post:
summary: Register a push device
description: Register a new device for push notifications.
operationId: registerPushDevice
requestBody:
description: New device to register for push notifications.
required: true
content:
application/json:
schema:
$ref: "#/components/schemas/PushDevice"
responses:
"200":
description: The device was registered for push notifications.
"500":
description: Some internal server error.
/windowstates:
get:
summary: Get window states
description: Retrieve the current states of all windows.
operationId: getWindowStates
responses:
"200":
description: A success response with all window states.
content:
application/json:
schema:
type: object
properties:
windowStates:
type: array
items:
$ref: "#/components/schemas/WindowState"
required:
- windowStates
/actions:
get:
summary: Get action logs
description: Retrieve logged HomeKit actions.
operationId: getActions
parameters:
- name: limit
in: query
description: Maximum number of actions to return (default 1000, max 1000)
required: false
schema:
type: integer
minimum: 1
maximum: 1000
default: 1000
responses:
"200":
description: A success response with action logs.
content:
application/json:
schema:
type: array
items:
$ref: "#/components/schemas/ActionLogItem"
delete:
summary: Clear action logs
description: Remove all logged actions.
operationId: clearActions
responses:
"200":
description: Action logs cleared successfully.
/lights/set:
post:
summary: Set light properties
description: Set color and/or brightness of a light by placeId and name.
operationId: setLightProperties
requestBody:
required: true
content:
application/json:
schema:
$ref: "#/components/schemas/SetLightRequest"
responses:
"200":
description: Light properties were set successfully.
"400":
description: Bad request - invalid parameters.
/entities:
get:
summary: Get entities with history
description: Retrieve a list of all entities that have historical data available.
operationId: getEntitiesWithHistory
responses:
"200":
description: A success response with all entities that have history.
content:
application/json:
schema:
type: array
items:
$ref: "#/components/schemas/EntityInfo"
/entities/history:
get:
summary: Get entity history
description: Retrieve historical data for a specific entity with optional time range and pagination.
operationId: getEntityHistory
parameters:
- name: placeId
in: query
description: The place identifier of the entity
required: true
schema:
type: string
- name: name
in: query
description: The name of the entity
required: true
schema:
type: string
- name: characteristicsName
in: query
description: Optional characteristics name of the entity
required: false
schema:
type: string
- name: characteristicType
in: query
description: The characteristic type of the entity
required: true
schema:
type: string
- name: startDate
in: query
description: ISO 8601 timestamp for the start of the time range (inclusive)
required: false
schema:
type: string
format: date-time
- name: endDate
in: query
description: ISO 8601 timestamp for the end of the time range (exclusive)
required: false
schema:
type: string
format: date-time
- name: cursor
in: query
description: ISO 8601 timestamp cursor for pagination (fetch items older than this)
required: false
schema:
type: string
format: date-time
- name: limit
in: query
description: Maximum number of history items to return (default 100, max 1000)
required: false
schema:
type: integer
minimum: 1
maximum: 1000
default: 100
responses:
"200":
description: A success response with entity history data.
content:
application/json:
schema:
$ref: "#/components/schemas/EntityHistoryResponse"
"400":
description: Bad request - invalid parameters.
components:
schemas:
Automation:
type: object
properties:
name:
type: string
description: The name of the automation.
isActive:
type: boolean
description: Indicates if the automation is active.
isRunning:
type: boolean
description: Indicates if the automation is currently running.
required:
- name
- isActive
- isRunning
PushDevice:
type: object
properties:
deviceName:
type: string
description: The name of the device that created this token.
tokenString:
type: string
description: The token string for push notifications.
tokenType:
type: string
enum: [pushNotification, liveActivityStart, liveActivityUpdate]
description: The type of the push notification.
activityType:
type: string
description: Type of the activity (e.g., WindowAttributes) - only available for tokens of type "liveActivityUpdate".
required:
- deviceName
- tokenString
- tokenType
WindowState:
type: object
properties:
name:
type: string
description: The name of the window.
openedIsoTimeStamp:
type: string
description: The ISO timestamp when the window was opened.
maxOpenDuration:
type: number
description: The maximum duration the window can remain open.
required:
- name
- openedIsoTimeStamp
- maxOpenDuration
ActionLogItem:
type: object
properties:
id:
type: string
format: uuid
description: Unique identifier for the log item.
timestamp:
type: string
format: date-time
description: The ISO timestamp when the action was logged.
entityId:
$ref: "#/components/schemas/EntityId"
actionName:
type: string
description: The name of the action that was performed.
detailDescription:
type: string
description: A detailed description of the action.
hasCacheHit:
type: boolean
description: Indicates if the action was a cache hit.
required:
- id
- timestamp
- entityId
- actionName
- detailDescription
- hasCacheHit
EntityId:
type: object
properties:
placeId:
type: string
description: The identifier of the place.
name:
type: string
description: The name of the entity.
characteristicsName:
type: string
description: Optional name of the characteristic (may be empty).
characteristicType:
type: string
description: The type of characteristic.
required:
- placeId
- name
- characteristicType
SetLightRequest:
type: object
properties:
placeId:
type: string
description: The place identifier (e.g. room name).
name:
type: string
description: The name of the light entity.
hexColor:
type: string
description: Hex color string (e.g. "#FF0000" or "FF0000").
brightness:
type: integer
minimum: 0
maximum: 100
description: Brightness level 0-100.
required:
- placeId
- name
EntityHistoryItem:
type: object
properties:
timestamp:
type: string
format: date-time
description: The ISO timestamp of this historical data point.
motionDetected:
type: boolean
description: Motion sensor state (if applicable).
illuminanceInLux:
type: number
description: Illuminance in lux (if applicable).
isDeviceOn:
type: boolean
description: Device power state (if applicable).
brightness:
type: integer
description: Light brightness level 0-100 (if applicable).
colorTemperature:
type: number
format: float
description: Color temperature normalized to 0...1 warm...cold (if applicable).
colorRed:
type: number
format: float
description: RGB color red component 0...1 (if applicable).
colorGreen:
type: number
format: float
description: RGB color green component 0...1 (if applicable).
colorBlue:
type: number
format: float
description: RGB color blue component 0...1 (if applicable).
isContactOpen:
type: boolean
description: Contact sensor state (if applicable).
isDoorLocked:
type: boolean
description: Door lock state (if applicable).
stateOfCharge:
type: integer
description: Battery state of charge percentage (if applicable).
isHeaterActive:
type: boolean
description: Heater active state (if applicable).
temperatureInC:
type: number
description: Temperature in Celsius (if applicable).
relativeHumidity:
type: number
description: Relative humidity percentage 0-100 (if applicable).
carbonDioxideSensorId:
type: integer
description: Carbon dioxide level in ppm (if applicable).
pmDensity:
type: number
description: Particulate matter density PM2.5/PM10 (if applicable).
airQuality:
type: integer
description: Air quality index (if applicable).
valveOpen:
type: boolean
description: Valve open state (if applicable).
required:
- timestamp
EntityHistoryResponse:
type: object
properties:
items:
type: array
items:
$ref: "#/components/schemas/EntityHistoryItem"
description: Array of historical data points.
nextCursor:
type: string
format: date-time
description: Cursor for the next page of results (timestamp of the last item, or null if no more data).
required:
- items
EntityInfo:
type: object
properties:
id:
type: string
description: Unique identifier composed of placeId, name, and characteristic type.
entityId:
$ref: "#/components/schemas/EntityId"
required:
- id
- entityId