File tree Expand file tree Collapse file tree 3 files changed +98
-4
lines changed
source/unified-test-format Expand file tree Collapse file tree 3 files changed +98
-4
lines changed Original file line number Diff line number Diff line change 1
1
{
2
- "$schema" : " http ://json-schema.org/draft-07 /schema#" ,
2
+ "$schema" : " https ://json-schema.org/draft/2019-09 /schema#" ,
3
3
"title" : " Unified Test Format" ,
4
4
"type" : " object" ,
5
5
"additionalProperties" : false ,
157
157
"type" : " string"
158
158
}
159
159
},
160
+ "storeEventsAsEntities" : {
161
+ "deprecated" : true ,
162
+ "type" : " array" ,
163
+ "minItems" : 1 ,
164
+ "items" : {
165
+ "$ref" : " #/definitions/storeEventsAsEntity"
166
+ }
167
+ },
160
168
"observeLogMessages" : {
161
169
"type" : " object" ,
162
170
"minProperties" : 1 ,
475
483
}
476
484
}
477
485
},
486
+ "storeEventsAsEntity" : {
487
+ "deprecated" : true ,
488
+ "type" : " object" ,
489
+ "additionalProperties" : false ,
490
+ "required" : [
491
+ " id" ,
492
+ " events"
493
+ ],
494
+ "properties" : {
495
+ "id" : {
496
+ "type" : " string"
497
+ },
498
+ "events" : {
499
+ "type" : " array" ,
500
+ "minItems" : 1 ,
501
+ "items" : {
502
+ "type" : " string" ,
503
+ "enum" : [
504
+ " PoolCreatedEvent" ,
505
+ " PoolReadyEvent" ,
506
+ " PoolClearedEvent" ,
507
+ " PoolClosedEvent" ,
508
+ " ConnectionCreatedEvent" ,
509
+ " ConnectionReadyEvent" ,
510
+ " ConnectionClosedEvent" ,
511
+ " ConnectionCheckOutStartedEvent" ,
512
+ " ConnectionCheckOutFailedEvent" ,
513
+ " ConnectionCheckedOutEvent" ,
514
+ " ConnectionCheckedInEvent" ,
515
+ " CommandStartedEvent" ,
516
+ " CommandSucceededEvent" ,
517
+ " CommandFailedEvent" ,
518
+ " ServerDescriptionChangedEvent" ,
519
+ " TopologyDescriptionChangedEvent"
520
+ ]
521
+ }
522
+ }
523
+ }
524
+ },
478
525
"collectionData" : {
479
526
"type" : " object" ,
480
527
"additionalProperties" : false ,
Original file line number Diff line number Diff line change 1
1
{
2
- "$schema" : " http ://json-schema.org/draft-07 /schema#" ,
2
+ "$schema" : " https ://json-schema.org/draft/2019-09 /schema#" ,
3
3
"title" : " Unified Test Format" ,
4
4
"type" : " object" ,
5
5
"additionalProperties" : false ,
157
157
"type" : " string"
158
158
}
159
159
},
160
+ "storeEventsAsEntities" : {
161
+ "deprecated" : true ,
162
+ "type" : " array" ,
163
+ "minItems" : 1 ,
164
+ "items" : {
165
+ "$ref" : " #/definitions/storeEventsAsEntity"
166
+ }
167
+ },
160
168
"observeLogMessages" : {
161
169
"type" : " object" ,
162
170
"minProperties" : 1 ,
475
483
}
476
484
}
477
485
},
486
+ "storeEventsAsEntity" : {
487
+ "deprecated" : true ,
488
+ "type" : " object" ,
489
+ "additionalProperties" : false ,
490
+ "required" : [
491
+ " id" ,
492
+ " events"
493
+ ],
494
+ "properties" : {
495
+ "id" : {
496
+ "type" : " string"
497
+ },
498
+ "events" : {
499
+ "type" : " array" ,
500
+ "minItems" : 1 ,
501
+ "items" : {
502
+ "type" : " string" ,
503
+ "enum" : [
504
+ " PoolCreatedEvent" ,
505
+ " PoolReadyEvent" ,
506
+ " PoolClearedEvent" ,
507
+ " PoolClosedEvent" ,
508
+ " ConnectionCreatedEvent" ,
509
+ " ConnectionReadyEvent" ,
510
+ " ConnectionClosedEvent" ,
511
+ " ConnectionCheckOutStartedEvent" ,
512
+ " ConnectionCheckOutFailedEvent" ,
513
+ " ConnectionCheckedOutEvent" ,
514
+ " ConnectionCheckedInEvent" ,
515
+ " CommandStartedEvent" ,
516
+ " CommandSucceededEvent" ,
517
+ " CommandFailedEvent" ,
518
+ " ServerDescriptionChangedEvent" ,
519
+ " TopologyDescriptionChangedEvent"
520
+ ]
521
+ }
522
+ }
523
+ }
524
+ },
478
525
"collectionData" : {
479
526
"type" : " object" ,
480
527
"additionalProperties" : false ,
Original file line number Diff line number Diff line change @@ -3401,8 +3401,8 @@ other specs *and* collating spec changes developed in parallel or during the sam
3401
3401
3402
3402
- 2025-06-10 : **Schema version 1.24.**
3403
3403
3404
- Remove `storeEventsAsEntities` option for client entities and `loop` operation as part of sunsetting Drivers Atlas
3405
- Testing (Astrolabe) .
3404
+ Deprecate `storeEventsAsEntities` option for client entities and `loop` operation in the schema and remove them from
3405
+ this spec .
3406
3406
3407
3407
- 2025-06-04 : Deprecate the `serverless` runOnRequirement
3408
3408
You can’t perform that action at this time.
0 commit comments