Skip to content

Commit d7a4389

Browse files
committed
Fix data yaml
1 parent 7c9835f commit d7a4389

File tree

1 file changed

+16
-1
lines changed

1 file changed

+16
-1
lines changed

src/apps/weblib/typeschema-api/data.yaml

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,12 @@ definitions:
6969
type: array
7070
items:
7171
$ref: DimensionValue
72+
isContiguous:
73+
description: |
74+
If set to true, the dimension handled as a contiguous dimension
75+
like timestamps.
76+
type: boolean
77+
7278

7379
IndexDimension:
7480
$extends: SeriesBase
@@ -97,6 +103,11 @@ definitions:
97103
type: array
98104
items:
99105
type: number
106+
isContiguous:
107+
description: |
108+
If set to true, the dimension handled as a contiguous dimension
109+
like timestamps.
110+
type: boolean
100111
required: [categories]
101112

102113
ImplicitStringDimension:
@@ -238,7 +249,11 @@ definitions:
238249
length:
239250
description: Count of values in the series.
240251
type: number
241-
required: [type, categories, length]
252+
isContiguous:
253+
description: |
254+
The dimension handled as a contiguous dimension like timestamps.
255+
type: boolean
256+
required: [type, categories, length, isContiguous]
242257

243258
MeasureInfo:
244259
$extends: SeriesBase

0 commit comments

Comments
 (0)