2024-12-10 01:26:53 -05:00
|
|
|
// https://github.com/cloudevents/spec/blob/main/cloudevents/formats/cloudevents.proto
|
|
|
|
|
|
|
|
/**
|
|
|
|
* CloudEvent Protobuf Format
|
|
|
|
*
|
|
|
|
* - Required context attributes are explicitly represented.
|
|
|
|
* - Optional and Extension context attributes are carried in a map structure.
|
|
|
|
* - Data may be represented as binary, text, or protobuf messages.
|
|
|
|
*/
|
|
|
|
|
2024-09-17 09:01:49 -04:00
|
|
|
syntax = "proto3";
|
|
|
|
|
2024-12-10 01:26:53 -05:00
|
|
|
package io.cloudevents.v1;
|
2024-09-17 09:01:49 -04:00
|
|
|
|
|
|
|
import "google/protobuf/any.proto";
|
|
|
|
import "google/protobuf/timestamp.proto";
|
|
|
|
|
2024-12-12 19:43:26 -08:00
|
|
|
option csharp_namespace = "Microsoft.AutoGen.Contracts";
|
2024-09-17 09:01:49 -04:00
|
|
|
|
|
|
|
|
|
|
|
message CloudEvent {
|
|
|
|
|
|
|
|
// -- CloudEvent Context Attributes
|
|
|
|
|
|
|
|
// Required Attributes
|
|
|
|
string id = 1;
|
|
|
|
string source = 2; // URI-reference
|
|
|
|
string spec_version = 3;
|
|
|
|
string type = 4;
|
|
|
|
|
|
|
|
// Optional & Extension Attributes
|
|
|
|
map<string, CloudEventAttributeValue> attributes = 5;
|
2024-12-10 01:26:53 -05:00
|
|
|
|
2024-09-17 09:01:49 -04:00
|
|
|
// -- CloudEvent Data (Bytes, Text, or Proto)
|
|
|
|
oneof data {
|
2024-12-10 01:26:53 -05:00
|
|
|
bytes binary_data = 6;
|
|
|
|
string text_data = 7;
|
|
|
|
google.protobuf.Any proto_data = 8;
|
2024-09-17 09:01:49 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The CloudEvent specification defines
|
|
|
|
* seven attribute value types...
|
|
|
|
*/
|
|
|
|
|
|
|
|
message CloudEventAttributeValue {
|
|
|
|
|
|
|
|
oneof attr {
|
|
|
|
bool ce_boolean = 1;
|
|
|
|
int32 ce_integer = 2;
|
|
|
|
string ce_string = 3;
|
|
|
|
bytes ce_bytes = 4;
|
|
|
|
string ce_uri = 5;
|
|
|
|
string ce_uri_ref = 6;
|
|
|
|
google.protobuf.Timestamp ce_timestamp = 7;
|
|
|
|
}
|
|
|
|
}
|
2024-12-10 01:26:53 -05:00
|
|
|
}
|