diff options
Diffstat (limited to 'sonar-ws/src')
-rw-r--r-- | sonar-ws/src/main/protobuf/ws-rules.proto | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sonar-ws/src/main/protobuf/ws-rules.proto b/sonar-ws/src/main/protobuf/ws-rules.proto index fb943a1d97e..43338b26563 100644 --- a/sonar-ws/src/main/protobuf/ws-rules.proto +++ b/sonar-ws/src/main/protobuf/ws-rules.proto @@ -123,6 +123,7 @@ message Rule { optional bool isExternal = 47; optional DeprecatedKeys deprecatedKeys = 48; optional DescriptionSections descriptionSections = 49; + optional GenericConcepts genericConcepts = 50; message DescriptionSections { repeated DescriptionSection descriptionSections = 1; @@ -162,6 +163,10 @@ message Tags { repeated string tags = 1; } +message GenericConcepts { + repeated string genericConcepts = 1; +} + message Actives { map<string, ActiveList> actives = 1; } |