You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: openapi/core-data.yaml
+17-18
Original file line number
Diff line number
Diff line change
@@ -351,6 +351,15 @@ components:
351
351
minimum: 0
352
352
default: 0
353
353
description: "The number of items to skip before starting to collect the result set."
354
+
readingOffsetParam:
355
+
in: query
356
+
name: offset
357
+
required: false
358
+
schema:
359
+
type: integer
360
+
minimum: 0
361
+
default: 0
362
+
description: "The number of items to skip before starting to collect the result set. Specify -1 will not count the total reading to improve the performance for the large dataset."
summary: "Given the entire range of readings sorted by origin descending, returns a portion of that range according to the offset and limit parameters. Readings returned will all inherit from BaseReading but their concrete types will be either SimpleReading or BinaryReading, potentially interleaved."
summary: "Given a range of readings from the specified device sorted by origin descending, returns a portion of that range according to the device name, offset and limit parameters."
@@ -1344,7 +1353,7 @@ paths:
1344
1353
schema:
1345
1354
type: string
1346
1355
description: The device resource name of readings.
summary: "Return a paginated range of readings by deviceName and specified time range while also allowing multiple resource names specified in the request body as query criteria. If resource names or request body is empty, return all the readings that meet deviceName and specified time range."
0 commit comments