File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 1166
1166
{
1167
1167
"name" : " s2-format" ,
1168
1168
"in" : " header" ,
1169
- "description" : " Recognized when the Content-Type is `application/json`. \n json: UTF-8 data \n json-binsafe: Base64-encoded binary data " ,
1169
+ "description" : " Define treatment of blob fields when using JSON content type: \n `raw` (default) or `base64`. " ,
1170
1170
"required" : false ,
1171
1171
"schema" : {
1172
1172
"$ref" : " #/components/schemas/S2Format"
1333
1333
{
1334
1334
"name" : " s2-format" ,
1335
1335
"in" : " header" ,
1336
- "description" : " Recognized when the Content-Type is `application/json`. \n json: UTF-8 data \n json-binsafe: Base64-encoded binary data " ,
1336
+ "description" : " Define treatment of blob fields when using JSON content type: \n `raw` (default) or `base64`. " ,
1337
1337
"required" : false ,
1338
1338
"schema" : {
1339
1339
"$ref" : " #/components/schemas/S2Format"
2209
2209
"S2Format" : {
2210
2210
"type" : " string" ,
2211
2211
"enum" : [
2212
- " json " ,
2213
- " json-binsafe "
2212
+ " raw " ,
2213
+ " base64 "
2214
2214
]
2215
2215
},
2216
2216
"SequencedRecord" : {
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ message AppendInput {
42
42
// Enforce that the sequence number issued to the first record matches.
43
43
optional uint64 match_seq_num = 2 ;
44
44
// Enforce a fencing token which must have been previously set by a `fence` command record.
45
- optional bytes fencing_token = 3 ;
45
+ optional string fencing_token = 3 ;
46
46
}
47
47
48
48
// Success response message to an Append request.
Original file line number Diff line number Diff line change @@ -451,7 +451,7 @@ message AppendInput {
451
451
// Enforce that the sequence number issued to the first record matches.
452
452
optional uint64 match_seq_num = 3 ;
453
453
// Enforce a fencing token which must have been previously set by a `fence` command record.
454
- optional bytes fencing_token = 4 ;
454
+ optional string fencing_token = 4 ;
455
455
}
456
456
457
457
// Output from append response.
You can’t perform that action at this time.
0 commit comments