File tree Expand file tree Collapse file tree 2 files changed +53
-22
lines changed Expand file tree Collapse file tree 2 files changed +53
-22
lines changed Original file line number Diff line number Diff line change 5493
5493
],
5494
5494
"type": "object"
5495
5495
},
5496
+ "EngineError": {
5497
+ "description": "An error.",
5498
+ "properties": {
5499
+ "error_code": {
5500
+ "allOf": [
5501
+ {
5502
+ "$ref": "#/components/schemas/ErrorCode"
5503
+ }
5504
+ ],
5505
+ "description": "The error code."
5506
+ },
5507
+ "message": {
5508
+ "description": "The error message.",
5509
+ "type": "string"
5510
+ }
5511
+ },
5512
+ "required": [
5513
+ "error_code",
5514
+ "message"
5515
+ ],
5516
+ "type": "object"
5517
+ },
5496
5518
"EngineMetadata": {
5497
5519
"description": "Metadata about our currently running server.\n\nThis is mostly used for internal purposes and debugging.",
5498
5520
"properties": {
5588
5610
]
5589
5611
},
5590
5612
"Error": {
5591
- "description": "An error .",
5613
+ "description": "Error information from a response .",
5592
5614
"properties": {
5593
- "code": {
5594
- "allOf": [
5595
- {
5596
- "$ref": "#/components/schemas/ErrorCode"
5597
- }
5598
- ],
5599
- "description": "The error code."
5615
+ "error_code": {
5616
+ "type": "string"
5600
5617
},
5601
5618
"message": {
5602
- "description": "The error message.",
5619
+ "type": "string"
5620
+ },
5621
+ "request_id": {
5603
5622
"type": "string"
5604
5623
}
5605
5624
},
5606
5625
"required": [
5607
- "code ",
5608
- "message "
5626
+ "message ",
5627
+ "request_id "
5609
5628
],
5610
5629
"type": "object"
5611
5630
},
5634
5653
"errors": {
5635
5654
"description": "A list of errors.",
5636
5655
"items": {
5637
- "$ref": "#/components/schemas/Error "
5656
+ "$ref": "#/components/schemas/EngineError "
5638
5657
},
5639
5658
"type": "array"
5640
5659
}
You can’t perform that action at this time.
0 commit comments