We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 78e529d commit 26782a5Copy full SHA for 26782a5
common/concept.proto
@@ -31,6 +31,7 @@ message ConceptManager {
31
PutEntityType.Req put_entity_type_req = 3;
32
PutAttributeType.Req put_attribute_type_req = 4;
33
PutRelationType.Req put_relation_type_req = 5;
34
+ GetSchemaExceptions.Req get_schema_exceptions_req = 6;
35
}
36
37
@@ -41,6 +42,7 @@ message ConceptManager {
41
42
PutEntityType.Res put_entity_type_res = 3;
43
PutAttributeType.Res put_attribute_type_res = 4;
44
PutRelationType.Res put_relation_type_res = 5;
45
+ GetSchemaExceptions.Res get_schema_exceptions_res = 6;
46
47
48
@@ -93,6 +95,13 @@ message ConceptManager {
93
95
Type relation_type = 1;
94
96
97
98
+
99
+ message GetSchemaExceptions {
100
+ message Req {}
101
+ message Res {
102
+ repeated string exceptions = 1;
103
+ }
104
105
106
107
message Concept {
0 commit comments