Skip to content

Commit

Permalink
resolve remarks
Browse files Browse the repository at this point in the history
  • Loading branch information
pstaeck committed Jul 8, 2024
1 parent 25fcd36 commit e3eb766
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/t2iapi/biceps/codedvalue.proto
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,5 @@ message CodedValueMsg {
string code_attr = 7;
google.protobuf.StringValue coding_system_attr = 8;
google.protobuf.StringValue coding_system_version_attr = 9;
string symbolic_code_name_attr = 10;
google.protobuf.StringValue symbolic_code_name_attr = 10;
}
5 changes: 3 additions & 2 deletions src/t2iapi/biceps/instanceidentifier.proto
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ package t2iapi.biceps;
option java_package = "com.draeger.medical.t2iapi.biceps";
option java_outer_classname = "InstanceIdentifierProto";

import "google/protobuf/wrappers.proto";
import "t2iapi/biceps/codedvalue.proto";
import "t2iapi/biceps/localizedtext.proto";

Expand All @@ -21,6 +22,6 @@ Represents pm:InstanceIdentifier (defined in IEEE Std 11073-10207-2017).
message InstanceIdentifierMsg {
CodedValueMsg type = 1;
repeated LocalizedTextMsg identifier_name = 2;
string root_attr = 3;
string extension_attr = 4;
google.protobuf.StringValue root_attr = 3;
google.protobuf.StringValue extension_attr = 4;
}
6 changes: 3 additions & 3 deletions src/t2iapi/biceps/localizedtext.proto
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ import "t2iapi/biceps/localizedtextwidth.proto";
Represents pm:LocalizedText (defined in IEEE Std 11073-10207-2017).
*/
message LocalizedTextMsg {
string localized_text_content = 1;
string ref_attr = 2;
google.protobuf.StringValue localized_text_content = 1;
google.protobuf.StringValue ref_attr = 2;
google.protobuf.StringValue lang_attr = 3;
uint64 version_attr = 4;
google.protobuf.UInt64Value version_attr = 4;
LocalizedTextWidthMsg text_width_attr = 5;
}

0 comments on commit e3eb766

Please sign in to comment.