From 093e6b80849654cd8cd43a56a6f367564fd77cca Mon Sep 17 00:00:00 2001 From: Mohamed Elmoslemany Date: Tue, 24 Sep 2024 13:35:09 +0200 Subject: [PATCH] PR Comment --- proto/cmp/types/v1/inclusivity.proto | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 proto/cmp/types/v1/inclusivity.proto diff --git a/proto/cmp/types/v1/inclusivity.proto b/proto/cmp/types/v1/inclusivity.proto new file mode 100644 index 0000000..a08af1e --- /dev/null +++ b/proto/cmp/types/v1/inclusivity.proto @@ -0,0 +1,13 @@ +syntax = "proto3"; + +package cmp.types.v1; + +// An Option to specify if an item is included or not included in the context +// +// ![Diagram](https://storage.googleapis.com/docs-cmp-files/diagrams/proto/cmp/types/v1/inclusivity.proto.dot.xs.svg) +// [Open Message Diagram](https://storage.googleapis.com/docs-cmp-files/diagrams/proto/cmp/types/v1/inclusivity.proto.dot.svg) +enum Inclusivity { + INCLUSIVITY_UNSPECIFIED = 0; + INCLUSIVITY_INCLUDED = 1; + INCLUSIVITY_NOT_INCLUDED = 2; +}