Skip to content

Commit

Permalink
Data compression update in json scheme and proto files
Browse files Browse the repository at this point in the history
Signed-off-by: Ulf Bjorkengren <ulfbjn@gmail.com>
  • Loading branch information
UlfBj committed Nov 21, 2024
1 parent 20ba647 commit 93e692a
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
8 changes: 8 additions & 0 deletions spec/resources/vissv3.0-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,10 @@
"description": "The access token",
"type": "string"
},
"dc": {
"description": "The data compression scheme",
"type": "string"
},
"requestId": {
"description": "The request id",
"type": "string"
Expand Down Expand Up @@ -200,6 +204,10 @@
"description": "The access token",
"type": "string"
},
"dc": {
"description": "The data compression scheme",
"type": "string"
},
"requestId": {
"description": "The request id",
"type": "string"
Expand Down
6 changes: 4 additions & 2 deletions spec/resources/vissv3.0.proto
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,8 @@ message GetRequestMessage {
string Path = 1;
optional FilterExpressions Filter = 2;
optional string Authorization = 3;
optional string RequestId = 4;
optional string DataCompression = 4;
optional string RequestId = 5;
}

message GetResponseMessage {
Expand Down Expand Up @@ -142,7 +143,8 @@ message SubscribeRequestMessage {
string Path = 1;
optional FilterExpressions Filter = 2;
optional string Authorization = 3;
string RequestId = 4;
optional string DataCompression = 4;
string RequestId = 5;
}

message SubscribeStreamMessage {
Expand Down

0 comments on commit 93e692a

Please sign in to comment.