@karmaniverous/jeeves-watcher 0.2.3 → 0.2.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +15 -0
- package/config.schema.json +117 -81
- package/dist/cjs/index.js +422 -10
- package/dist/cli/jeeves-watcher/index.js +421 -11
- package/dist/index.d.ts +150 -5
- package/dist/index.iife.js +422 -12
- package/dist/index.iife.min.js +1 -1
- package/dist/mjs/index.js +422 -12
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -94,6 +94,20 @@ The watcher will:
|
|
|
94
94
|
|
|
95
95
|
## Configuration
|
|
96
96
|
|
|
97
|
+
### Environment Variable Substitution
|
|
98
|
+
|
|
99
|
+
Config strings support `${VAR_NAME}` syntax for environment variable injection:
|
|
100
|
+
|
|
101
|
+
```json
|
|
102
|
+
{
|
|
103
|
+
"embedding": {
|
|
104
|
+
"apiKey": "${GOOGLE_API_KEY}"
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
```
|
|
108
|
+
|
|
109
|
+
If `GOOGLE_API_KEY` is set in the environment, the value is substituted at config load time. **Unresolvable expressions are left untouched** — this allows `${...}` template syntax used in inference rule `set` values (e.g. `${frontmatter.title}`, `${file.path}`) to pass through for later resolution by the rules engine.
|
|
110
|
+
|
|
97
111
|
### Watch Paths
|
|
98
112
|
|
|
99
113
|
```json
|
|
@@ -107,6 +121,7 @@ The watcher will:
|
|
|
107
121
|
|
|
108
122
|
- **`paths`**: Array of glob patterns or directories to watch
|
|
109
123
|
- **`ignored`**: Array of patterns to exclude
|
|
124
|
+
- **`respectGitignore`**: (default: `true`) Skip processing files ignored by `.gitignore` in git repositories. Nested `.gitignore` files are respected within their subtree.
|
|
110
125
|
|
|
111
126
|
### Embedding Provider
|
|
112
127
|
|
package/config.schema.json
CHANGED
|
@@ -22,6 +22,9 @@
|
|
|
22
22
|
},
|
|
23
23
|
"stabilityThresholdMs": {
|
|
24
24
|
"$ref": "#/definitions/__schema10"
|
|
25
|
+
},
|
|
26
|
+
"respectGitignore": {
|
|
27
|
+
"$ref": "#/definitions/__schema12"
|
|
25
28
|
}
|
|
26
29
|
},
|
|
27
30
|
"required": [
|
|
@@ -33,7 +36,7 @@
|
|
|
33
36
|
"description": "Configuration file watch settings.",
|
|
34
37
|
"allOf": [
|
|
35
38
|
{
|
|
36
|
-
"$ref": "#/definitions/
|
|
39
|
+
"$ref": "#/definitions/__schema14"
|
|
37
40
|
}
|
|
38
41
|
]
|
|
39
42
|
},
|
|
@@ -41,28 +44,28 @@
|
|
|
41
44
|
"type": "object",
|
|
42
45
|
"properties": {
|
|
43
46
|
"provider": {
|
|
44
|
-
"$ref": "#/definitions/
|
|
47
|
+
"$ref": "#/definitions/__schema17"
|
|
45
48
|
},
|
|
46
49
|
"model": {
|
|
47
|
-
"$ref": "#/definitions/
|
|
50
|
+
"$ref": "#/definitions/__schema19"
|
|
48
51
|
},
|
|
49
52
|
"chunkSize": {
|
|
50
|
-
"$ref": "#/definitions/
|
|
53
|
+
"$ref": "#/definitions/__schema21"
|
|
51
54
|
},
|
|
52
55
|
"chunkOverlap": {
|
|
53
|
-
"$ref": "#/definitions/
|
|
56
|
+
"$ref": "#/definitions/__schema23"
|
|
54
57
|
},
|
|
55
58
|
"dimensions": {
|
|
56
|
-
"$ref": "#/definitions/
|
|
59
|
+
"$ref": "#/definitions/__schema25"
|
|
57
60
|
},
|
|
58
61
|
"apiKey": {
|
|
59
|
-
"$ref": "#/definitions/
|
|
62
|
+
"$ref": "#/definitions/__schema27"
|
|
60
63
|
},
|
|
61
64
|
"rateLimitPerMinute": {
|
|
62
|
-
"$ref": "#/definitions/
|
|
65
|
+
"$ref": "#/definitions/__schema29"
|
|
63
66
|
},
|
|
64
67
|
"concurrency": {
|
|
65
|
-
"$ref": "#/definitions/
|
|
68
|
+
"$ref": "#/definitions/__schema31"
|
|
66
69
|
}
|
|
67
70
|
},
|
|
68
71
|
"description": "Embedding model configuration."
|
|
@@ -71,13 +74,13 @@
|
|
|
71
74
|
"type": "object",
|
|
72
75
|
"properties": {
|
|
73
76
|
"url": {
|
|
74
|
-
"$ref": "#/definitions/
|
|
77
|
+
"$ref": "#/definitions/__schema33"
|
|
75
78
|
},
|
|
76
79
|
"collectionName": {
|
|
77
|
-
"$ref": "#/definitions/
|
|
80
|
+
"$ref": "#/definitions/__schema34"
|
|
78
81
|
},
|
|
79
82
|
"apiKey": {
|
|
80
|
-
"$ref": "#/definitions/
|
|
83
|
+
"$ref": "#/definitions/__schema35"
|
|
81
84
|
}
|
|
82
85
|
},
|
|
83
86
|
"required": [
|
|
@@ -90,7 +93,7 @@
|
|
|
90
93
|
"description": "Directory for persisted metadata sidecar files.",
|
|
91
94
|
"allOf": [
|
|
92
95
|
{
|
|
93
|
-
"$ref": "#/definitions/
|
|
96
|
+
"$ref": "#/definitions/__schema37"
|
|
94
97
|
}
|
|
95
98
|
]
|
|
96
99
|
},
|
|
@@ -98,7 +101,7 @@
|
|
|
98
101
|
"description": "API server configuration.",
|
|
99
102
|
"allOf": [
|
|
100
103
|
{
|
|
101
|
-
"$ref": "#/definitions/
|
|
104
|
+
"$ref": "#/definitions/__schema38"
|
|
102
105
|
}
|
|
103
106
|
]
|
|
104
107
|
},
|
|
@@ -106,7 +109,7 @@
|
|
|
106
109
|
"description": "Extractor configurations keyed by name.",
|
|
107
110
|
"allOf": [
|
|
108
111
|
{
|
|
109
|
-
"$ref": "#/definitions/
|
|
112
|
+
"$ref": "#/definitions/__schema41"
|
|
110
113
|
}
|
|
111
114
|
]
|
|
112
115
|
},
|
|
@@ -114,7 +117,7 @@
|
|
|
114
117
|
"description": "Rules for inferring metadata from file attributes.",
|
|
115
118
|
"allOf": [
|
|
116
119
|
{
|
|
117
|
-
"$ref": "#/definitions/
|
|
120
|
+
"$ref": "#/definitions/__schema42"
|
|
118
121
|
}
|
|
119
122
|
]
|
|
120
123
|
},
|
|
@@ -122,7 +125,7 @@
|
|
|
122
125
|
"description": "Reusable named JsonMap transformations.",
|
|
123
126
|
"allOf": [
|
|
124
127
|
{
|
|
125
|
-
"$ref": "#/definitions/
|
|
128
|
+
"$ref": "#/definitions/__schema50"
|
|
126
129
|
}
|
|
127
130
|
]
|
|
128
131
|
},
|
|
@@ -130,7 +133,7 @@
|
|
|
130
133
|
"description": "Logging configuration.",
|
|
131
134
|
"allOf": [
|
|
132
135
|
{
|
|
133
|
-
"$ref": "#/definitions/
|
|
136
|
+
"$ref": "#/definitions/__schema51"
|
|
134
137
|
}
|
|
135
138
|
]
|
|
136
139
|
},
|
|
@@ -138,7 +141,23 @@
|
|
|
138
141
|
"description": "Timeout in milliseconds for graceful shutdown.",
|
|
139
142
|
"allOf": [
|
|
140
143
|
{
|
|
141
|
-
"$ref": "#/definitions/
|
|
144
|
+
"$ref": "#/definitions/__schema54"
|
|
145
|
+
}
|
|
146
|
+
]
|
|
147
|
+
},
|
|
148
|
+
"maxRetries": {
|
|
149
|
+
"description": "Maximum consecutive system-level failures before triggering fatal error. Default: Infinity.",
|
|
150
|
+
"allOf": [
|
|
151
|
+
{
|
|
152
|
+
"$ref": "#/definitions/__schema55"
|
|
153
|
+
}
|
|
154
|
+
]
|
|
155
|
+
},
|
|
156
|
+
"maxBackoffMs": {
|
|
157
|
+
"description": "Maximum backoff delay in milliseconds for system errors. Default: 60000.",
|
|
158
|
+
"allOf": [
|
|
159
|
+
{
|
|
160
|
+
"$ref": "#/definitions/__schema56"
|
|
142
161
|
}
|
|
143
162
|
]
|
|
144
163
|
}
|
|
@@ -219,13 +238,24 @@
|
|
|
219
238
|
"type": "number"
|
|
220
239
|
},
|
|
221
240
|
"__schema12": {
|
|
241
|
+
"description": "Skip files ignored by .gitignore in git repositories. Only applies to repos with a .git directory. Default: true.",
|
|
242
|
+
"allOf": [
|
|
243
|
+
{
|
|
244
|
+
"$ref": "#/definitions/__schema13"
|
|
245
|
+
}
|
|
246
|
+
]
|
|
247
|
+
},
|
|
248
|
+
"__schema13": {
|
|
249
|
+
"type": "boolean"
|
|
250
|
+
},
|
|
251
|
+
"__schema14": {
|
|
222
252
|
"type": "object",
|
|
223
253
|
"properties": {
|
|
224
254
|
"enabled": {
|
|
225
255
|
"description": "Enable automatic reloading when config file changes.",
|
|
226
256
|
"allOf": [
|
|
227
257
|
{
|
|
228
|
-
"$ref": "#/definitions/
|
|
258
|
+
"$ref": "#/definitions/__schema15"
|
|
229
259
|
}
|
|
230
260
|
]
|
|
231
261
|
},
|
|
@@ -233,33 +263,21 @@
|
|
|
233
263
|
"description": "Debounce delay in milliseconds for config file change detection.",
|
|
234
264
|
"allOf": [
|
|
235
265
|
{
|
|
236
|
-
"$ref": "#/definitions/
|
|
266
|
+
"$ref": "#/definitions/__schema16"
|
|
237
267
|
}
|
|
238
268
|
]
|
|
239
269
|
}
|
|
240
270
|
}
|
|
241
271
|
},
|
|
242
|
-
"
|
|
272
|
+
"__schema15": {
|
|
243
273
|
"type": "boolean"
|
|
244
274
|
},
|
|
245
|
-
"
|
|
275
|
+
"__schema16": {
|
|
246
276
|
"type": "number"
|
|
247
277
|
},
|
|
248
|
-
"
|
|
278
|
+
"__schema17": {
|
|
249
279
|
"default": "gemini",
|
|
250
280
|
"description": "Embedding provider name (e.g., \"gemini\", \"openai\").",
|
|
251
|
-
"allOf": [
|
|
252
|
-
{
|
|
253
|
-
"$ref": "#/definitions/__schema16"
|
|
254
|
-
}
|
|
255
|
-
]
|
|
256
|
-
},
|
|
257
|
-
"__schema16": {
|
|
258
|
-
"type": "string"
|
|
259
|
-
},
|
|
260
|
-
"__schema17": {
|
|
261
|
-
"default": "gemini-embedding-001",
|
|
262
|
-
"description": "Embedding model identifier (e.g., \"gemini-embedding-001\", \"text-embedding-3-small\").",
|
|
263
281
|
"allOf": [
|
|
264
282
|
{
|
|
265
283
|
"$ref": "#/definitions/__schema18"
|
|
@@ -270,7 +288,8 @@
|
|
|
270
288
|
"type": "string"
|
|
271
289
|
},
|
|
272
290
|
"__schema19": {
|
|
273
|
-
"
|
|
291
|
+
"default": "gemini-embedding-001",
|
|
292
|
+
"description": "Embedding model identifier (e.g., \"gemini-embedding-001\", \"text-embedding-3-small\").",
|
|
274
293
|
"allOf": [
|
|
275
294
|
{
|
|
276
295
|
"$ref": "#/definitions/__schema20"
|
|
@@ -278,10 +297,10 @@
|
|
|
278
297
|
]
|
|
279
298
|
},
|
|
280
299
|
"__schema20": {
|
|
281
|
-
"type": "
|
|
300
|
+
"type": "string"
|
|
282
301
|
},
|
|
283
302
|
"__schema21": {
|
|
284
|
-
"description": "
|
|
303
|
+
"description": "Maximum chunk size in characters for text splitting.",
|
|
285
304
|
"allOf": [
|
|
286
305
|
{
|
|
287
306
|
"$ref": "#/definitions/__schema22"
|
|
@@ -292,7 +311,7 @@
|
|
|
292
311
|
"type": "number"
|
|
293
312
|
},
|
|
294
313
|
"__schema23": {
|
|
295
|
-
"description": "
|
|
314
|
+
"description": "Character overlap between consecutive chunks.",
|
|
296
315
|
"allOf": [
|
|
297
316
|
{
|
|
298
317
|
"$ref": "#/definitions/__schema24"
|
|
@@ -303,7 +322,7 @@
|
|
|
303
322
|
"type": "number"
|
|
304
323
|
},
|
|
305
324
|
"__schema25": {
|
|
306
|
-
"description": "
|
|
325
|
+
"description": "Embedding vector dimensions (must match model output).",
|
|
307
326
|
"allOf": [
|
|
308
327
|
{
|
|
309
328
|
"$ref": "#/definitions/__schema26"
|
|
@@ -311,10 +330,10 @@
|
|
|
311
330
|
]
|
|
312
331
|
},
|
|
313
332
|
"__schema26": {
|
|
314
|
-
"type": "
|
|
333
|
+
"type": "number"
|
|
315
334
|
},
|
|
316
335
|
"__schema27": {
|
|
317
|
-
"description": "
|
|
336
|
+
"description": "API key for embedding provider (supports ${ENV_VAR} substitution).",
|
|
318
337
|
"allOf": [
|
|
319
338
|
{
|
|
320
339
|
"$ref": "#/definitions/__schema28"
|
|
@@ -322,10 +341,10 @@
|
|
|
322
341
|
]
|
|
323
342
|
},
|
|
324
343
|
"__schema28": {
|
|
325
|
-
"type": "
|
|
344
|
+
"type": "string"
|
|
326
345
|
},
|
|
327
346
|
"__schema29": {
|
|
328
|
-
"description": "Maximum
|
|
347
|
+
"description": "Maximum embedding API requests per minute (rate limiting).",
|
|
329
348
|
"allOf": [
|
|
330
349
|
{
|
|
331
350
|
"$ref": "#/definitions/__schema30"
|
|
@@ -336,35 +355,46 @@
|
|
|
336
355
|
"type": "number"
|
|
337
356
|
},
|
|
338
357
|
"__schema31": {
|
|
358
|
+
"description": "Maximum concurrent embedding requests.",
|
|
359
|
+
"allOf": [
|
|
360
|
+
{
|
|
361
|
+
"$ref": "#/definitions/__schema32"
|
|
362
|
+
}
|
|
363
|
+
]
|
|
364
|
+
},
|
|
365
|
+
"__schema32": {
|
|
366
|
+
"type": "number"
|
|
367
|
+
},
|
|
368
|
+
"__schema33": {
|
|
339
369
|
"type": "string",
|
|
340
370
|
"description": "Qdrant server URL (e.g., \"http://localhost:6333\")."
|
|
341
371
|
},
|
|
342
|
-
"
|
|
372
|
+
"__schema34": {
|
|
343
373
|
"type": "string",
|
|
344
374
|
"description": "Qdrant collection name for vector storage."
|
|
345
375
|
},
|
|
346
|
-
"
|
|
376
|
+
"__schema35": {
|
|
347
377
|
"description": "Qdrant API key for authentication (supports ${ENV_VAR} substitution).",
|
|
348
378
|
"allOf": [
|
|
349
379
|
{
|
|
350
|
-
"$ref": "#/definitions/
|
|
380
|
+
"$ref": "#/definitions/__schema36"
|
|
351
381
|
}
|
|
352
382
|
]
|
|
353
383
|
},
|
|
354
|
-
"
|
|
384
|
+
"__schema36": {
|
|
355
385
|
"type": "string"
|
|
356
386
|
},
|
|
357
|
-
"
|
|
387
|
+
"__schema37": {
|
|
358
388
|
"type": "string"
|
|
359
389
|
},
|
|
360
|
-
"
|
|
390
|
+
"__schema38": {
|
|
361
391
|
"type": "object",
|
|
362
392
|
"properties": {
|
|
363
393
|
"host": {
|
|
364
394
|
"description": "Host address for API server (e.g., \"127.0.0.1\", \"0.0.0.0\").",
|
|
365
395
|
"allOf": [
|
|
366
396
|
{
|
|
367
|
-
"$ref": "#/definitions/
|
|
397
|
+
"$ref": "#/definitions/__schema39"
|
|
368
398
|
}
|
|
369
399
|
]
|
|
370
400
|
},
|
|
@@ -372,26 +402,26 @@
|
|
|
372
402
|
"description": "Port for API server (e.g., 3456).",
|
|
373
403
|
"allOf": [
|
|
374
404
|
{
|
|
375
|
-
"$ref": "#/definitions/
|
|
405
|
+
"$ref": "#/definitions/__schema40"
|
|
376
406
|
}
|
|
377
407
|
]
|
|
378
408
|
}
|
|
379
409
|
}
|
|
380
410
|
},
|
|
381
|
-
"
|
|
411
|
+
"__schema39": {
|
|
382
412
|
"type": "string"
|
|
383
413
|
},
|
|
384
|
-
"
|
|
414
|
+
"__schema40": {
|
|
385
415
|
"type": "number"
|
|
386
416
|
},
|
|
387
|
-
"
|
|
417
|
+
"__schema41": {
|
|
388
418
|
"type": "object",
|
|
389
419
|
"propertyNames": {
|
|
390
420
|
"type": "string"
|
|
391
421
|
},
|
|
392
422
|
"additionalProperties": {}
|
|
393
423
|
},
|
|
394
|
-
"
|
|
424
|
+
"__schema42": {
|
|
395
425
|
"type": "array",
|
|
396
426
|
"items": {
|
|
397
427
|
"type": "object",
|
|
@@ -399,20 +429,20 @@
|
|
|
399
429
|
"match": {
|
|
400
430
|
"type": "object",
|
|
401
431
|
"propertyNames": {
|
|
402
|
-
"$ref": "#/definitions/
|
|
432
|
+
"$ref": "#/definitions/__schema43"
|
|
403
433
|
},
|
|
404
434
|
"additionalProperties": {
|
|
405
|
-
"$ref": "#/definitions/
|
|
435
|
+
"$ref": "#/definitions/__schema44"
|
|
406
436
|
},
|
|
407
437
|
"description": "JSON Schema object to match against file attributes."
|
|
408
438
|
},
|
|
409
439
|
"set": {
|
|
410
440
|
"type": "object",
|
|
411
441
|
"propertyNames": {
|
|
412
|
-
"$ref": "#/definitions/
|
|
442
|
+
"$ref": "#/definitions/__schema45"
|
|
413
443
|
},
|
|
414
444
|
"additionalProperties": {
|
|
415
|
-
"$ref": "#/definitions/
|
|
445
|
+
"$ref": "#/definitions/__schema46"
|
|
416
446
|
},
|
|
417
447
|
"description": "Metadata fields to set when match succeeds."
|
|
418
448
|
},
|
|
@@ -420,7 +450,7 @@
|
|
|
420
450
|
"description": "JsonMap transformation (inline definition or named map reference).",
|
|
421
451
|
"allOf": [
|
|
422
452
|
{
|
|
423
|
-
"$ref": "#/definitions/
|
|
453
|
+
"$ref": "#/definitions/__schema47"
|
|
424
454
|
}
|
|
425
455
|
]
|
|
426
456
|
}
|
|
@@ -431,25 +461,25 @@
|
|
|
431
461
|
]
|
|
432
462
|
}
|
|
433
463
|
},
|
|
434
|
-
"__schema41": {
|
|
435
|
-
"type": "string"
|
|
436
|
-
},
|
|
437
|
-
"__schema42": {},
|
|
438
464
|
"__schema43": {
|
|
439
465
|
"type": "string"
|
|
440
466
|
},
|
|
441
467
|
"__schema44": {},
|
|
442
468
|
"__schema45": {
|
|
469
|
+
"type": "string"
|
|
470
|
+
},
|
|
471
|
+
"__schema46": {},
|
|
472
|
+
"__schema47": {
|
|
443
473
|
"anyOf": [
|
|
444
474
|
{
|
|
445
|
-
"$ref": "#/definitions/
|
|
475
|
+
"$ref": "#/definitions/__schema48"
|
|
446
476
|
},
|
|
447
477
|
{
|
|
448
478
|
"type": "string"
|
|
449
479
|
}
|
|
450
480
|
]
|
|
451
481
|
},
|
|
452
|
-
"
|
|
482
|
+
"__schema48": {
|
|
453
483
|
"anyOf": [
|
|
454
484
|
{
|
|
455
485
|
"anyOf": [
|
|
@@ -475,7 +505,7 @@
|
|
|
475
505
|
"additionalProperties": {
|
|
476
506
|
"anyOf": [
|
|
477
507
|
{
|
|
478
|
-
"$ref": "#/definitions/
|
|
508
|
+
"$ref": "#/definitions/__schema48"
|
|
479
509
|
},
|
|
480
510
|
{
|
|
481
511
|
"type": "object",
|
|
@@ -483,12 +513,12 @@
|
|
|
483
513
|
"$": {
|
|
484
514
|
"anyOf": [
|
|
485
515
|
{
|
|
486
|
-
"$ref": "#/definitions/
|
|
516
|
+
"$ref": "#/definitions/__schema49"
|
|
487
517
|
},
|
|
488
518
|
{
|
|
489
519
|
"type": "array",
|
|
490
520
|
"items": {
|
|
491
|
-
"$ref": "#/definitions/
|
|
521
|
+
"$ref": "#/definitions/__schema49"
|
|
492
522
|
}
|
|
493
523
|
}
|
|
494
524
|
]
|
|
@@ -504,12 +534,12 @@
|
|
|
504
534
|
{
|
|
505
535
|
"type": "array",
|
|
506
536
|
"items": {
|
|
507
|
-
"$ref": "#/definitions/
|
|
537
|
+
"$ref": "#/definitions/__schema48"
|
|
508
538
|
}
|
|
509
539
|
}
|
|
510
540
|
]
|
|
511
541
|
},
|
|
512
|
-
"
|
|
542
|
+
"__schema49": {
|
|
513
543
|
"type": "object",
|
|
514
544
|
"properties": {
|
|
515
545
|
"method": {
|
|
@@ -534,23 +564,23 @@
|
|
|
534
564
|
"params"
|
|
535
565
|
]
|
|
536
566
|
},
|
|
537
|
-
"
|
|
567
|
+
"__schema50": {
|
|
538
568
|
"type": "object",
|
|
539
569
|
"propertyNames": {
|
|
540
570
|
"type": "string"
|
|
541
571
|
},
|
|
542
572
|
"additionalProperties": {
|
|
543
|
-
"$ref": "#/definitions/
|
|
573
|
+
"$ref": "#/definitions/__schema48"
|
|
544
574
|
}
|
|
545
575
|
},
|
|
546
|
-
"
|
|
576
|
+
"__schema51": {
|
|
547
577
|
"type": "object",
|
|
548
578
|
"properties": {
|
|
549
579
|
"level": {
|
|
550
580
|
"description": "Logging level (trace, debug, info, warn, error, fatal).",
|
|
551
581
|
"allOf": [
|
|
552
582
|
{
|
|
553
|
-
"$ref": "#/definitions/
|
|
583
|
+
"$ref": "#/definitions/__schema52"
|
|
554
584
|
}
|
|
555
585
|
]
|
|
556
586
|
},
|
|
@@ -558,19 +588,25 @@
|
|
|
558
588
|
"description": "Path to log file (logs to stdout if omitted).",
|
|
559
589
|
"allOf": [
|
|
560
590
|
{
|
|
561
|
-
"$ref": "#/definitions/
|
|
591
|
+
"$ref": "#/definitions/__schema53"
|
|
562
592
|
}
|
|
563
593
|
]
|
|
564
594
|
}
|
|
565
595
|
}
|
|
566
596
|
},
|
|
567
|
-
"
|
|
597
|
+
"__schema52": {
|
|
568
598
|
"type": "string"
|
|
569
599
|
},
|
|
570
|
-
"
|
|
600
|
+
"__schema53": {
|
|
571
601
|
"type": "string"
|
|
572
602
|
},
|
|
573
|
-
"
|
|
603
|
+
"__schema54": {
|
|
604
|
+
"type": "number"
|
|
605
|
+
},
|
|
606
|
+
"__schema55": {
|
|
607
|
+
"type": "number"
|
|
608
|
+
},
|
|
609
|
+
"__schema56": {
|
|
574
610
|
"type": "number"
|
|
575
611
|
}
|
|
576
612
|
}
|