Skip to content

Commit

Permalink
Merge pull request #18 from UlfBj/main
Browse files Browse the repository at this point in the history
Protobuf update to sync with JSON schema.
  • Loading branch information
UlfBj authored Jul 30, 2024
2 parents 63fdc8b + 9ea6949 commit 7461f66
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions spec/VISSv3.0_PayloadEncoding.html
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ <h2>Protobuf Schema Definition</h2>

message FilterExpressions {
message FilterExpression {
enum FilterType {
enum FilterVariant {
PATHS = 0;
TIMEBASED = 1;
RANGE = 2;
Expand All @@ -222,7 +222,7 @@ <h2>Protobuf Schema Definition</h2>
STATIC_METADATA = 6;
DYNAMIC_METADATA = 7;
}
FilterType FType = 1;
FilterVariant Variant = 1;

message FilterValue {
message PathsValue {
Expand Down Expand Up @@ -359,11 +359,10 @@ <h2>Protobuf Schema Definition</h2>
}

message UnsubscribeResponseMessage {
string SubscriptionId = 1;
ResponseStatus Status = 2;
optional ErrorResponseMessage ErrorResponse = 3;
optional string RequestId = 4;
string Ts = 5;
ResponseStatus Status = 1;
optional ErrorResponseMessage ErrorResponse = 2;
optional string RequestId = 3;
string Ts = 4;
}
</code></pre>
</p>
Expand Down

0 comments on commit 7461f66

Please sign in to comment.